From: iceman1001 Date: Tue, 19 Jan 2016 17:06:14 +0000 (+0100) Subject: REM: removed a print. The printing is done in the calling function. X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/89a40c3d1dcf9aeb2170515ec5e559aa65e6a2be REM: removed a print. The printing is done in the calling function. --- diff --git a/client/nonce2key/nonce2key.c b/client/nonce2key/nonce2key.c index b0f2c93d..99ede9e0 100644 --- a/client/nonce2key/nonce2key.c +++ b/client/nonce2key/nonce2key.c @@ -59,7 +59,6 @@ int nonce2key(uint32_t uid, uint32_t nt, uint32_t nr, uint64_t par_info, uint64_ state = lfsr_common_prefix(nr, rr, ks3x, par); lfsr_rollback_word(state, uid^nt, 0); crypto1_get_lfsr(state, key); - printf("\nkey recovered: %012"llx"\n\n",key); crypto1_destroy(state); return 0; }