PyECC/seccure/aes256ctr.h

70 lines
2.1 KiB
C

/*
* seccure - Copyright 2009 B. Poettering
*
* Maintained by R. Tyler Ballance <tyler@slide.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* SECCURE Elliptic Curve Crypto Utility for Reliable Encryption
*
* Current homepage: http://slideinc.github.com/PyECC
* Original homepage: http://point-at-infinity.org/seccure/
*
*
* seccure implements a selection of asymmetric algorithms based on
* elliptic curve cryptography (ECC). See the manpage or the project's
* homepage for further details.
*
* This code links against the GNU gcrypt library "libgcrypt" (which
* is part of the GnuPG project). Use the included Makefile to build
* the binary.
*
* Report bugs to: http://github.com/rtyler/PyECC/issues
*/
#ifndef INC_AES256CTR_H
#define INC_AES256CTR_H
#include <gcrypt.h>
#define CIPHER_BLOCK_SIZE 16
#define CIPHER_KEY_SIZE 32
#define HMAC_KEY_SIZE 32
struct aes256ctr {
gcry_cipher_hd_t ch;
int idx;
char buf[CIPHER_BLOCK_SIZE];
};
struct aes256ctr* aes256ctr_init(const char *key);
void aes256ctr_enc(struct aes256ctr *ac, char *buf, int len);
#define aes256ctr_dec aes256ctr_enc
void aes256ctr_done(struct aes256ctr *ac);
int hmacsha256_init(gcry_md_hd_t *mh, const char *key, int len);
#define aes256cprng aes256ctr
#define aes256cprng_init aes256ctr_init
void aes256cprng_fillbuf(struct aes256cprng *cprng, char *buf, int len);
#define aes256cprng_done aes256ctr_done
#endif /* INC_AES256CTR_H */