REM: removed a print. The printing is done in the calling function.

This commit is contained in:
iceman1001 2016-01-19 18:06:14 +01:00
commit 89a40c3d1d

View file

@ -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); state = lfsr_common_prefix(nr, rr, ks3x, par);
lfsr_rollback_word(state, uid^nt, 0); lfsr_rollback_word(state, uid^nt, 0);
crypto1_get_lfsr(state, key); crypto1_get_lfsr(state, key);
printf("\nkey recovered: %012"llx"\n\n",key);
crypto1_destroy(state); crypto1_destroy(state);
return 0; return 0;
} }