From 8f029f96e93bd95149654ff8847d34b91f9f6bbb Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Sun, 12 Sep 2010 16:18:59 +0900 Subject: [PATCH] call-rsa.c --- src/call-rsa.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/call-rsa.c b/src/call-rsa.c index 5e52928..12a3bcd 100644 --- a/src/call-rsa.c +++ b/src/call-rsa.c @@ -115,10 +115,8 @@ rsa_decrypt (const uint8_t *input, uint8_t *output, int msg_len) int r; int output_len; -#ifdef DEBUG - put_string ("RSA decrypt:"); - put_word ((uint32_t)&output_len); -#endif + DEBUG_INFO ("RSA decrypt:"); + DEBUG_WORD ((uint32_t)&output_len); mpi_init (&P1, &Q1, &H, NULL); rsa_init (&rsa_ctx, RSA_PKCS_V15, 0);