0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00

core: in OpenSSL driver, fix the external_pki->sign call to

pass the new sig_type parameter.
This commit is contained in:
James Yonan 2014-02-07 21:36:24 -07:00
parent 03cf311f75
commit 494e6fae64

View File

@ -489,7 +489,7 @@ namespace openvpn {
/* get signature */
std::string sig_b64;
const bool status = self->external_pki->sign(from_b64, sig_b64);
const bool status = self->external_pki->sign("RSA_RAW", from_b64, sig_b64);
if (!status)
throw openssl_external_pki("could not obtain signature");