732d0edc9d2e8b0f3d6272966266561ffb541e56
[gd/nettle] / pkcs1.h
1 /* pkcs1.h
2  *
3  * PKCS1 embedding.
4  */
5
6 /* nettle, low-level cryptographics library
7  *
8  * Copyright (C) 2003 Niels Möller
9  *  
10  * The nettle library is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation; either version 2.1 of the License, or (at your
13  * option) any later version.
14  * 
15  * The nettle library is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
18  * License for more details.
19  * 
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with the nettle library; see the file COPYING.LIB.  If not, write to
22  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23  * MA 02111-1307, USA.
24  */
25
26 #ifndef NETTLE_PKCS1_H_INCLUDED
27 #define NETTLE_PKCS1_H_INCLUDED
28
29 #include <gmp.h>
30 #include "nettle-types.h"
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 /* Name mangling */
37 #define pkcs1_signature_prefix nettle_pkcs1_signature_prefix
38 #define pkcs1_rsa_md5_encode nettle_pkcs1_rsa_md5_encode
39 #define pkcs1_rsa_md5_encode_digest nettle_pkcs1_rsa_md5_encode_digest
40 #define pkcs1_rsa_sha1_encode nettle_pkcs1_rsa_sha1_encode
41 #define pkcs1_rsa_sha1_encode_digest nettle_pkcs1_rsa_sha1_encode_digest
42 #define pkcs1_rsa_sha256_encode nettle_pkcs1_rsa_sha256_encode
43 #define pkcs1_rsa_sha256_encode_digest nettle_pkcs1_rsa_sha256_encode_digest
44 #define pkcs1_rsa_sha512_encode nettle_pkcs1_rsa_sha512_encode
45 #define pkcs1_rsa_sha512_encode_digest nettle_pkcs1_rsa_sha512_encode_digest
46
47 struct md5_ctx;
48 struct sha1_ctx;
49 struct sha256_ctx;
50 struct sha512_ctx;
51
52 int
53 pkcs1_signature_prefix(unsigned size,
54                        uint8_t *buffer,
55                        unsigned id_size,
56                        const uint8_t *id,
57                        unsigned digest_size);
58
59 int
60 pkcs1_rsa_md5_encode(mpz_t m, unsigned length, struct md5_ctx *hash);
61
62 int
63 pkcs1_rsa_md5_encode_digest(mpz_t m, unsigned length, const uint8_t *digest);
64
65 int
66 pkcs1_rsa_sha1_encode(mpz_t m, unsigned length, struct sha1_ctx *hash);
67
68 int
69 pkcs1_rsa_sha1_encode_digest(mpz_t m, unsigned length, const uint8_t *digest);
70
71 int
72 pkcs1_rsa_sha256_encode(mpz_t m, unsigned length, struct sha256_ctx *hash);
73
74 int
75 pkcs1_rsa_sha256_encode_digest(mpz_t m, unsigned length, const uint8_t *digest);
76
77 int
78 pkcs1_rsa_sha512_encode(mpz_t m, unsigned length, struct sha512_ctx *hash);
79
80 int
81 pkcs1_rsa_sha512_encode_digest(mpz_t m, unsigned length, const uint8_t *digest);
82
83 #ifdef __cplusplus
84 }
85 #endif
86
87 #endif /* NETTLE_PKCS1_H_INCLUDED */