]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - skipjack/skipjack.h
switching to simualtion testport
[avr-crypto-lib.git] / skipjack / skipjack.h
index 00f033d677f3d493e9e8d9a522b3c621c4d2e839..25d17b7905e2c29335040d708eb74fa42c3c21a5 100644 (file)
@@ -1,7 +1,7 @@
 /* skipjack.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
@@ -31,7 +31,7 @@
 
 #include <stdint.h>
 
-/** \fn void skipjack_enc(void* block, void* key)
+/** \fn void skipjack_enc(void *block, void *key)
  * \brief skipjack encryption function
  * 
  * This function encrypts a block of plaintext with the Skipjac encryption
@@ -40,9 +40,9 @@
  * \param block pointer to the 64 bit (8 byte) block to encrypt
  * \param key   pointer to the 80 bit (10 byte) key 
  */
-void skipjack_enc(void* block, void* key);
+void skipjack_enc(void *block, void *key);
 
-/** \fn void skipjack_dec(void* block, void* key)
+/** \fn void skipjack_dec(void *block, void *key)
  * \brief skipjack decryption function
  * 
  * This function decrypts a block of ciphertext encrypted with the Skipjac
@@ -51,6 +51,6 @@ void skipjack_enc(void* block, void* key);
  * \param block pointer to the 64 bit (8 byte) block to decrypt
  * \param key   pointer to the 80 bit (10 byte) key 
  */
-void skipjack_dec(void* block, void* key);
+void skipjack_dec(void *block, void *key);
 
 #endif /*SKIPJACK_H_*/