X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=cast5%2Fcast5.c;h=6118aeeba5c98d966159664df2f00d3d7f401caf;hb=10951fe0bb7dae5229dff9408d8157490005590c;hp=5e318cffc4d49f5348590cc513e7306137362562;hpb=d1181933dc28db92d787cf5604e2fc96ab0d8f9f;p=avr-crypto-lib.git diff --git a/cast5/cast5.c b/cast5/cast5.c index 5e318cf..6118aee 100644 --- a/cast5/cast5.c +++ b/cast5/cast5.c @@ -27,15 +27,16 @@ * */ - #include - #include - #include "cast5.h" - - #undef DEBUG +#include +#include +#include "cast5.h" +#include + +#undef DEBUG - #ifdef DEBUG - #include "cli.h" - #endif +#ifdef DEBUG + #include "cli.h" +#endif #include "cast5-sbox.h" @@ -128,7 +129,7 @@ void cast5_init_rM(uint8_t *klo, uint8_t *khi, uint8_t offset, uint8_t *src, boo -void cast5_init(const void* key, uint16_t keylength_b, cast5_ctx_t* s){ +void cast5_init(const void *key, uint16_t keylength_b, cast5_ctx_t *s){ /* we migth return if the key is valid and if setup was successful */ uint32_t x[4], z[4]; #define BPX ((uint8_t*)&(x[0])) @@ -290,10 +291,10 @@ uint32_t cast5_f3(uint32_t d, uint32_t m, uint8_t r){ /******************************************************************************/ -void cast5_enc(void* block, const cast5_ctx_t *s){ +void cast5_enc(void *block, const cast5_ctx_t *s){ uint32_t l,r, x, y; uint8_t i; - cast5_f_t* f[]={cast5_f1,cast5_f2,cast5_f3}; + cast5_f_t *f[]={cast5_f1,cast5_f2,cast5_f3}; l=((uint32_t*)block)[0]; r=((uint32_t*)block)[1]; // cli_putstr("\r\n round[-1] = "); @@ -314,10 +315,10 @@ void cast5_enc(void* block, const cast5_ctx_t *s){ /******************************************************************************/ -void cast5_dec(void* block, const cast5_ctx_t *s){ +void cast5_dec(void *block, const cast5_ctx_t *s){ uint32_t l,r, x, y; int8_t i, rounds; - cast5_f_t* f[]={cast5_f1,cast5_f2,cast5_f3}; + cast5_f_t *f[]={cast5_f1,cast5_f2,cast5_f3}; l=((uint32_t*)block)[0]; r=((uint32_t*)block)[1]; rounds = (s->shortkey?12:16);