]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - arcfour.h
some changings to make API more consistent
[avr-crypto-lib.git] / arcfour.h
index 030c014f69860455ea4ee2fac527e06100319543..38ab40d0c26da1f8cebbff45812eea4045341adf 100644 (file)
--- a/arcfour.h
+++ b/arcfour.h
  * Author:     Daniel Otte
  * Date:       2006-06-07
  * License: GPL
- * Description: Implementation of the ARCFOUR (RC4 compatible) stream cipher algorithm.
- * 
+ * Description: Implementation of the ARCFOUR (RC4 compatible) stream cipher algorithm. 
  */
+/* 
+ * \file       arcfour.h
+ * \author     Daniel Otte
+ * \date       2006-06-07
+ * \par License
+ *      GPL
+ * \brief   Implementation of the ARCFOUR (RC4 compatible) stream cipher algorithm. 
+ */
 #ifndef ARCFOUR_H_
 #define ARCFOUR_H_
 
@@ -35,6 +44,7 @@ typedef struct {
 } arcfour_ctx_t;
  
 
+
 void arcfour_init(arcfour_ctx_t *c, uint8_t *key, uint8_t length);
 uint8_t arcfour_gen(arcfour_ctx_t *c);