]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_lcl.h
cppcheck: Variable is reassigned a value before the old one has been used.
[openssl-gost/engine.git] / gost_lcl.h
1 #ifndef GOST_TOOLS_H
2 # define GOST_TOOLS_H
3 /**********************************************************************
4  *                        gost_lcl.h                                  *
5  *             Copyright (c) 2006 Cryptocom LTD                       *
6  *       This file is distributed under the same license as OpenSSL   *
7  *                                                                    *
8  *         Internal declarations  used in GOST engine                *
9  *         OpenSSL 0.9.9 libraries required to compile and use        *
10  *                              this code                             *
11  **********************************************************************/
12 # include <openssl/bn.h>
13 # include <openssl/evp.h>
14 # include <openssl/asn1t.h>
15 # include <openssl/x509.h>
16 # include <openssl/engine.h>
17 # include <openssl/ec.h>
18 # include "gost89.h"
19 # include "gosthash.h"
20 /* Control commands */
21 # define GOST_PARAM_CRYPT_PARAMS 0
22 # define GOST_PARAM_PBE_PARAMS 1
23 # define GOST_PARAM_PK_FORMAT 2
24 # define GOST_PARAM_MAX 3
25 # define GOST_CTRL_CRYPT_PARAMS (ENGINE_CMD_BASE+GOST_PARAM_CRYPT_PARAMS)
26 # define GOST_CTRL_PBE_PARAMS   (ENGINE_CMD_BASE+GOST_PARAM_PBE_PARAMS)
27 # define GOST_CTRL_PK_FORMAT   (ENGINE_CMD_BASE+GOST_PARAM_PK_FORMAT)
28
29 typedef struct R3410_ec {
30     int nid;
31     char *a;
32     char *b;
33     char *p;
34     char *q;
35     char *x;
36     char *y;
37     char *cofactor;
38 } R3410_ec_params;
39
40 extern R3410_ec_params R3410_2001_paramset[],
41     *R3410_2012_256_paramset, R3410_2012_512_paramset[];
42
43 extern const ENGINE_CMD_DEFN gost_cmds[];
44 int gost_control_func(ENGINE *e, int cmd, long i, void *p, void (*f) (void));
45 const char *get_gost_engine_param(int param);
46 int gost_set_default_param(int param, const char *value);
47 void gost_param_free(void);
48
49 /* method registration */
50
51 int register_ameth_gost(int nid, EVP_PKEY_ASN1_METHOD **ameth,
52                         const char *pemstr, const char *info);
53 int register_pmeth_gost(int id, EVP_PKEY_METHOD **pmeth, int flags);
54
55 /* Gost-specific pmeth control-function parameters */
56 /* For GOST R34.10 parameters */
57 # define param_ctrl_string "paramset"
58 # define EVP_PKEY_CTRL_GOST_PARAMSET (EVP_PKEY_ALG_CTRL+1)
59 /* For GOST 28147 MAC */
60 # define key_ctrl_string "key"
61 # define hexkey_ctrl_string "hexkey"
62 # define maclen_ctrl_string "size"
63 # define EVP_PKEY_CTRL_GOST_MAC_HEXKEY (EVP_PKEY_ALG_CTRL+3)
64 # define EVP_PKEY_CTRL_MAC_LEN (EVP_PKEY_ALG_CTRL+5)
65 /* Pmeth internal representation */
66 struct gost_pmeth_data {
67     int sign_param_nid;         /* Should be set whenever parameters are
68                                  * filled */
69     EVP_MD *md;
70     unsigned char *shared_ukm;
71     size_t shared_ukm_size;     /* XXX temporary use shared_ukm and hash for 2018 CKE */
72     int peer_key_used;
73     int cipher_nid;             /* KExp15/KImp15 algs */
74 };
75
76 struct gost_mac_pmeth_data {
77     short int key_set;
78     short int mac_size;
79     int mac_param_nid;
80     EVP_MD *md;
81     unsigned char key[32];
82 };
83
84 struct gost_mac_key {
85     int mac_param_nid;
86     unsigned char key[32];
87     short int mac_size;
88 };
89 /* GOST-specific ASN1 structures */
90
91 typedef struct {
92     ASN1_OCTET_STRING *encrypted_key;
93     ASN1_OCTET_STRING *imit;
94 } GOST_KEY_INFO;
95
96 DECLARE_ASN1_FUNCTIONS(GOST_KEY_INFO)
97
98 typedef struct {
99     ASN1_OBJECT *cipher;
100     X509_PUBKEY *ephem_key;
101     ASN1_OCTET_STRING *eph_iv;
102 } GOST_KEY_AGREEMENT_INFO;
103
104 DECLARE_ASN1_FUNCTIONS(GOST_KEY_AGREEMENT_INFO)
105
106 typedef struct {
107     GOST_KEY_INFO *key_info;
108     GOST_KEY_AGREEMENT_INFO *key_agreement_info;
109 } GOST_KEY_TRANSPORT;
110
111 DECLARE_ASN1_FUNCTIONS(GOST_KEY_TRANSPORT)
112
113 typedef struct {                /* FIXME incomplete */
114     GOST_KEY_TRANSPORT *gkt;
115 } GOST_CLIENT_KEY_EXCHANGE_PARAMS;
116
117 /*   PSKeyTransport ::= SEQUENCE {
118        PSEXP OCTET STRING,
119        ephemeralPublicKey SubjectPublicKeyInfo
120    }
121    SubjectPublicKeyInfo ::= SEQUENCE {
122        algorithm AlgorithmIdentifier,
123        subjectPublicKey BITSTRING
124    }
125    AlgorithmIdentifier ::= SEQUENCE {
126        algorithm OBJECT IDENTIFIER,
127        parameters ANY OPTIONAL
128    }*/
129 typedef struct PSKeyTransport_st {
130     ASN1_OCTET_STRING *psexp;
131     X509_PUBKEY       *ephem_key;
132 } PSKeyTransport_gost;
133
134 DECLARE_ASN1_FUNCTIONS(PSKeyTransport_gost)
135 /*
136  * Hacks to shorten symbols to 31 characters or less, or OpenVMS. This mimics
137  * what's done in symhacks.h, but since this is a very local header file, I
138  * prefered to put this hack directly here. -- Richard Levitte
139  */
140 # ifdef OPENSSL_SYS_VMS
141 #  undef GOST_CLIENT_KEY_EXCHANGE_PARAMS_it
142 #  define GOST_CLIENT_KEY_EXCHANGE_PARAMS_it      GOST_CLIENT_KEY_EXC_PARAMS_it
143 #  undef GOST_CLIENT_KEY_EXCHANGE_PARAMS_new
144 #  define GOST_CLIENT_KEY_EXCHANGE_PARAMS_new     GOST_CLIENT_KEY_EXC_PARAMS_new
145 #  undef GOST_CLIENT_KEY_EXCHANGE_PARAMS_free
146 #  define GOST_CLIENT_KEY_EXCHANGE_PARAMS_free    GOST_CLIENT_KEY_EXC_PARAMS_free
147 #  undef d2i_GOST_CLIENT_KEY_EXCHANGE_PARAMS
148 #  define d2i_GOST_CLIENT_KEY_EXCHANGE_PARAMS     d2i_GOST_CLIENT_KEY_EXC_PARAMS
149 #  undef i2d_GOST_CLIENT_KEY_EXCHANGE_PARAMS
150 #  define i2d_GOST_CLIENT_KEY_EXCHANGE_PARAMS     i2d_GOST_CLIENT_KEY_EXC_PARAMS
151 # endif                         /* End of hack */
152 DECLARE_ASN1_FUNCTIONS(GOST_CLIENT_KEY_EXCHANGE_PARAMS)
153 typedef struct {
154     ASN1_OBJECT *key_params;
155     ASN1_OBJECT *hash_params;
156     ASN1_OBJECT *cipher_params;
157 } GOST_KEY_PARAMS;
158
159 DECLARE_ASN1_FUNCTIONS(GOST_KEY_PARAMS)
160
161 typedef struct {
162     ASN1_OCTET_STRING *iv;
163     ASN1_OBJECT *enc_param_set;
164 } GOST_CIPHER_PARAMS;
165
166 DECLARE_ASN1_FUNCTIONS(GOST_CIPHER_PARAMS)
167
168 typedef struct {
169     ASN1_OCTET_STRING *masked_priv_key;
170     ASN1_OCTET_STRING *public_key;
171 } MASKED_GOST_KEY;
172
173 DECLARE_ASN1_FUNCTIONS(MASKED_GOST_KEY)
174
175 /*============== Message digest  and cipher related structures  ==========*/
176     /*
177      * Structure used as EVP_MD_CTX-md_data. It allows to avoid storing
178      * in the md-data pointers to dynamically allocated memory. I
179      * cannot invent better way to avoid memory leaks, because openssl
180      * insist on invoking Init on Final-ed digests, and there is no
181      * reliable way to find out whether pointer in the passed md_data is
182      * valid or not.
183      */
184 struct ossl_gost_digest_ctx {
185     gost_hash_ctx dctx;
186     gost_ctx cctx;
187 };
188 /* EVP_MD structure for GOST R 34.11 */
189 EVP_MD *digest_gost(void);
190 void digest_gost_destroy(void);
191 /* EVP MD structure for GOST R 34.11-2012 algorithms */
192 EVP_MD *digest_gost2012_256(void);
193 EVP_MD *digest_gost2012_512(void);
194 void digest_gost2012_256_destroy(void);
195 void digest_gost2012_512_destroy(void);
196 /* EVP_MD structure for GOST 28147 in MAC mode */
197 EVP_MD *imit_gost_cpa(void);
198 void imit_gost_cpa_destroy(void);
199 EVP_MD *imit_gost_cp_12(void);
200 void imit_gost_cp_12_destroy(void);
201 EVP_MD *magma_omac(void);
202 void magma_omac_destroy(void);
203 EVP_MD *grasshopper_omac(void);
204 EVP_MD *grasshopper_omac_acpkm(void);
205 void grasshopper_omac_destroy(void);
206 void grasshopper_omac_acpkm_destroy(void);
207 /* Cipher context used for EVP_CIPHER operation */
208 struct ossl_gost_cipher_ctx {
209     int paramNID;
210     unsigned int count;
211     int key_meshing;
212     gost_ctx cctx;
213 };
214 /* Structure to map parameter NID to S-block */
215 struct gost_cipher_info {
216     int nid;
217     gost_subst_block *sblock;
218     int key_meshing;
219 };
220 /* Context for MAC */
221 struct ossl_gost_imit_ctx {
222     gost_ctx cctx;
223     unsigned char buffer[8];
224     unsigned char partial_block[8];
225     unsigned int count;
226     int key_meshing;
227     int bytes_left;
228     int key_set;
229     int dgst_size;
230 };
231 /* Table which maps parameter NID to S-blocks */
232 extern struct gost_cipher_info gost_cipher_list[];
233 /* Find encryption params from ASN1_OBJECT */
234 const struct gost_cipher_info *get_encryption_params(ASN1_OBJECT *obj);
235 /* Implementation of GOST 28147-89 cipher in CFB and CNT modes */
236 const EVP_CIPHER *cipher_gost();
237 const EVP_CIPHER *cipher_gost_cbc();
238 const EVP_CIPHER *cipher_gost_cpacnt();
239 const EVP_CIPHER *cipher_gost_cpcnt_12();
240 const EVP_CIPHER *cipher_magma_cbc();
241 const EVP_CIPHER *cipher_magma_ctr();
242 void cipher_gost_destroy();
243
244 void inc_counter(unsigned char *counter, size_t counter_bytes);
245
246 # define EVP_MD_CTRL_KEY_LEN (EVP_MD_CTRL_ALG_CTRL+3)
247 # define EVP_MD_CTRL_SET_KEY (EVP_MD_CTRL_ALG_CTRL+4)
248 /* EVP_PKEY_METHOD key encryption callbacks */
249 /* From gost_ec_keyx.c */
250 int pkey_gost_encrypt(EVP_PKEY_CTX *pctx, unsigned char *out,
251                            size_t *out_len, const unsigned char *key,
252                            size_t key_len);
253
254 int pkey_gost_decrypt(EVP_PKEY_CTX *pctx, unsigned char *key,
255                            size_t *key_len, const unsigned char *in,
256                            size_t in_len);
257 /* derive functions */
258 /* From gost_ec_keyx.c */
259 int pkey_gost_ec_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen);
260 int fill_GOST_EC_params(EC_KEY *eckey, int nid);
261 int gost_ec_keygen(EC_KEY *ec);
262
263 ECDSA_SIG *gost_ec_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey);
264 int gost_ec_verify(const unsigned char *dgst, int dgst_len,
265                    ECDSA_SIG *sig, EC_KEY *ec);
266 int gost_ec_compute_public(EC_KEY *ec);
267
268 /* VKO */
269 int VKO_compute_key(unsigned char *shared_key,
270                     const EC_POINT *pub_key, const EC_KEY *priv_key,
271                     const unsigned char *ukm, const size_t ukm_size,
272                     const int vko_dgst_nid);
273
274 /* KDF TREE */
275 int gost_kdftree2012_256(unsigned char *keyout, size_t keyout_len,
276                          const unsigned char *key, size_t keylen,
277                          const unsigned char *label, size_t label_len,
278                          const unsigned char *seed, size_t seed_len,
279                          const size_t representation);
280
281 int gost_tlstree(int cipher_nid, const unsigned char *in, unsigned char *out,
282                  const unsigned char *tlsseq);
283 /* KExp/KImp */
284 int gost_kexp15(const unsigned char *shared_key, const int shared_len,
285                 int cipher_nid, const unsigned char *cipher_key,
286                 int mac_nid, unsigned char *mac_key,
287                 const unsigned char *iv, const size_t ivlen,
288                 unsigned char *out, int *out_len);
289 int gost_kimp15(const unsigned char *expkey, const size_t expkeylen,
290                 int cipher_nid, const unsigned char *cipher_key,
291                 int mac_nid, unsigned char *mac_key,
292                 const unsigned char *iv, const size_t ivlen,
293                 unsigned char *shared_key);
294 /*============== miscellaneous functions============================= */
295 /*
296  * Store bignum in byte array of given length, prepending by zeros if
297  * nesseccary
298  */
299 int store_bignum(const BIGNUM *bn, unsigned char *buf, int len);
300 /* Pack GOST R 34.10 signature according to CryptoPro rules */
301 int pack_sign_cp(ECDSA_SIG *s, int order, unsigned char *sig, size_t *siglen);
302 /* from ameth.c */
303 /* Get private key as BIGNUM from both 34.10-2001 keys*/
304 /* Returns pointer into EVP_PKEY structure */
305 BIGNUM *gost_get0_priv_key(const EVP_PKEY *pkey);
306 #endif