]> git.cryptolib.org Git - avr-crypto-lib.git/blob - shabea.h
+RC5 +size-statistics tool +small modification to nessie_bc_test (optional free(...
[avr-crypto-lib.git] / shabea.h
1 /**
2  * \file        shabea.h
3  * \author      Daniel Otte 
4  * \date        2007-06-07
5  * \brief       SHABEA - a SHA Based Encrytion Algorithm declarations
6  * \par License 
7  * GPL
8  * 
9  * SHABEAn-r where n is the blocksize and r the number of round used
10  * 
11  */
12  
13 #ifndef SHABEA_H_
14 #define SHABEA_H_
15
16 void shabea256(void * block, void * key, uint16_t keysize, uint8_t enc, uint8_t rounds);
17 #endif /*SHABEA_H_*/