From: Dr. Stephen Henson Date: Sun, 1 Jun 2008 23:24:53 +0000 (+0000) Subject: Get and note keyspec when signing. X-Git-Tag: OpenSSL_0_9_8k^2~360 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=4be0a5d42987ad1e78c0397e74c7dc5b43e20160 Get and note keyspec when signing. --- diff --git a/engines/e_capi.c b/engines/e_capi.c index deea50c723..c6821ebc6a 100644 --- a/engines/e_capi.c +++ b/engines/e_capi.c @@ -404,6 +404,7 @@ struct CAPI_KEY_st { HCRYPTPROV hprov; HCRYPTKEY key; + DWORD keyspec; }; static int bind_capi(ENGINE *e) @@ -721,7 +722,7 @@ int capi_rsa_sign(int dtype, const unsigned char *m, unsigned int m_len, /* Finally sign it */ slen = RSA_size(rsa); - if(!CryptSignHash(hash, AT_KEYEXCHANGE, NULL, 0, sigret, &slen)) { + if(!CryptSignHash(hash, capi_key->keyspec, NULL, 0, sigret, &slen)) { CAPIerr(CAPI_F_CAPI_RSA_SIGN, CAPI_R_ERROR_SIGNING_HASH); capi_addlasterror(); goto err; @@ -1289,6 +1290,7 @@ static CAPI_KEY *capi_get_key(CAPI_CTX *ctx, const char *contname, char *provnam CryptReleaseContext(key->hprov, 0); goto err; } + key->keyspec = keyspec; return key; err: