summaryrefslogtreecommitdiff
path: root/src/cipher.h
blob: 8af097a5b16e4049f7f0f9e50a664255315a07a6 (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
/* cipher.h
 *	Copyright (C) 1998, 2002, 2003 Free Software Foundation, Inc.
 *
 * This file is part of Libgcrypt.
 *
 * Libgcrypt 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.
 *
 * Libgcrypt 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 */
#ifndef G10_CIPHER_H
#define G10_CIPHER_H

#include <gcrypt.h>

#define DBG_CIPHER _gcry_get_debug_flag( 1 )

#include "../cipher/random.h"

#define PUBKEY_FLAG_NO_BLINDING 1 << 0

/*-- rmd160.c --*/
void _gcry_rmd160_hash_buffer (char *outbuf, const char *buffer, size_t length);

/*-- smallprime.c --*/
extern ushort small_prime_numbers[];

/*-- dsa.c --*/
void _gcry_register_pk_dsa_progress (gcry_handler_progress_t cbc, void *cb_data);
/*-- elgamal.c --*/
void _gcry_register_pk_elg_progress (gcry_handler_progress_t cb, void *cb_data);
/*-- primegen.c --*/
void _gcry_register_primegen_progress (gcry_handler_progress_t cb, void *cb_data);


/*-- pubkey.c --*/
const char * _gcry_pk_aliased_algo_name (int algorithm);


/* Declarations for the cipher specifications.  */
extern gcry_cipher_spec_t cipher_spec_blowfish;
extern gcry_cipher_spec_t cipher_spec_des;
extern gcry_cipher_spec_t cipher_spec_tripledes;
extern gcry_cipher_spec_t cipher_spec_arcfour;
extern gcry_cipher_spec_t cipher_spec_cast5;
extern gcry_cipher_spec_t cipher_spec_aes;
extern gcry_cipher_spec_t cipher_spec_aes192;
extern gcry_cipher_spec_t cipher_spec_aes256;
extern gcry_cipher_spec_t cipher_spec_twofish;
extern gcry_cipher_spec_t cipher_spec_twofish128;
extern gcry_cipher_spec_t cipher_spec_serpent128;
extern gcry_cipher_spec_t cipher_spec_serpent192;
extern gcry_cipher_spec_t cipher_spec_serpent256;

/* Declarations for the digest specifications.  */
extern gcry_md_spec_t digest_spec_crc32;
extern gcry_md_spec_t digest_spec_crc32_rfc1510;
extern gcry_md_spec_t digest_spec_crc24_rfc2440;
extern gcry_md_spec_t digest_spec_md4;
extern gcry_md_spec_t digest_spec_md5;
extern gcry_md_spec_t digest_spec_rmd160;
extern gcry_md_spec_t digest_spec_sha1;
extern gcry_md_spec_t digest_spec_sha256;
extern gcry_md_spec_t digest_spec_sha512;
extern gcry_md_spec_t digest_spec_sha384;
extern gcry_md_spec_t digest_spec_tiger;

/* Declarations for the pubkey cipher specifications.  */
extern gcry_pk_spec_t pubkey_spec_rsa;
extern gcry_pk_spec_t pubkey_spec_elg;
extern gcry_pk_spec_t pubkey_spec_dsa;

#endif /*G10_CIPHER_H*/