vtls: remove call to PKCS12_PBE_add()

Curl is one of the last callers of PKCS12_PBE_add(). It has been a noop
since OpenSSL 0.9.8k (2006) stubbed it out when moving the built-in PBE
algorithms to a static table:
b8f702a0af

Closes #19201
This commit is contained in:
Theo Buehler 2025-10-23 13:12:48 +02:00 committed by Daniel Stenberg
parent 9752d5fe0b
commit 2edce44065
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 0 additions and 3 deletions

View file

@ -1578,8 +1578,6 @@ static int pkcs12load(struct Curl_easy *data,
return 0;
}
PKCS12_PBE_add();
if(!PKCS12_parse(p12, key_passwd, &pri, &x509, &ca)) {
failf(data,
"could not parse PKCS12 file, check password, " OSSL_PACKAGE