X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fgcrypt%2Frsa.c;h=ea18a0e10f3c6dddd65dec783de1b17c71e0d65e;hp=65301625bde65825f7cdd881dafe37114702dab7;hb=07a560eab66b575f382428a956550817697e25e2;hpb=7ea85043ac1fb2096baea44f6b0af27ac0d0b2cf diff --git a/src/gcrypt/rsa.c b/src/gcrypt/rsa.c index 65301625..ea18a0e1 100644 --- a/src/gcrypt/rsa.c +++ b/src/gcrypt/rsa.c @@ -189,7 +189,7 @@ bool rsa_set_hex_public_key(rsa_t *rsa, char *n, char *e) { ?: gcry_mpi_scan(&rsa->e, GCRYMPI_FMT_HEX, n, 0, NULL); if(err) { - logger(LOG_ERR, _("Error while reading RSA public key: %s"), gcry_strerror(errno)); + logger(LOG_ERR, "Error while reading RSA public key: %s", gcry_strerror(errno)); return false; } @@ -204,7 +204,7 @@ bool rsa_set_hex_private_key(rsa_t *rsa, char *n, char *e, char *d) { ?: gcry_mpi_scan(&rsa->d, GCRYMPI_FMT_HEX, n, 0, NULL); if(err) { - logger(LOG_ERR, _("Error while reading RSA public key: %s"), gcry_strerror(errno)); + logger(LOG_ERR, "Error while reading RSA public key: %s", gcry_strerror(errno)); return false; } @@ -218,7 +218,7 @@ bool rsa_read_pem_public_key(rsa_t *rsa, FILE *fp) { size_t derlen; if(!pem_decode(fp, "RSA PUBLIC KEY", derbuf, sizeof derbuf, &derlen)) { - logger(LOG_ERR, _("Unable to read RSA public key: %s"), strerror(errno)); + logger(LOG_ERR, "Unable to read RSA public key: %s", strerror(errno)); return NULL; } @@ -226,7 +226,7 @@ bool rsa_read_pem_public_key(rsa_t *rsa, FILE *fp) { || !ber_read_mpi(&derp, &derlen, &rsa->n) || !ber_read_mpi(&derp, &derlen, &rsa->e) || derlen) { - logger(LOG_ERR, _("Error while decoding RSA public key")); + logger(LOG_ERR, "Error while decoding RSA public key"); return NULL; } @@ -238,7 +238,7 @@ bool rsa_read_pem_private_key(rsa_t *rsa, FILE *fp) { size_t derlen; if(!pem_decode(fp, "RSA PRIVATE KEY", derbuf, sizeof derbuf, &derlen)) { - logger(LOG_ERR, _("Unable to read RSA private key: %s"), strerror(errno)); + logger(LOG_ERR, "Unable to read RSA private key: %s", strerror(errno)); return NULL; } @@ -253,7 +253,7 @@ bool rsa_read_pem_private_key(rsa_t *rsa, FILE *fp) { || !ber_read_mpi(&derp, &derlen, NULL) || !ber_read_mpi(&derp, &derlen, NULL) // u || derlen) { - logger(LOG_ERR, _("Error while decoding RSA private key")); + logger(LOG_ERR, "Error while decoding RSA private key"); return NULL; }