Sync usage with man page.
[netbsd-mini2440.git] / crypto / external / bsd / openssl / dist / engines / ccgost / gost_crypt.c
blob9c9fed5a7b1f77318ed19c18f4c8c982dcbef979
1 /**********************************************************************
2 * gost_crypt.c *
3 * Copyright (c) 2005-2006 Cryptocom LTD *
4 * This file is distributed under the same license as OpenSSL *
5 * *
6 * OpenSSL interface to GOST 28147-89 cipher functions *
7 * Requires OpenSSL 0.9.9 for compilation *
8 **********************************************************************/
9 #include <string.h>
10 #include "gost89.h"
11 #include <openssl/rand.h>
12 #include "e_gost_err.h"
13 #include "gost_lcl.h"
14 static int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
15 const unsigned char *iv, int enc);
16 static int gost_cipher_init_cpa(EVP_CIPHER_CTX *ctx, const unsigned char *key,
17 const unsigned char *iv, int enc);
18 /* Handles block of data in CFB mode */
19 static int gost_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
20 const unsigned char *in, size_t inl);
21 /* Handles block of data in CNT mode */
22 static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out,
23 const unsigned char *in, size_t inl);
24 /* Cleanup function */
25 static int gost_cipher_cleanup(EVP_CIPHER_CTX *);
26 /* set/get cipher parameters */
27 static int gost89_set_asn1_parameters(EVP_CIPHER_CTX *ctx,ASN1_TYPE *params);
28 static int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx,ASN1_TYPE *params);
29 /* Control function */
30 static int gost_cipher_ctl(EVP_CIPHER_CTX *ctx,int type,int arg,void *ptr);
32 EVP_CIPHER cipher_gost =
34 NID_id_Gost28147_89,
35 1,/*block_size*/
36 32,/*key_size*/
37 8,/*iv_len - ñèíõðîïîñûëêà*/
38 EVP_CIPH_CFB_MODE| EVP_CIPH_NO_PADDING |
39 EVP_CIPH_CUSTOM_IV| EVP_CIPH_RAND_KEY | EVP_CIPH_ALWAYS_CALL_INIT,
40 gost_cipher_init,
41 gost_cipher_do_cfb,
42 gost_cipher_cleanup,
43 sizeof(struct ossl_gost_cipher_ctx),/* ctx_size */
44 gost89_set_asn1_parameters,
45 gost89_get_asn1_parameters,
46 gost_cipher_ctl,
47 NULL,
50 EVP_CIPHER cipher_gost_cpacnt =
52 NID_gost89_cnt,
53 1,/*block_size*/
54 32,/*key_size*/
55 8,/*iv_len - ñèíõðîïîñûëêà*/
56 EVP_CIPH_OFB_MODE| EVP_CIPH_NO_PADDING |
57 EVP_CIPH_CUSTOM_IV| EVP_CIPH_RAND_KEY | EVP_CIPH_ALWAYS_CALL_INIT,
58 gost_cipher_init_cpa,
59 gost_cipher_do_cnt,
60 gost_cipher_cleanup,
61 sizeof(struct ossl_gost_cipher_ctx), /* ctx_size */
62 gost89_set_asn1_parameters,
63 gost89_get_asn1_parameters,
64 gost_cipher_ctl,
65 NULL,
68 /* Implementation of GOST 28147-89 in MAC (imitovstavka) mode */
69 /* Init functions which set specific parameters */
70 static int gost_imit_init_cpa(EVP_MD_CTX *ctx);
71 /* process block of data */
72 static int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count);
73 /* Return computed value */
74 static int gost_imit_final(EVP_MD_CTX *ctx,unsigned char *md);
75 /* Copies context */
76 static int gost_imit_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from);
77 static int gost_imit_cleanup(EVP_MD_CTX *ctx);
78 /* Control function, knows how to set MAC key.*/
79 static int gost_imit_ctrl(EVP_MD_CTX *ctx,int type, int arg, void *ptr);
81 EVP_MD imit_gost_cpa =
83 NID_id_Gost28147_89_MAC,
84 NID_undef,
87 gost_imit_init_cpa,
88 gost_imit_update,
89 gost_imit_final,
90 gost_imit_copy,
91 gost_imit_cleanup,
92 NULL,
93 NULL,
94 {0,0,0,0,0},
96 sizeof(struct ossl_gost_imit_ctx),
97 gost_imit_ctrl
101 * Correspondence between gost parameter OIDs and substitution blocks
102 * NID field is filed by register_gost_NID function in engine.c
103 * upon engine initialization
106 struct gost_cipher_info gost_cipher_list[]=
108 /* NID */ /* Subst block */ /* Key meshing*/
109 /*{NID_id_GostR3411_94_CryptoProParamSet,&GostR3411_94_CryptoProParamSet,0},*/
110 {NID_id_Gost28147_89_cc,&GostR3411_94_CryptoProParamSet,0},
111 {NID_id_Gost28147_89_CryptoPro_A_ParamSet,&Gost28147_CryptoProParamSetA,1},
112 {NID_id_Gost28147_89_CryptoPro_B_ParamSet,&Gost28147_CryptoProParamSetB,1},
113 {NID_id_Gost28147_89_CryptoPro_C_ParamSet,&Gost28147_CryptoProParamSetC,1},
114 {NID_id_Gost28147_89_CryptoPro_D_ParamSet,&Gost28147_CryptoProParamSetD,1},
115 {NID_id_Gost28147_89_TestParamSet,&Gost28147_TestParamSet,1},
116 {NID_undef,NULL,0}
119 /* get encryption parameters from crypto network settings
120 FIXME For now we use environment var CRYPT_PARAMS as place to
121 store these settings. Actually, it is better to use engine control command, read from configuration file to set them */
122 const struct gost_cipher_info *get_encryption_params(ASN1_OBJECT *obj)
124 int nid;
125 struct gost_cipher_info *param;
126 if (!obj)
128 const char * params = get_gost_engine_param(GOST_PARAM_CRYPT_PARAMS);
129 if (!params || !strlen(params))
130 return &gost_cipher_list[1];
132 nid = OBJ_txt2nid(params);
133 if (nid == NID_undef)
135 GOSTerr(GOST_F_GET_ENCRYPTION_PARAMS,
136 GOST_R_INVALID_CIPHER_PARAM_OID);
137 return NULL;
140 else
142 nid= OBJ_obj2nid(obj);
144 for (param=gost_cipher_list;param->sblock!=NULL && param->nid!=nid;
145 param++);
146 if (!param->sblock)
148 GOSTerr(GOST_F_GET_ENCRYPTION_PARAMS,GOST_R_INVALID_CIPHER_PARAMS);
149 return NULL;
151 return param;
154 /* Sets cipher param from paramset NID. */
155 static int gost_cipher_set_param(struct ossl_gost_cipher_ctx *c,int nid)
157 const struct gost_cipher_info *param;
158 param=get_encryption_params((nid==NID_undef?NULL:OBJ_nid2obj(nid)));
159 if (!param) return 0;
161 c->paramNID = param->nid;
162 c->key_meshing=param->key_meshing;
163 c->count=0;
164 gost_init(&(c->cctx), param->sblock);
165 return 1;
168 /* Initializes EVP_CIPHER_CTX by paramset NID */
169 static int gost_cipher_init_param(EVP_CIPHER_CTX *ctx, const unsigned char *key,
170 const unsigned char *iv, int enc, int paramNID,int mode)
172 struct ossl_gost_cipher_ctx *c=ctx->cipher_data;
173 if (ctx->app_data == NULL)
175 if (!gost_cipher_set_param(c,paramNID)) return 0;
176 ctx->app_data = ctx->cipher_data;
178 if (key) gost_key(&(c->cctx),key);
179 if(iv) memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
180 memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
181 return 1;
184 static int gost_cipher_init_cpa(EVP_CIPHER_CTX *ctx, const unsigned char *key,
185 const unsigned char *iv, int enc)
187 struct ossl_gost_cipher_ctx *c=ctx->cipher_data;
188 gost_init(&(c->cctx),&Gost28147_CryptoProParamSetA);
189 c->key_meshing=1;
190 c->count=0;
191 if(key) gost_key(&(c->cctx),key);
192 if(iv) memcpy(ctx->oiv, iv, EVP_CIPHER_CTX_iv_length(ctx));
193 memcpy(ctx->iv, ctx->oiv, EVP_CIPHER_CTX_iv_length(ctx));
194 return 1;
197 /* Initializes EVP_CIPHER_CTX with default values */
198 int gost_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,
199 const unsigned char *iv, int enc)
201 return gost_cipher_init_param(ctx,key,iv,enc,NID_undef,EVP_CIPH_CFB_MODE);
203 /* Wrapper around gostcrypt function from gost89.c which perform
204 * key meshing when nesseccary
206 static void gost_crypt_mesh (void *ctx,unsigned char *iv,unsigned char *buf)
208 struct ossl_gost_cipher_ctx *c = ctx;
209 if (c->count&&c->key_meshing && c->count%1024==0)
211 cryptopro_key_meshing(&(c->cctx),iv);
213 gostcrypt(&(c->cctx),iv,buf);
214 c->count+=8;
217 static void gost_cnt_next (void *ctx, unsigned char *iv, unsigned char *buf)
219 struct ossl_gost_cipher_ctx *c = ctx;
220 word32 g,go;
221 unsigned char buf1[8];
222 if (c->count && c->key_meshing && c->count %1024 ==0)
224 cryptopro_key_meshing(&(c->cctx),iv);
226 if (c->count==0)
228 gostcrypt(&(c->cctx),iv,buf1);
230 else
232 memcpy(buf1,iv,8);
234 g = buf1[0]|(buf1[1]<<8)|(buf1[2]<<16)|(buf1[3]<<24);
235 g += 0x01010101;
236 buf1[0]=(unsigned char)(g&0xff);
237 buf1[1]=(unsigned char)((g>>8)&0xff);
238 buf1[2]=(unsigned char)((g>>16)&0xff);
239 buf1[3]=(unsigned char)((g>>24)&0xff);
240 g = buf1[4]|(buf1[5]<<8)|(buf1[6]<<16)|(buf1[7]<<24);
241 go = g;
242 g += 0x01010104;
243 if (go > g) /* overflow*/
244 g++;
245 buf1[4]=(unsigned char)(g&0xff);
246 buf1[5]=(unsigned char)((g>>8)&0xff);
247 buf1[6]=(unsigned char)((g>>16)&0xff);
248 buf1[7]=(unsigned char)((g>>24)&0xff);
249 memcpy(iv,buf1,8);
250 gostcrypt(&(c->cctx),buf1,buf);
251 c->count +=8;
254 /* GOST encryption in CFB mode */
255 int gost_cipher_do_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
256 const unsigned char *in, size_t inl)
258 const unsigned char *in_ptr=in;
259 unsigned char *out_ptr=out;
260 size_t i=0;
261 size_t j=0;
262 /* process partial block if any */
263 if (ctx->num)
265 for (j=ctx->num,i=0;j<8 && i<inl;j++,i++,in_ptr++,out_ptr++)
267 if (!ctx->encrypt) ctx->buf[j+8]=*in_ptr;
268 *out_ptr=ctx->buf[j]^(*in_ptr);
269 if (ctx->encrypt) ctx->buf[j+8]=*out_ptr;
271 if (j==8)
273 memcpy(ctx->iv,ctx->buf+8,8);
274 ctx->num=0;
276 else
278 ctx->num=j;
279 return 1;
283 for (;i+8<inl;i+=8,in_ptr+=8,out_ptr+=8)
285 /*block cipher current iv */
286 gost_crypt_mesh(ctx->cipher_data,ctx->iv,ctx->buf);
287 /*xor next block of input text with it and output it*/
288 /*output this block */
289 if (!ctx->encrypt) memcpy(ctx->iv,in_ptr,8);
290 for (j=0;j<8;j++)
292 out_ptr[j]=ctx->buf[j]^in_ptr[j];
294 /* Encrypt */
295 /* Next iv is next block of cipher text*/
296 if (ctx->encrypt) memcpy(ctx->iv,out_ptr,8);
298 /* Process rest of buffer */
299 if (i<inl)
301 gost_crypt_mesh(ctx->cipher_data,ctx->iv,ctx->buf);
302 if (!ctx->encrypt) memcpy(ctx->buf+8,in_ptr,j);
303 for (j=0;i<inl;j++,i++)
305 out_ptr[j]=ctx->buf[j]^in_ptr[j];
307 ctx->num = j;
308 if (ctx->encrypt) memcpy(ctx->buf+8,out_ptr,j);
310 else
312 ctx->num = 0;
314 return 1;
317 static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out,
318 const unsigned char *in, size_t inl)
320 const unsigned char *in_ptr=in;
321 unsigned char *out_ptr=out;
322 size_t i=0;
323 size_t j;
324 /* process partial block if any */
325 if (ctx->num)
327 for (j=ctx->num,i=0;j<8 && i<inl;j++,i++,in_ptr++,out_ptr++)
329 *out_ptr=ctx->buf[j]^(*in_ptr);
331 if (j==8)
333 ctx->num=0;
335 else
337 ctx->num=j;
338 return 1;
342 for (;i+8<inl;i+=8,in_ptr+=8,out_ptr+=8)
344 /*block cipher current iv */
345 /* Encrypt */
346 gost_cnt_next(ctx->cipher_data,ctx->iv,ctx->buf);
347 /*xor next block of input text with it and output it*/
348 /*output this block */
349 for (j=0;j<8;j++)
351 out_ptr[j]=ctx->buf[j]^in_ptr[j];
354 /* Process rest of buffer */
355 if (i<inl)
357 gost_cnt_next(ctx->cipher_data,ctx->iv,ctx->buf);
358 for (j=0;i<inl;j++,i++)
360 out_ptr[j]=ctx->buf[j]^in_ptr[j];
362 ctx->num = j;
364 else
366 ctx->num = 0;
368 return 1;
371 /* Cleaning up of EVP_CIPHER_CTX */
372 int gost_cipher_cleanup(EVP_CIPHER_CTX *ctx)
374 gost_destroy(&((struct ossl_gost_cipher_ctx *)ctx->cipher_data)->cctx);
375 ctx->app_data = NULL;
376 return 1;
379 /* Control function for gost cipher */
380 int gost_cipher_ctl(EVP_CIPHER_CTX *ctx,int type,int arg,void *ptr)
382 switch (type)
384 case EVP_CTRL_RAND_KEY:
386 if (RAND_bytes((unsigned char *)ptr,ctx->key_len)<=0)
388 GOSTerr(GOST_F_GOST_CIPHER_CTL,GOST_R_RANDOM_GENERATOR_ERROR);
389 return -1;
391 break;
393 case EVP_CTRL_PBE_PRF_NID:
394 if (ptr) {
395 *((int *)ptr)= NID_id_HMACGostR3411_94;
396 return 1;
397 } else {
398 return 0;
401 default:
402 GOSTerr(GOST_F_GOST_CIPHER_CTL,GOST_R_UNSUPPORTED_CIPHER_CTL_COMMAND);
403 return -1;
405 return 1;
408 /* Set cipher parameters from ASN1 structure */
409 int gost89_set_asn1_parameters(EVP_CIPHER_CTX *ctx,ASN1_TYPE *params)
411 int len=0;
412 unsigned char *buf=NULL;
413 unsigned char *p=NULL;
414 struct ossl_gost_cipher_ctx *c = ctx->cipher_data;
415 GOST_CIPHER_PARAMS *gcp = GOST_CIPHER_PARAMS_new();
416 ASN1_OCTET_STRING *os = NULL;
417 if (!gcp)
419 GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, GOST_R_NO_MEMORY);
420 return 0;
422 if (!ASN1_OCTET_STRING_set(gcp->iv, ctx->iv, ctx->cipher->iv_len))
424 GOST_CIPHER_PARAMS_free(gcp);
425 GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, GOST_R_NO_MEMORY);
426 return 0;
428 ASN1_OBJECT_free(gcp->enc_param_set);
429 gcp->enc_param_set = OBJ_nid2obj(c->paramNID);
431 len = i2d_GOST_CIPHER_PARAMS(gcp, NULL);
432 p = buf = (unsigned char*)OPENSSL_malloc(len);
433 if (!buf)
435 GOST_CIPHER_PARAMS_free(gcp);
436 GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, GOST_R_NO_MEMORY);
437 return 0;
439 i2d_GOST_CIPHER_PARAMS(gcp, &p);
440 GOST_CIPHER_PARAMS_free(gcp);
442 os = ASN1_OCTET_STRING_new();
444 if(!os || !ASN1_OCTET_STRING_set(os, buf, len))
446 OPENSSL_free(buf);
447 GOSTerr(GOST_F_GOST89_SET_ASN1_PARAMETERS, GOST_R_NO_MEMORY);
448 return 0;
450 OPENSSL_free(buf);
452 ASN1_TYPE_set(params, V_ASN1_SEQUENCE, os);
453 return 1;
456 /* Store parameters into ASN1 structure */
457 int gost89_get_asn1_parameters(EVP_CIPHER_CTX *ctx,ASN1_TYPE *params)
459 int ret = -1;
460 int len;
461 GOST_CIPHER_PARAMS *gcp = NULL;
462 unsigned char *p = params->value.sequence->data;
463 struct ossl_gost_cipher_ctx *c=ctx->cipher_data;
464 if (ASN1_TYPE_get(params) != V_ASN1_SEQUENCE)
466 return ret;
469 gcp = d2i_GOST_CIPHER_PARAMS(NULL, (const unsigned char **)&p,
470 params->value.sequence->length);
472 len = gcp->iv->length;
473 if (len != ctx->cipher->iv_len)
475 GOST_CIPHER_PARAMS_free(gcp);
476 GOSTerr(GOST_F_GOST89_GET_ASN1_PARAMETERS,
477 GOST_R_INVALID_IV_LENGTH);
478 return -1;
480 if (!gost_cipher_set_param(c,OBJ_obj2nid(gcp->enc_param_set)))
482 GOST_CIPHER_PARAMS_free(gcp);
483 return -1;
485 memcpy(ctx->oiv, gcp->iv->data, len);
487 GOST_CIPHER_PARAMS_free(gcp);
489 return 1;
493 int gost_imit_init_cpa(EVP_MD_CTX *ctx)
495 struct ossl_gost_imit_ctx *c = ctx->md_data;
496 memset(c->buffer,0,16);
497 c->count = 0;
498 c->bytes_left=0;
499 c->key_meshing=1;
500 gost_init(&(c->cctx),&Gost28147_CryptoProParamSetA);
501 return 1;
504 static void mac_block_mesh(struct ossl_gost_imit_ctx *c,const unsigned char *data)
506 unsigned char buffer[8];
507 /* We are using local buffer for iv because CryptoPro doesn't
508 * interpret internal state of MAC algorithm as iv during keymeshing
509 * (but does initialize internal state from iv in key transport
511 if (c->key_meshing&& c->count && c->count %1024 ==0)
513 cryptopro_key_meshing(&(c->cctx),buffer);
515 mac_block(&(c->cctx),c->buffer,data);
516 c->count +=8;
519 int gost_imit_update(EVP_MD_CTX *ctx, const void *data, size_t count)
521 struct ossl_gost_imit_ctx *c = ctx->md_data;
522 const unsigned char *p = data;
523 size_t bytes = count,i;
524 if (!(c->key_set)) {
525 GOSTerr(GOST_F_GOST_IMIT_UPDATE, GOST_R_MAC_KEY_NOT_SET);
526 return 0;
528 if (c->bytes_left)
530 for (i=c->bytes_left;i<8&&bytes>0;bytes--,i++,p++)
532 c->partial_block[i]=*p;
534 if (i==8)
536 mac_block_mesh(c,c->partial_block);
538 else
540 c->bytes_left = i;
541 return 1;
544 while (bytes>8)
546 mac_block_mesh(c,p);
547 p+=8;
548 bytes-=8;
550 if (bytes>0)
552 memcpy(c->partial_block,p,bytes);
554 c->bytes_left=bytes;
555 return 1;
558 int gost_imit_final(EVP_MD_CTX *ctx,unsigned char *md)
560 struct ossl_gost_imit_ctx *c = ctx->md_data;
561 if (!c->key_set) {
562 GOSTerr(GOST_F_GOST_IMIT_FINAL, GOST_R_MAC_KEY_NOT_SET);
563 return 0;
565 if (c->bytes_left)
567 int i;
568 for (i=c->bytes_left;i<8;i++)
570 c->partial_block[i]=0;
572 mac_block_mesh(c,c->partial_block);
574 get_mac(c->buffer,32,md);
575 return 1;
578 int gost_imit_ctrl(EVP_MD_CTX *ctx,int type, int arg, void *ptr)
580 switch (type)
582 case EVP_MD_CTRL_KEY_LEN:
583 *((unsigned int*)(ptr)) = 32;
584 return 1;
585 case EVP_MD_CTRL_SET_KEY:
587 if (arg!=32) {
588 GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_KEY_LENGTH);
589 return 0;
592 gost_key(&(((struct ossl_gost_imit_ctx*)(ctx->md_data))->cctx),ptr) ;
593 ((struct ossl_gost_imit_ctx*)(ctx->md_data))->key_set = 1;
594 return 1;
597 default:
598 return 0;
602 int gost_imit_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from)
604 memcpy(to->md_data,from->md_data,sizeof(struct ossl_gost_imit_ctx));
605 return 1;
608 /* Clean up imit ctx */
609 int gost_imit_cleanup(EVP_MD_CTX *ctx)
611 memset(ctx->md_data,0,sizeof(struct ossl_gost_imit_ctx));
612 return 1;