mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
NEW: HF MFU SETPWD - set password to a Ultralight C tag.
NEW: HF MFU SETUID - set UID to a magic UL / UL-C tag. *not implemented* CHG: minor alignment for "Hf list" output. CHG: removed unneeded function parameters to the ultralight commands CHG: the const MAX_MIFARE_FRAME_SIZE is changed to MAX_FRAME_SIZE in the ultralight commands since the UL-Ev1 can have bigger frames than 18bytes. CHG: adding DES support for the Ultralight-c read commands on deviceside.
This commit is contained in:
parent
4076250660
commit
aa60d1560e
11 changed files with 507 additions and 282 deletions
|
@ -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_*/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue