summaryrefslogtreecommitdiffstats
path: root/engines/ccgost/paramset.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/ccgost/paramset.h')
-rw-r--r--engines/ccgost/paramset.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/engines/ccgost/paramset.h b/engines/ccgost/paramset.h
new file mode 100644
index 0000000000..002ac7857b
--- /dev/null
+++ b/engines/ccgost/paramset.h
@@ -0,0 +1,34 @@
+/**********************************************************************
+ * paramset.h *
+ * Copyright (c) 2005-2006 Cryptocom LTD *
+ * This file is distributed under the same license as OpenSSL *
+ * *
+ * Declaration of structures used to represent GOST R 34.10 *
+ * parameter sets, defined in RFC 4357 *
+ * OpenSSL 0.9.9 libraries required to compile and use *
+ * this code *
+ **********************************************************************/
+#ifndef GOST_PARAMSET_H
+#define GOST_PARAMSET_H
+typedef struct R3410 {
+ int nid;
+ char *a;
+ char *p;
+ char *q;
+} R3410_params;
+
+extern R3410_params R3410_paramset[];
+
+typedef struct R3410_2001 {
+ int nid;
+ char *a;
+ char *b;
+ char *p;
+ char *q;
+ char *x;
+ char *y;
+} R3410_2001_params;
+
+extern R3410_2001_params R3410_2001_paramset[];
+
+#endif