projects
/
proxmark3-svn
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ADD: adding a presco demod, given 0x10D as preamble, .. *work in progress*
[proxmark3-svn]
/
armsrc
/
aes.c
diff --git
a/armsrc/aes.c
b/armsrc/aes.c
index 3df006bb355f2b0f7db494b36f98c8fd53355868..dc89a1cf0246ed9d5c78499b59d92caf394924d3 100644
(file)
--- a/
armsrc/aes.c
+++ b/
armsrc/aes.c
@@
-1,4
+1,3
@@
-#include "stdio.h"
#include "aes.h"
static const unsigned int Te0[256] = {
#include "aes.h"
static const unsigned int Te0[256] = {
@@
-1138,6
+1137,9
@@
int AesDecrypt(AesCtx *pCtx, unsigned char *pCipher, unsigned char *pData, unsig
//////////////////////////////////////////////////////////////////////////////
#ifndef EMBEDDED
//////////////////////////////////////////////////////////////////////////////
#ifndef EMBEDDED
+
+#include <stdio.h>
+
int main()
{
AesCtx ctx;
int main()
{
AesCtx ctx;
@@
-1150,7
+1152,7
@@
int main()
if( AesCtxIni(&ctx, iv, key, KEY128, CBC) < 0)
printf("init error\n");
if( AesCtxIni(&ctx, iv, key, KEY128, CBC) < 0)
printf("init error\n");
- if (AesEncrypt(&ctx, databuf, databuf, sizeof
databuf
) < 0)
+ if (AesEncrypt(&ctx, databuf, databuf, sizeof
(databuf)
) < 0)
printf("error in encryption\n");
// initialize context and decrypt cipher at other end
printf("error in encryption\n");
// initialize context and decrypt cipher at other end
@@
-1158,7
+1160,7
@@
int main()
if( AesCtxIni(&ctx, iv, key, KEY128, CBC) < 0)
printf("init error\n");
if( AesCtxIni(&ctx, iv, key, KEY128, CBC) < 0)
printf("init error\n");
- if (AesDecrypt(&ctx, databuf, databuf, sizeof
databuf
) < 0)
+ if (AesDecrypt(&ctx, databuf, databuf, sizeof
(databuf)
) < 0)
printf("error in decryption\n");
printf("%s\n", databuf);
printf("error in decryption\n");
printf("%s\n", databuf);
Impressum
,
Datenschutz