]> git.cryptolib.org Git - avr-crypto-lib.git/blob - shabea.h
81304480babd42c836a04921bfd5b16a88b3d121
[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 Encryption 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_*/