X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=cscipher%2Fcscipher.h;fp=cscipher%2Fcscipher.h;h=3832d819353f14ba2fc83624eed8db347fee7e84;hp=717fc0593c67a2f9a281e6775324ef503aa13f08;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/cscipher/cscipher.h b/cscipher/cscipher.h index 717fc05..3832d81 100644 --- a/cscipher/cscipher.h +++ b/cscipher/cscipher.h @@ -24,9 +24,9 @@ typedef struct { uint8_t keys[9][8]; } cscipher_ctx_t; -void cscipher_enc(void* buffer, const cscipher_ctx_t* ctx); -void cscipher_dec(void* buffer, const cscipher_ctx_t* ctx); -void cscipher_init(const void* key, cscipher_ctx_t* ctx); +void cscipher_enc(void *buffer, const cscipher_ctx_t *ctx); +void cscipher_dec(void *buffer, const cscipher_ctx_t *ctx); +void cscipher_init(const void *key, cscipher_ctx_t *ctx); #endif /* CSCIPHER_H_ */