mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 21:03:23 -07:00
aes-cmac added to cryptosystem. not works(
This commit is contained in:
parent
091f80bb1f
commit
cd1eca73fa
1 changed files with 5 additions and 1 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