avr-crypto-lib/shabea.h

18 lines
385 B
C
Raw Normal View History

2007-06-18 04:50:39 +00:00
/**
* \file shabea.h
* \author Daniel Otte
* \date 2007-06-07
* \brief SHABEA - a SHA Based Encryption Algorithm declarations
2007-06-18 04:50:39 +00:00
* \par License
* GPL
*
* SHABEAn-r where n is the blocksize and r the number of round used
*
*/
#ifndef SHABEA_H_
#define SHABEA_H_
2007-12-20 02:15:53 +00:00
void shabea256(void * block, void * key, uint16_t keysize, uint8_t enc, uint8_t rounds);
2007-06-18 04:50:39 +00:00
#endif /*SHABEA_H_*/