X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=cast5.h;h=f7d4cb9cf4c1263491ccc0c96b01864097885341;hb=e5a49deb52521f019e37779d6e9d81ec4f02aba4;hp=aa81ca19a8fb0f5308ccd440363796f937c87938;hpb=4d76909e4282baf1420ee309e270384246b241b8;p=avr-crypto-lib.git diff --git a/cast5.h b/cast5.h index aa81ca1..f7d4cb9 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 @@ -16,20 +16,11 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -/* - * File: cast5.h - * Author: Daniel Otte - * Date: 2006-07-26 - * License: GPL - * Description: Implementation of the CAST5 (aka CAST-128) cipher algorithm as described in RFC 2144 - * - */ - /** * \file cast5.h * \author Daniel Otte * \date 2006-07-26 - * \license GPL + * \license GPLv3 or later * \brief Implementation of the CAST5 (aka CAST-128) cipher algorithm as described in RFC 2144 * */ @@ -55,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) funtion. + * cast5_init(uint8_t* key, uint8_t keylength_b, cast5_ctx_t* s) function. */ typedef struct cast5_ctx_st{ uint32_t mask[16]; @@ -74,7 +65,7 @@ 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(void* key, uint8_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); * \brief encrypt a block with the CAST-5 algorithm