X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=cast5.h;h=b014f7c9e8d3174c3c7b9b7cac076b6e6960c7ee;hb=8f855d283a31a468ea014774c4723a8b77b81644;hp=c33d8058ee52a1cb9522ca822df8bdc09f390cd3;hpb=1a1a9f56318298d8ec87df9f7e78da68732f0d48;p=avr-crypto-lib.git diff --git a/cast5.h b/cast5.h index c33d805..b014f7c 100644 --- a/cast5.h +++ b/cast5.h @@ -1,6 +1,6 @@ /* cast5.h */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -56,7 +56,7 @@ typedef struct cast5_ctx_st{ } cast5_ctx_t; -/** \fn void cast5_init(void* key, uint8_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 @@ -67,7 +67,7 @@ typedef struct cast5_ctx_st{ */ 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. @@ -76,9 +76,9 @@ void cast5_init(const void* key, uint16_t keylength_b, cast5_ctx_t* s); * \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. @@ -87,7 +87,7 @@ void cast5_enc(void* block, const cast5_ctx_t *s); * \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);