]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - armsrc/crypto1.c
CHG: removed a debug statement
[proxmark3-svn] / armsrc / crypto1.c
index db864113dbdf5758652c36d4cea1c28190f8b78e..a212ecc4cc79ce45de6da4337b4ecf6ec04f9f32 100644 (file)
 #include "crapto1.h"
 #include <stdlib.h>
 
-#define SWAPENDIAN(x)\
-       (x = (x >> 8 & 0xff00ff) | (x & 0xff00ff) << 8, x = x >> 16 | x << 16)
 
 void crypto1_create(struct Crypto1State *s, uint64_t key)
 {
 //     struct Crypto1State *s = malloc(sizeof(*s));
+       s->odd = s->even = 0;
        int i;
 
        for(i = 47;s && i > 0; i -= 2) {
Impressum, Datenschutz