mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
CHG: minor comments.
This commit is contained in:
parent
e204bb7fb2
commit
f2019c773d
1 changed files with 6 additions and 6 deletions
|
@ -856,12 +856,12 @@ int CmdHF14AMfuGenDiverseKeys(const char *Cmd){
|
||||||
des3_context ctx = { 0x00 };
|
des3_context ctx = { 0x00 };
|
||||||
des3_set2key_enc(&ctx, masterkey);
|
des3_set2key_enc(&ctx, masterkey);
|
||||||
|
|
||||||
des3_crypt_cbc(&ctx // des3_context *ctx
|
des3_crypt_cbc(&ctx // des3_context
|
||||||
, DES_ENCRYPT // int mode
|
, DES_ENCRYPT // int mode
|
||||||
, sizeof(mix) // size_t length
|
, sizeof(mix) // length
|
||||||
, iv // unsigned char iv[8]
|
, iv // iv[8]
|
||||||
, mix // const unsigned char *input
|
, mix // input
|
||||||
, divkey // unsigned char *output
|
, divkey // output
|
||||||
);
|
);
|
||||||
|
|
||||||
PrintAndLog("3DES version");
|
PrintAndLog("3DES version");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue