remove fprintf from ecdsa verify fail wrapper

pull/210/head
toddouska 2015-12-07 09:25:19 -08:00
parent beebc87bc8
commit 4a0c4fbf3f
1 changed files with 0 additions and 1 deletions

View File

@ -17145,7 +17145,6 @@ int wolfSSL_ED25519_verify(const unsigned char *msg, unsigned int msgSz,
if ((ret = wc_ed25519_verify_msg((byte*)sig, sigSz, msg, msgSz,
&check, &key)) != MP_OKAY) {
WOLFSSL_MSG("wc_ed25519_verify_msg failed");
fprintf(stderr, "err code = %d, sigSz=%d, msgSz=%d\n", ret, sigSz, msgSz);
}
else if (!check)
WOLFSSL_MSG("wc_ed25519_verify_msg failed (signature invalid)");