]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - rc6/rc6.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / rc6 / rc6.h
index 429a1d39bd8942e2ca252393b5e1223bd8f3c7a0..62816915b865184bf7dbb3a3bfff297f09a1e741 100644 (file)
--- a/rc6/rc6.h
+++ b/rc6/rc6.h
@@ -1,7 +1,7 @@
 /* rc6.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
@@ -38,13 +38,13 @@ typedef struct rc6_ctx_st{
 } rc6_ctx_t;
  
  
-uint8_t rc6_init(voidkey, uint16_t keylength_b, rc6_ctx_t *s);
+uint8_t rc6_init(void *key, uint16_t keylength_b, rc6_ctx_t *s);
  
-uint8_t rc6_initl(voidkey, uint16_t keylength_b, uint8_t rounds, rc6_ctx_t *s);
+uint8_t rc6_initl(void *key, uint16_t keylength_b, uint8_t rounds, rc6_ctx_t *s);
  
-void rc6_enc(voidblock, rc6_ctx_t *s);
+void rc6_enc(void *block, rc6_ctx_t *s);
 
-void rc6_dec(voidblock, rc6_ctx_t *s);
+void rc6_dec(void *block, rc6_ctx_t *s);
  
 void rc6_free(rc6_ctx_t *s);