X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/76c7e6c36368c3fc23dc4fab1fe5852023c78fac..49dc1d0a9eafdb1e369ead88c3c8882bc6959a17:/armsrc/des.h diff --git a/armsrc/des.h b/armsrc/des.h index 652886fd..853488c8 100644 --- a/armsrc/des.h +++ b/armsrc/des.h @@ -96,6 +96,9 @@ void tdes_enc(void* out, const void* in, const void* key); * \param key pointer to the key (192 bit = 24 byte) */ void tdes_dec(void* out, const void* in, const void* key); + + void tdes_2key_enc(void* out, const void* in, size_t length, const void* key); + void tdes_2key_dec(void* out, const void* in, size_t length, const void* key); #endif /*DES_H_*/