From: iceman Date: Mon, 15 Feb 2016 01:46:15 +0000 (+0100) Subject: add: added a test function for nonce distance X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/6e91de5a8d1bd3c94f6bf6c80e284a374a5c7187 add: added a test function for nonce distance --- diff --git a/armsrc/crapto1.h b/armsrc/crapto1.h index 9262b956..7ea6fa28 100644 --- a/armsrc/crapto1.h +++ b/armsrc/crapto1.h @@ -32,6 +32,7 @@ uint8_t crypto1_bit(struct Crypto1State*, uint8_t, int); uint8_t crypto1_byte(struct Crypto1State*, uint8_t, int); uint32_t crypto1_word(struct Crypto1State*, uint32_t, int); uint32_t prng_successor(uint32_t x, uint32_t n); +uint32_t prng_successor_one(uint32_t x); struct Crypto1State* lfsr_recovery32(uint32_t ks2, uint32_t in); struct Crypto1State* lfsr_recovery64(uint32_t ks2, uint32_t ks3);