summaryrefslogtreecommitdiff
path: root/crypto/gc.h
blob: 1fadd048aef51f5a6cc41ce119772210831df422 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* gc.h --- Header file for implementation agnostic crypto wrapper API.
 * Copyright (C) 2002, 2003, 2004  Simon Josefsson
 *
 * This file is part of GC.
 *
 * GC 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.
 *
 * GC 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 GC; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 *
 */

#ifndef GC_H
#define GC_H

/* Get size_t. */
#include <stddef.h>

#define GC_MD5_LEN 16
#define GC_SHA1_LEN 20

enum Gc_rc
{
  GC_OK = 0,
  GC_MALLOC_ERROR,
  GC_INIT_ERROR,
  GC_RANDOM_ERROR,
  GC_INVALID_CIPHER,
  GC_INVALID_HASH,
  GC_PKCS5_INVALID_ITERATION_COUNT,
  GC_PKCS5_INVALID_DERIVED_KEY_LENGTH,
  GC_PKCS5_DERIVED_KEY_TOO_LONG
};
typedef enum Gc_rc Gc_rc;

enum Gc_hash
{
  GC_MD5,
  GC_SHA1,
  GC_RMD160
};
typedef enum Gc_hash Gc_hash;

enum Gc_cipher
{
  GC_AES128,
  GC_AES256,
  GC_3DES,
  GC_DES,
  GC_ARCFOUR128,
  GC_ARCFOUR40,
  GC_ARCTWO40
};
typedef enum Gc_cipher Gc_cipher;

enum Gc_cipher_mode
{
  GC_CBC,
  GC_STREAM
};
typedef enum Gc_cipher_mode Gc_cipher_mode;

enum Gc_hash_mode
{
  GC_HMAC = 1
};
typedef enum Gc_hash_mode Gc_hash_mode;

typedef void *gc_hash;
typedef void *gc_cipher;

extern int gc_init (void);
extern void gc_done (void);

/* Randomness. */
extern int gc_nonce (char *data, size_t datalen);
extern int gc_pseudo_random (char *data, size_t datalen);
extern int gc_random (char *data, size_t datalen);

/* Memory allocation (avoid). */
typedef void *(*gc_malloc_t) (size_t n);
typedef int (*gc_secure_check_t) (const void *);
typedef void *(*gc_realloc_t) (void *p, size_t n);
typedef void (*gc_free_t) (void *);
extern void gc_set_allocators (gc_malloc_t func_malloc,
			       gc_malloc_t secure_malloc,
			       gc_secure_check_t secure_check,
			       gc_realloc_t func_realloc,
			       gc_free_t func_free);

/* Ciphers. */
extern int gc_cipher_open (int cipher, int mode, gc_cipher * outhandle);
extern int gc_cipher_setkey (gc_cipher handle, size_t keylen,
			     const char *key);
extern int gc_cipher_setiv (gc_cipher handle, size_t ivlen, const char *iv);
extern int gc_cipher_encrypt_inline (gc_cipher handle, size_t len,
				     char *data);
extern int gc_cipher_decrypt_inline (gc_cipher handle, size_t len,
				     char *data);
extern int gc_cipher_close (gc_cipher handle);

/* Hashes. */
extern int gc_hash_open (int hash, int mode, gc_hash * outhandle);
extern int gc_hash_clone (gc_hash handle, gc_hash * outhandle);
extern size_t gc_hash_digest_length (int hash);
extern void gc_hash_hmac_setkey (gc_hash handle, size_t len, const char *key);
extern void gc_hash_write (gc_hash handle, size_t len, const char *data);
extern const char *gc_hash_read (gc_hash handle);
extern void gc_hash_close (gc_hash handle);

/* One-call interface. */
extern int gc_hash_buffer (int hash, const char *in, size_t inlen, char *out);
extern int gc_md5 (const char *in, size_t inlen, char out[GC_MD5_LEN]);
extern int gc_hmac_md5 (const char *key, size_t keylen,
			const char *in, size_t inlen,
			char outhash[GC_MD5_LEN]);
extern int gc_hmac_sha1 (const char *key, size_t keylen,
			 const char *in, size_t inlen,
			 char outhash[GC_SHA1_LEN]);

/* PKCS5 KDF. */
extern int gc_pkcs5_pbkdf2_sha1 (const char *P, size_t Plen,
				 const char *S, size_t Slen,
				 unsigned int c, unsigned int dkLen,
				 char *DK);

#endif /* GC_H */