Reencode with X509_CRL_ctx_sign too.

(cherry picked from commit 96940f4f2d0300c033379a87db0ff19e598c6264)
This commit is contained in:
Dr. Stephen Henson 2013-05-03 12:31:47 +01:00
parent 01bc7dcafc
commit da0c007254

View File

@ -131,6 +131,7 @@ int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md)
int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx)
{
x->crl->enc.modified = 1;
return ASN1_item_sign_ctx(ASN1_ITEM_rptr(X509_CRL_INFO),
x->crl->sig_alg, x->sig_alg, x->signature, x->crl, ctx);
}