]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - cast5.h
+MUGI
[avr-crypto-lib.git] / cast5.h
diff --git a/cast5.h b/cast5.h
index f7d4cb9cf4c1263491ccc0c96b01864097885341..b014f7c9e8d3174c3c7b9b7cac076b6e6960c7ee 100644 (file)
--- a/cast5.h
+++ b/cast5.h
@@ -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_ts);
  * \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_ts);
 
-/** \fn void cast5_dec(void* block, const cast5_ctx_t *s);
+/** \fn void cast5_dec(void* block, const cast5_ctx_ts);
  * \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_ts);