X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=rc5%2Frc5.h;h=959fa8e68c1b8ee623878b0a517e0f17f1befe12;hp=2a0182c51216428ed79fcf3c934350504773f07c;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/rc5/rc5.h b/rc5/rc5.h index 2a0182c..959fa8e 100644 --- a/rc5/rc5.h +++ b/rc5/rc5.h @@ -38,9 +38,9 @@ typedef struct rc5_ctx_st { uint32_t *s; }rc5_ctx_t; -void rc5_enc(void* buffer, const rc5_ctx_t* ctx); -void rc5_dec(void* buffer, const rc5_ctx_t* ctx); -void rc5_init(void* key, uint16_t keysize_b, uint8_t rounds, rc5_ctx_t* ctx); -void rc5_free(rc5_ctx_t* ctx); +void rc5_enc(void *buffer, const rc5_ctx_t *ctx); +void rc5_dec(void *buffer, const rc5_ctx_t *ctx); +void rc5_init(void *key, uint16_t keysize_b, uint8_t rounds, rc5_ctx_t *ctx); +void rc5_free(rc5_ctx_t *ctx); #endif /*RC5_H_*/