mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 10:36:58 -07:00
Mfp read plain (#704)
* added aes-cmac-128 * aes-cmac added to cryptosystem. not works(
This commit is contained in:
parent
cdc9a7562d
commit
c8a0f55031
10 changed files with 836 additions and 10 deletions
|
@ -14,6 +14,7 @@
|
|||
|
||||
#include "bignum.h"
|
||||
#include "aes.h"
|
||||
#include "aes_cmac128.h"
|
||||
#include "des.h"
|
||||
#include "rsa.h"
|
||||
#include "sha1.h"
|
||||
|
@ -32,7 +33,10 @@ int ExecuteCryptoTests(bool verbose) {
|
|||
|
||||
res = aes_self_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
|
||||
res = aes_cmac_self_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
res = des_self_test(verbose);
|
||||
if (res) TestFail = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue