X-Git-Url: https://wagner.pp.ru/gitweb/?a=blobdiff_plain;f=gost_crypt.c;fp=gost_crypt.c;h=66e769d355a747fc6ea88f6423bdeda80084aa0d;hb=557edb4e1feed3791e90d3eab7da3ae7a43d40e6;hp=3523b3873fa796d95854d98c6e8f8a19645a0e37;hpb=a0a869029241b849ea989314bd0374b0ea948e4b;p=openssl-gost%2Fengine.git diff --git a/gost_crypt.c b/gost_crypt.c index 3523b38..66e769d 100644 --- a/gost_crypt.c +++ b/gost_crypt.c @@ -766,24 +766,46 @@ int gost_imit_ctrl(EVP_MD_CTX *ctx, int type, int arg, void *ptr) return 1; case EVP_MD_CTRL_SET_KEY: { - if (arg != 32) { - GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_KEY_SIZE); - return 0; + struct ossl_gost_imit_ctx *gost_imit_ctx = ctx->md_data; + + if (ctx->digest->init(ctx) <= 0) { + GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_MAC_KEY_NOT_SET); + return 0; + } + ctx->flags |= EVP_MD_CTX_FLAG_NO_INIT; + + if (arg == 0) { + struct gost_mac_key *key = (struct gost_mac_key*) ptr; + if (key->mac_param_nid != NID_undef) { + const struct gost_cipher_info *param = get_encryption_params(OBJ_nid2obj(key->mac_param_nid)); + if (param == NULL) + { + GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_PARAMS); + return 0; + } + gost_init(&(gost_imit_ctx->cctx), param->sblock); + } + gost_key(&(gost_imit_ctx->cctx), key->key); + gost_imit_ctx->key_set = 1; + + return 1; } - - gost_key(&(((struct ossl_gost_imit_ctx *)(ctx->md_data))->cctx), - ptr); - ((struct ossl_gost_imit_ctx *)(ctx->md_data))->key_set = 1; + else if (arg == 32) + { + gost_key(&(gost_imit_ctx->cctx), ptr); + gost_imit_ctx->key_set = 1; return 1; - + } + GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_KEY_SIZE); + return 0; } case EVP_MD_CTRL_MAC_LEN: { + struct ossl_gost_imit_ctx *c = ctx->md_data; if (arg < 1 || arg > 8) { GOSTerr(GOST_F_GOST_IMIT_CTRL, GOST_R_INVALID_MAC_SIZE); return 0; } - struct ossl_gost_imit_ctx *c = ctx->md_data; c->dgst_size=arg; return 1; }