]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - serpent.h
forgotten files
[avr-crypto-lib.git] / serpent.h
index 3e90253a1aa15556d7483e7d1849e19adfdf2835..84e4a87c265714a2be10509879712076093350a3 100644 (file)
--- 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);