Loading crypto/evp/evp_enc.c +5 −1 Original line number Diff line number Diff line Loading @@ -699,7 +699,11 @@ int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, return 0; } if (ctx->cipher == NULL || ctx->cipher->prov == NULL) if (ctx->cipher == NULL) { EVPerr(EVP_F_EVP_DECRYPTUPDATE, EVP_R_NO_CIPHER_SET); return 0; } if (ctx->cipher->prov == NULL) goto legacy; blocksize = EVP_CIPHER_CTX_block_size(ctx); Loading Loading
crypto/evp/evp_enc.c +5 −1 Original line number Diff line number Diff line Loading @@ -699,7 +699,11 @@ int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, return 0; } if (ctx->cipher == NULL || ctx->cipher->prov == NULL) if (ctx->cipher == NULL) { EVPerr(EVP_F_EVP_DECRYPTUPDATE, EVP_R_NO_CIPHER_SET); return 0; } if (ctx->cipher->prov == NULL) goto legacy; blocksize = EVP_CIPHER_CTX_block_size(ctx); Loading