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