File: aes256ctr.h

package info (click to toggle)
seccure 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 268 kB
  • sloc: ansic: 2,236; xml: 192; makefile: 100
file content (65 lines) | stat: -rw-r--r-- 1,988 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 *  seccure  -  Copyright 2014 B. Poettering
 *
 *  This program 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 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this program. If not, see
 *  <http://www.gnu.org/licenses/>.
 */

/* 
 *   SECCURE Elliptic Curve Crypto Utility for Reliable Encryption
 *
 *              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: seccure AT point-at-infinity.org
 *
 */

#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, size_t len);
#define aes256ctr_dec aes256ctr_enc
void aes256ctr_done(struct aes256ctr *ac);

int hmacsha256_init(gcry_md_hd_t *mh, const char *key, size_t len);

#define aes256cprng aes256ctr
#define aes256cprng_init aes256ctr_init
void aes256cprng_fillbuf(struct aes256cprng *cprng, char *buf, size_t len);
#define aes256cprng_done aes256ctr_done

#endif /* INC_AES256CTR_H */