Loading crypto/pem/pvkfmt.c +5 −0 Original line number Diff line number Diff line Loading @@ -755,6 +755,11 @@ static EVP_PKEY *do_PVK_body(const unsigned char **in, /* Copy BLOBHEADER across, decrypt rest */ memcpy(enctmp, p, 8); p += 8; if (keylen < 8) { PEMerr(PEM_F_DO_PVK_BODY, PEM_R_PVK_TOO_SHORT); return NULL; } inlen = keylen - 8; q = enctmp + 8; EVP_CIPHER_CTX_init(&cctx); Loading Loading
crypto/pem/pvkfmt.c +5 −0 Original line number Diff line number Diff line Loading @@ -755,6 +755,11 @@ static EVP_PKEY *do_PVK_body(const unsigned char **in, /* Copy BLOBHEADER across, decrypt rest */ memcpy(enctmp, p, 8); p += 8; if (keylen < 8) { PEMerr(PEM_F_DO_PVK_BODY, PEM_R_PVK_TOO_SHORT); return NULL; } inlen = keylen - 8; q = enctmp + 8; EVP_CIPHER_CTX_init(&cctx); Loading