X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=serpent.h;h=84e4a87c265714a2be10509879712076093350a3;hb=52ec168ece9d61bd9cb652235dfe8faee6232a11;hp=3e90253a1aa15556d7483e7d1849e19adfdf2835;hpb=2159c273c9d3361571a6ff1ab63d9bc76582fbab;p=avr-crypto-lib.git diff --git a/serpent.h b/serpent.h index 3e90253..84e4a87 100644 --- a/serpent.h +++ b/serpent.h @@ -1,6 +1,6 @@ /* serpent.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 @@ -39,7 +39,7 @@ typedef struct serpent_ctx_st { /* key must be 256bit (32 byte) large! */ -void serpent_init(const void* key, uint16_t keysize, serpent_ctx_t* ctx); +void serpent_init(const void* key, uint16_t keysize_b, serpent_ctx_t* ctx); void serpent_enc(void* buffer, const serpent_ctx_t* ctx); void serpent_dec(void* buffer, const serpent_ctx_t* ctx);