]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - serpent/serpent.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / serpent / serpent.h
index 84e4a87c265714a2be10509879712076093350a3..a6480efb544d1d0076516ae707f49facd9b3ce1a 100644 (file)
@@ -1,7 +1,7 @@
 /* serpent.h */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -39,9 +39,9 @@ typedef struct serpent_ctx_st {
 
 
 /* key must be 256bit (32 byte) large! */
-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);
+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);
 
 
 #endif /*SERPENT_H_*/