X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=cast5%2Fcast5.h;fp=cast5%2Fcast5.h;h=ea5ea9c8a1278d7120deede92c2c12366918306f;hp=b014f7c9e8d3174c3c7b9b7cac076b6e6960c7ee;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/cast5/cast5.h b/cast5/cast5.h index b014f7c..ea5ea9c 100644 --- a/cast5/cast5.h +++ b/cast5/cast5.h @@ -46,7 +46,7 @@ * * A variable of this type may hold a keyschedule for the CAST-5 cipher. * This context is regulary generated by the - * cast5_init(uint8_t* key, uint8_t keylength_b, cast5_ctx_t* s) function. + * cast5_init(uint8_t *key, uint8_t keylength_b, cast5_ctx_t *s) function. */ typedef struct cast5_ctx_st{ uint32_t mask[16]; @@ -56,7 +56,7 @@ typedef struct cast5_ctx_st{ } cast5_ctx_t; -/** \fn void cast5_init(const void* key, uint16_t keylength_b, cast5_ctx_t* s); +/** \fn void cast5_init(const void *key, uint16_t keylength_b, cast5_ctx_t *s); * \brief generate keyschedule/contex for CAST-5 * * This function generates the keyschedule from the supplied key for the @@ -65,29 +65,29 @@ typedef struct cast5_ctx_st{ * \param keylength_b length of the key in bits (maximum 128 bits) * \param s pointer to the context */ -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); -/** \fn void cast5_enc(void* block, const cast5_ctx_t* s); +/** \fn void cast5_enc(void *block, const cast5_ctx_t *s); * \brief encrypt a block with the CAST-5 algorithm * * This function encrypts a block of 64 bits (8 bytes) with the CAST-5 algorithm. * It uses a keyschedule as generated by the - * cast5_init(void* key, uint8_t keylength_b, cast5_ctx_t* s) function. + * cast5_init(void *key, uint8_t keylength_b, cast5_ctx_t *s) function. * \param block pointer to the block which gets encrypted * \param s pointer to the keyschedule/context */ -void cast5_enc(void* block, const cast5_ctx_t* s); +void cast5_enc(void *block, const cast5_ctx_t *s); -/** \fn void cast5_dec(void* block, const cast5_ctx_t* s); +/** \fn void cast5_dec(void *block, const cast5_ctx_t *s); * \brief decrypt a block with the CAST-5 algorithm * * This function decrypts a block of 64 bits (8 bytes) with the CAST-5 algorithm. * It uses a keyschedule as generated by the - * cast5_init(void* key, uint8_t keylength_b, cast5_ctx_t* s) function. + * cast5_init(void *key, uint8_t keylength_b, cast5_ctx_t *s) function. * \param block pointer to the block which gets decrypted * \param s pointer to the keyschedule/context */ -void cast5_dec(void* block, const cast5_ctx_t* s); +void cast5_dec(void *block, const cast5_ctx_t *s);