From: Martin Schùˆrrer Date: Sun, 30 Sep 2012 00:04:55 +0000 (+0200) Subject: Output details of encryption errors X-Git-Tag: release-1.1pre3~36^2~2 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=5a161e86cf35351f5274d7a8e17fef4630b40686;hp=fac5593f44e47f3bd4f4b425ada38ab49fbe3b42 Output details of encryption errors --- diff --git a/src/protocol_auth.c b/src/protocol_auth.c index 4c721a44..d5b702d9 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.c @@ -244,8 +244,8 @@ bool send_metakey(connection_t *c) { */ if(RSA_public_encrypt(len, (unsigned char *)c->outkey, (unsigned char *)buffer, c->rsa_key, RSA_NO_PADDING) != len) { - logger(LOG_ERR, "Error during encryption of meta key for %s (%s)", - c->name, c->hostname); + logger(LOG_ERR, "Error during encryption of meta key for %s (%s) %s", + c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL)); return false; } @@ -313,8 +313,8 @@ bool metakey_h(connection_t *c) { /* Decrypt the meta key */ if(RSA_private_decrypt(len, (unsigned char *)buffer, (unsigned char *)c->inkey, myself->connection->rsa_key, RSA_NO_PADDING) != len) { /* See challenge() */ - logger(LOG_ERR, "Error during decryption of meta key for %s (%s)", - c->name, c->hostname); + logger(LOG_ERR, "Error during decryption of meta key for %s (%s) %s", + c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL)); return false; }