]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - gost_lcl.h
Making a gost provider - Add the ciphers
[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  *             Copyright (c) 2020 Vitaly Chikunov <vt@altlinux.org>   *
7  *       This file is distributed under the same license as OpenSSL   *
8  *                                                                    *
9  *         Internal declarations  used in GOST engine                 *
10  *         OpenSSL 0.9.9 libraries required to compile and use        *
11  *                              this code                             *
12  **********************************************************************/
13 # include <openssl/core.h>
14 # include <openssl/bn.h>
15 # include <openssl/evp.h>
16 # include <openssl/asn1t.h>
17 # include <openssl/x509.h>
18 # include <openssl/engine.h>
19 # include <openssl/ec.h>
20 # include "gost89.h"
21 # include "gosthash.h"
22 /* Control commands */
23 # define GOST_PARAM_CRYPT_PARAMS 0
24 # define GOST_PARAM_PBE_PARAMS 1
25 # define GOST_PARAM_PK_FORMAT 2
26 # define GOST_PARAM_MAX 3
27 # define GOST_CTRL_CRYPT_PARAMS (ENGINE_CMD_BASE+GOST_PARAM_CRYPT_PARAMS)
28 # define GOST_CTRL_PBE_PARAMS   (ENGINE_CMD_BASE+GOST_PARAM_PBE_PARAMS)
29 # define GOST_CTRL_PK_FORMAT   (ENGINE_CMD_BASE+GOST_PARAM_PK_FORMAT)
30
31 typedef struct R3410_ec {
32     int nid;
33     char *a;
34     char *b;
35     char *p;
36     char *q;
37     char *x;
38     char *y;
39     char *cofactor;
40     EC_GROUP *group;
41 } R3410_ec_params;
42
43 extern R3410_ec_params R3410_2001_paramset[],
44     *R3410_2012_256_paramset, R3410_2012_512_paramset[];
45
46 void free_cached_groups(void);
47
48 extern const ENGINE_CMD_DEFN gost_cmds[];
49 int gost_control_func(ENGINE *e, int cmd, long i, void *p, void (*f) (void));
50 const char *get_gost_engine_param(int param);
51 int gost_set_default_param(int param, const char *value);
52 void gost_param_free(void);
53
54 /* method registration */
55
56 int register_ameth_gost(int nid, EVP_PKEY_ASN1_METHOD **ameth,
57                         const char *pemstr, const char *info);
58 int register_pmeth_gost(int id, EVP_PKEY_METHOD **pmeth, int flags);
59
60 /* Gost-specific pmeth control-function parameters */
61 /* For GOST R34.10 parameters */
62 # define param_ctrl_string "paramset"
63 # define ukm_ctrl_string "ukmhex"
64 # define vko_ctrl_string "vko"
65 # define EVP_PKEY_CTRL_GOST_PARAMSET (EVP_PKEY_ALG_CTRL+1)
66 /* For GOST 28147 MAC */
67 # define key_ctrl_string "key"
68 # define hexkey_ctrl_string "hexkey"
69 # define maclen_ctrl_string "size"
70 # define EVP_PKEY_CTRL_GOST_MAC_HEXKEY (EVP_PKEY_ALG_CTRL+3)
71 # define EVP_PKEY_CTRL_MAC_LEN (EVP_PKEY_ALG_CTRL+5)
72 # define EVP_PKEY_CTRL_SET_VKO (EVP_PKEY_ALG_CTRL+11)
73 /* Pmeth internal representation */
74 struct gost_pmeth_data {
75     int sign_param_nid;         /* Should be set whenever parameters are
76                                  * filled */
77     EVP_MD *md;
78     unsigned char shared_ukm[32];
79     size_t shared_ukm_size;
80     int peer_key_used;
81     int cipher_nid;             /* KExp15/KImp15 algs */
82     int vko_dgst_nid;
83 };
84
85 struct gost_mac_pmeth_data {
86     short int key_set;
87     short int mac_size;
88     int mac_param_nid;
89     EVP_MD *md;
90     unsigned char key[32];
91 };
92
93 struct gost_mac_key {
94     int mac_param_nid;
95     unsigned char key[32];
96     short int mac_size;
97 };
98 /* GOST-specific ASN1 structures */
99
100 typedef struct {
101     ASN1_OCTET_STRING *encrypted_key;
102     ASN1_OCTET_STRING *imit;
103 } GOST_KEY_INFO;
104
105 DECLARE_ASN1_FUNCTIONS(GOST_KEY_INFO)
106
107 typedef struct {
108     ASN1_OBJECT *cipher;
109     X509_PUBKEY *ephem_key;
110     ASN1_OCTET_STRING *eph_iv;
111 } GOST_KEY_AGREEMENT_INFO;
112
113 DECLARE_ASN1_FUNCTIONS(GOST_KEY_AGREEMENT_INFO)
114
115 typedef struct {
116     GOST_KEY_INFO *key_info;
117     GOST_KEY_AGREEMENT_INFO *key_agreement_info;
118 } GOST_KEY_TRANSPORT;
119
120 DECLARE_ASN1_FUNCTIONS(GOST_KEY_TRANSPORT)
121
122 typedef struct {                /* FIXME incomplete */
123     GOST_KEY_TRANSPORT *gkt;
124 } GOST_CLIENT_KEY_EXCHANGE_PARAMS;
125
126 /*   PSKeyTransport ::= SEQUENCE {
127        PSEXP OCTET STRING,
128        ephemeralPublicKey SubjectPublicKeyInfo
129    }
130    SubjectPublicKeyInfo ::= SEQUENCE {
131        algorithm AlgorithmIdentifier,
132        subjectPublicKey BITSTRING
133    }
134    AlgorithmIdentifier ::= SEQUENCE {
135        algorithm OBJECT IDENTIFIER,
136        parameters ANY OPTIONAL
137    }*/
138 typedef struct PSKeyTransport_st {
139     ASN1_OCTET_STRING *psexp;
140     X509_PUBKEY       *ephem_key;
141     ASN1_OCTET_STRING *ukm;
142 } PSKeyTransport_gost;
143
144 DECLARE_ASN1_FUNCTIONS(PSKeyTransport_gost)
145 /*
146  * Hacks to shorten symbols to 31 characters or less, or OpenVMS. This mimics
147  * what's done in symhacks.h, but since this is a very local header file, I
148  * prefered to put this hack directly here. -- Richard Levitte
149  */
150 # ifdef OPENSSL_SYS_VMS
151 #  undef GOST_CLIENT_KEY_EXCHANGE_PARAMS_it
152 #  define GOST_CLIENT_KEY_EXCHANGE_PARAMS_it      GOST_CLIENT_KEY_EXC_PARAMS_it
153 #  undef GOST_CLIENT_KEY_EXCHANGE_PARAMS_new
154 #  define GOST_CLIENT_KEY_EXCHANGE_PARAMS_new     GOST_CLIENT_KEY_EXC_PARAMS_new
155 #  undef GOST_CLIENT_KEY_EXCHANGE_PARAMS_free
156 #  define GOST_CLIENT_KEY_EXCHANGE_PARAMS_free    GOST_CLIENT_KEY_EXC_PARAMS_free
157 #  undef d2i_GOST_CLIENT_KEY_EXCHANGE_PARAMS
158 #  define d2i_GOST_CLIENT_KEY_EXCHANGE_PARAMS     d2i_GOST_CLIENT_KEY_EXC_PARAMS
159 #  undef i2d_GOST_CLIENT_KEY_EXCHANGE_PARAMS
160 #  define i2d_GOST_CLIENT_KEY_EXCHANGE_PARAMS     i2d_GOST_CLIENT_KEY_EXC_PARAMS
161 # endif                         /* End of hack */
162 DECLARE_ASN1_FUNCTIONS(GOST_CLIENT_KEY_EXCHANGE_PARAMS)
163 typedef struct {
164     ASN1_OBJECT *key_params;
165     ASN1_OBJECT *hash_params;
166     ASN1_OBJECT *cipher_params;
167 } GOST_KEY_PARAMS;
168
169 DECLARE_ASN1_FUNCTIONS(GOST_KEY_PARAMS)
170
171 typedef struct {
172     ASN1_OCTET_STRING *iv;
173     ASN1_OBJECT *enc_param_set;
174 } GOST_CIPHER_PARAMS;
175
176 DECLARE_ASN1_FUNCTIONS(GOST_CIPHER_PARAMS)
177
178 typedef struct {
179         ASN1_OCTET_STRING *ukm;
180         } GOST2015_CIPHER_PARAMS;
181
182 DECLARE_ASN1_FUNCTIONS(GOST2015_CIPHER_PARAMS)
183
184 typedef struct {
185     ASN1_OCTET_STRING *masked_priv_key;
186     ASN1_OCTET_STRING *public_key;
187 } MASKED_GOST_KEY;
188
189 DECLARE_ASN1_FUNCTIONS(MASKED_GOST_KEY)
190
191 /*============== Message digest  and cipher related structures  ==========*/
192     /*
193      * Structure used as EVP_MD_CTX-md_data. It allows to avoid storing
194      * in the md-data pointers to dynamically allocated memory. I
195      * cannot invent better way to avoid memory leaks, because openssl
196      * insist on invoking Init on Final-ed digests, and there is no
197      * reliable way to find out whether pointer in the passed md_data is
198      * valid or not.
199      */
200 struct ossl_gost_digest_ctx {
201     gost_hash_ctx dctx;
202     gost_ctx cctx;
203 };
204 /* Cipher context used for EVP_CIPHER operation */
205 struct ossl_gost_cipher_ctx {
206     int paramNID;
207     unsigned int count;
208     int key_meshing;
209     unsigned char kdf_seed[8];
210     unsigned char tag[8];
211     gost_ctx cctx;
212     EVP_MD_CTX *omac_ctx;
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 /* Find encryption params from ASN1_OBJECT */
232 const struct gost_cipher_info *get_encryption_params(ASN1_OBJECT *obj);
233
234 void inc_counter(unsigned char *counter, size_t counter_bytes);
235
236 # define EVP_MD_CTRL_KEY_LEN (EVP_MD_CTRL_ALG_CTRL+3)
237 # define EVP_MD_CTRL_SET_KEY (EVP_MD_CTRL_ALG_CTRL+4)
238 /* EVP_PKEY_METHOD key encryption callbacks */
239 /* From gost_ec_keyx.c */
240 int pkey_gost_encrypt(EVP_PKEY_CTX *pctx, unsigned char *out,
241                            size_t *out_len, const unsigned char *key,
242                            size_t key_len);
243
244 int pkey_gost_decrypt(EVP_PKEY_CTX *pctx, unsigned char *key,
245                            size_t *key_len, const unsigned char *in,
246                            size_t in_len);
247 /* derive functions */
248 /* From gost_ec_keyx.c */
249 int pkey_gost_ec_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen);
250 int fill_GOST_EC_params(EC_KEY *eckey, int nid);
251 int gost_ec_keygen(EC_KEY *ec);
252
253 ECDSA_SIG *gost_ec_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey);
254 int gost_ec_verify(const unsigned char *dgst, int dgst_len,
255                    ECDSA_SIG *sig, EC_KEY *ec);
256 int gost_ec_compute_public(EC_KEY *ec);
257 int gost_ec_point_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n,
258                       const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);
259
260 #define CURVEDEF(a) \
261 int point_mul_##a(const EC_GROUP *group, EC_POINT *r, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);\
262 int point_mul_g_##a(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, BN_CTX *ctx);\
263 int point_mul_two_##a(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);
264
265 CURVEDEF(id_GostR3410_2001_CryptoPro_A_ParamSet)
266 CURVEDEF(id_GostR3410_2001_CryptoPro_B_ParamSet)
267 CURVEDEF(id_GostR3410_2001_CryptoPro_C_ParamSet)
268 CURVEDEF(id_GostR3410_2001_TestParamSet)
269 CURVEDEF(id_tc26_gost_3410_2012_256_paramSetA)
270 CURVEDEF(id_tc26_gost_3410_2012_512_paramSetA)
271 CURVEDEF(id_tc26_gost_3410_2012_512_paramSetB)
272 CURVEDEF(id_tc26_gost_3410_2012_512_paramSetC)
273
274 /* VKO */
275 int VKO_compute_key(unsigned char *shared_key,
276                     const EC_POINT *pub_key, const EC_KEY *priv_key,
277                     const unsigned char *ukm, const size_t ukm_size,
278                     const int vko_dgst_nid);
279
280 /* KDF TREE */
281 int gost_kdftree2012_256(unsigned char *keyout, size_t keyout_len,
282                          const unsigned char *key, size_t keylen,
283                          const unsigned char *label, size_t label_len,
284                          const unsigned char *seed, size_t seed_len,
285                          const size_t representation);
286
287 int gost_tlstree(int cipher_nid, const unsigned char *in, unsigned char *out,
288                  const unsigned char *tlsseq);
289 /* KExp/KImp */
290 int gost_kexp15(const unsigned char *shared_key, const int shared_len,
291                 int cipher_nid, const unsigned char *cipher_key,
292                 int mac_nid, unsigned char *mac_key,
293                 const unsigned char *iv, const size_t ivlen,
294                 unsigned char *out, int *out_len);
295 int gost_kimp15(const unsigned char *expkey, const size_t expkeylen,
296                 int cipher_nid, const unsigned char *cipher_key,
297                 int mac_nid, unsigned char *mac_key,
298                 const unsigned char *iv, const size_t ivlen,
299                 unsigned char *shared_key);
300 /*============== miscellaneous functions============================= */
301 /*
302  * Store bignum in byte array of given length, prepending by zeros if
303  * nesseccary
304  */
305 int store_bignum(const BIGNUM *bn, unsigned char *buf, int len);
306 /* Pack GOST R 34.10 signature according to CryptoPro rules */
307 int pack_sign_cp(ECDSA_SIG *s, int order, unsigned char *sig, size_t *siglen);
308 /* from ameth.c */
309 /* Get private key as BIGNUM from both 34.10-2001 keys*/
310 /* Returns pointer into EVP_PKEY structure */
311 BIGNUM *gost_get0_priv_key(const EVP_PKEY *pkey);
312 /* from gost_crypt.c */
313 /* Decrements 8-byte sequence */ 
314 int decrement_sequence(unsigned char *seq, int decrement);
315
316 /* Struct describing cipher and used for init/deinit.*/
317 struct gost_cipher_st {
318     struct gost_cipher_st *template; /* template struct */
319     int nid;
320     EVP_CIPHER *cipher;
321     int block_size;     /* (bytes) */
322     int key_len;        /* (bytes) */
323     int iv_len;
324     int flags;
325     int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
326                  const unsigned char *iv, int enc);
327     int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
328                      const unsigned char *in, size_t inl);
329     int (*cleanup)(EVP_CIPHER_CTX *);
330     int ctx_size;
331     int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *);
332     int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *);
333     int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr);
334 };
335 typedef struct gost_cipher_st GOST_cipher;
336
337 EVP_CIPHER *GOST_init_cipher(GOST_cipher *c);
338 void GOST_deinit_cipher(GOST_cipher *c);
339
340 /* ENGINE implementation data */
341 extern GOST_cipher Gost28147_89_cipher;
342 extern GOST_cipher Gost28147_89_cbc_cipher;
343 extern GOST_cipher Gost28147_89_cnt_cipher;
344 extern GOST_cipher Gost28147_89_cnt_12_cipher;
345 extern GOST_cipher magma_ctr_cipher;
346 extern GOST_cipher magma_ctr_acpkm_cipher;
347 extern GOST_cipher magma_ctr_acpkm_omac_cipher;
348 extern GOST_cipher magma_cbc_cipher;
349 extern GOST_cipher grasshopper_ecb_cipher;
350 extern GOST_cipher grasshopper_cbc_cipher;
351 extern GOST_cipher grasshopper_cfb_cipher;
352 extern GOST_cipher grasshopper_ofb_cipher;
353 extern GOST_cipher grasshopper_ctr_cipher;
354 extern GOST_cipher grasshopper_ctr_acpkm_cipher;
355 extern GOST_cipher grasshopper_ctr_acpkm_omac_cipher;
356 extern GOST_cipher magma_kexp15_cipher;
357 extern GOST_cipher kuznyechik_kexp15_cipher;
358
359 /* Provider implementation data */
360 extern const OSSL_ALGORITHM GOST_prov_ciphers[];
361 void GOST_prov_deinit_ciphers(void);
362
363 struct gost_digest_st {
364     struct gost_digest_st *template;
365     int nid;
366     const char *alias;
367     EVP_MD *digest;
368     int result_size;
369     int input_blocksize;
370     int app_datasize;
371     int flags;
372     int (*init)(EVP_MD_CTX *ctx);
373     int (*update)(EVP_MD_CTX *ctx, const void *data, size_t count);
374     int (*final)(EVP_MD_CTX *ctx, unsigned char *md);
375     int (*copy)(EVP_MD_CTX *to, const EVP_MD_CTX *from);
376     int (*cleanup)(EVP_MD_CTX *ctx);
377     int (*ctrl)(EVP_MD_CTX *ctx, int cmd, int p1, void *p2);
378 };
379 typedef struct gost_digest_st GOST_digest;
380
381 EVP_MD *GOST_init_digest(GOST_digest *d);
382 void GOST_deinit_digest(GOST_digest *d);
383
384 extern GOST_digest GostR3411_94_digest;
385 extern GOST_digest Gost28147_89_MAC_digest;
386 extern GOST_digest Gost28147_89_mac_12_digest;
387 extern GOST_digest GostR3411_2012_256_digest;
388 extern GOST_digest GostR3411_2012_512_digest;
389 extern GOST_digest magma_mac_digest;
390 extern GOST_digest grasshopper_mac_digest;
391 extern GOST_digest kuznyechik_ctracpkm_omac_digest;
392
393 #endif
394 /* vim: set expandtab cinoptions=\:0,l1,t0,g0,(0 sw=4 : */