wolfSSL: wolfSSL_use_PrivateKey_* correct return codes
The wolfSSL_use_PrivateKey_* APIs return 1 on success. 0 is also an error. Signed-off-by: Juliusz Sosinowicz <juliusz@wolfssl.com>
This commit is contained in:
parent
7e823d4df2
commit
8d10831dcf
1 changed files with 3 additions and 3 deletions
|
@ -534,7 +534,7 @@ static int tls_connection_private_key(void *tls_ctx,
|
||||||
if (private_key_blob) {
|
if (private_key_blob) {
|
||||||
if (wolfSSL_use_PrivateKey_buffer(conn->ssl,
|
if (wolfSSL_use_PrivateKey_buffer(conn->ssl,
|
||||||
private_key_blob, blob_len,
|
private_key_blob, blob_len,
|
||||||
SSL_FILETYPE_ASN1) < 0) {
|
SSL_FILETYPE_ASN1) <= 0) {
|
||||||
wpa_printf(MSG_INFO,
|
wpa_printf(MSG_INFO,
|
||||||
"SSL: use private DER blob failed");
|
"SSL: use private DER blob failed");
|
||||||
} else {
|
} else {
|
||||||
|
@ -545,11 +545,11 @@ static int tls_connection_private_key(void *tls_ctx,
|
||||||
|
|
||||||
if (!ok && private_key) {
|
if (!ok && private_key) {
|
||||||
if (wolfSSL_use_PrivateKey_file(conn->ssl, private_key,
|
if (wolfSSL_use_PrivateKey_file(conn->ssl, private_key,
|
||||||
SSL_FILETYPE_PEM) < 0) {
|
SSL_FILETYPE_PEM) <= 0) {
|
||||||
wpa_printf(MSG_INFO,
|
wpa_printf(MSG_INFO,
|
||||||
"SSL: use private key PEM file failed");
|
"SSL: use private key PEM file failed");
|
||||||
if (wolfSSL_use_PrivateKey_file(conn->ssl, private_key,
|
if (wolfSSL_use_PrivateKey_file(conn->ssl, private_key,
|
||||||
SSL_FILETYPE_ASN1) < 0)
|
SSL_FILETYPE_ASN1) <= 0)
|
||||||
{
|
{
|
||||||
wpa_printf(MSG_INFO,
|
wpa_printf(MSG_INFO,
|
||||||
"SSL: use private key DER file failed");
|
"SSL: use private key DER file failed");
|
||||||
|
|
Loading…
Reference in a new issue