CHG: Syntax suger

This commit is contained in:
iceman1001
2016-01-25 20:17:08 +01:00
parent f66114426b
commit da198be4b5
7 changed files with 44 additions and 61 deletions

View File

@@ -20,18 +20,15 @@
#include "crapto1.h"
#include <stdlib.h>
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) {
s->odd = s->odd << 1 | BIT(key, (i - 1) ^ 7);
s->even = s->even << 1 | BIT(key, i ^ 7);
}
return;
}
void crypto1_destroy(struct Crypto1State *state)
{