avr-crypto-lib/shabea/shabea.h

40 lines
1.3 KiB
C
Raw Normal View History

2008-05-26 19:13:21 +00:00
/* shabea.h */
/*
2008-09-21 21:22:23 +00:00
* This file is part of AnonAccess, an access system which can be used
* to open door or doing other things with an anonymity featured
* account managment.
2015-02-06 02:43:31 +00:00
* Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
2008-09-21 21:22:23 +00:00
*
* 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
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2008-05-26 19:13:21 +00:00
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
2008-09-21 21:22:23 +00:00
* \par License
* GPL
2007-06-18 04:50:39 +00:00
*
* SHABEAn-r where n is the blocksize and r the number of round used
*
*/
#ifndef SHABEA_H_
#define SHABEA_H_
2008-09-21 21:22:23 +00:00
void shabea256(void * block, void * key, uint16_t keysize_b, uint8_t enc, uint8_t rounds);
2007-06-18 04:50:39 +00:00
#endif /*SHABEA_H_*/