Loading apps/s_client.c +1 −1 Original line number Diff line number Diff line Loading @@ -267,7 +267,7 @@ static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity, ret); /* convert the PSK key to binary */ key = OPENSSL_hexstr2buf(psk_key, &key_len); key = string_to_hex(psk_key, &key_len); if (key == NULL) { BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n", psk_key); Loading apps/s_server.c +1 −1 Original line number Diff line number Diff line Loading @@ -376,7 +376,7 @@ static unsigned int psk_server_cb(SSL *ssl, const char *identity, BIO_printf(bio_s_out, "PSK client identity found\n"); /* convert the PSK key to binary */ key = OPENSSL_hexstr2buf(psk_key, &key_len); key = string_to_hex(psk_key, &key_len); if (key == NULL) { BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n", psk_key); Loading Loading
apps/s_client.c +1 −1 Original line number Diff line number Diff line Loading @@ -267,7 +267,7 @@ static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity, ret); /* convert the PSK key to binary */ key = OPENSSL_hexstr2buf(psk_key, &key_len); key = string_to_hex(psk_key, &key_len); if (key == NULL) { BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n", psk_key); Loading
apps/s_server.c +1 −1 Original line number Diff line number Diff line Loading @@ -376,7 +376,7 @@ static unsigned int psk_server_cb(SSL *ssl, const char *identity, BIO_printf(bio_s_out, "PSK client identity found\n"); /* convert the PSK key to binary */ key = OPENSSL_hexstr2buf(psk_key, &key_len); key = string_to_hex(psk_key, &key_len); if (key == NULL) { BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n", psk_key); Loading