X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=cast5%2Fcast5.c;fp=cast5%2Fcast5.c;h=6118aeeba5c98d966159664df2f00d3d7f401caf;hp=00d92aec426491580796efa7b62bf78cb249889f;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/cast5/cast5.c b/cast5/cast5.c index 00d92ae..6118aee 100644 --- a/cast5/cast5.c +++ b/cast5/cast5.c @@ -129,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])) @@ -291,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] = "); @@ -315,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);