dirvote: Fix memleak when computing consensus
[tor.git] / src / lib / crypt_ops / crypto_rsa.h
blob07da2e18469f61faf0d2510c6fd9043373e6500a
1 /* Copyright (c) 2001, Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
7 /**
8 * \file crypto_rsa.h
10 * \brief Headers for crypto_rsa.c
11 **/
13 #ifndef TOR_CRYPTO_RSA_H
14 #define TOR_CRYPTO_RSA_H
16 #include "orconfig.h"
18 #include "lib/crypt_ops/crypto_digest.h"
19 #include "lib/cc/torint.h"
20 #include "lib/testsupport/testsupport.h"
21 #include "lib/log/log.h"
23 /** Length of our public keys. */
24 #define PK_BYTES (1024/8)
26 /** Constant used to indicate OAEP padding for public-key encryption */
27 #define PK_PKCS1_OAEP_PADDING 60002
29 /** Number of bytes added for PKCS1-OAEP padding. */
30 #define PKCS1_OAEP_PADDING_OVERHEAD 42
32 /** Length of encoded public key fingerprints, including space; but not
33 * including terminating NUL. */
34 #define FINGERPRINT_LEN 49
36 /** Value of 'e' to use in our public keys */
37 #define TOR_RSA_EXPONENT 65537
39 /** A public key, or a public/private key-pair. */
40 typedef struct crypto_pk_t crypto_pk_t;
42 /* RSA environment setup */
43 MOCK_DECL(crypto_pk_t *,crypto_pk_new,(void));
44 void crypto_pk_free_(crypto_pk_t *env);
45 #define crypto_pk_free(pk) FREE_AND_NULL(crypto_pk_t, crypto_pk_free_, (pk))
46 int crypto_get_rsa_padding_overhead(int padding);
47 int crypto_get_rsa_padding(int padding);
49 /* public key crypto */
50 MOCK_DECL(int, crypto_pk_generate_key_with_bits,(crypto_pk_t *env, int bits));
51 #define crypto_pk_generate_key(env) \
52 crypto_pk_generate_key_with_bits((env), (PK_BYTES*8))
54 int crypto_pk_read_private_key_from_filename(crypto_pk_t *env,
55 const char *keyfile);
56 int crypto_pk_write_public_key_to_string(crypto_pk_t *env,
57 char **dest, size_t *len);
58 int crypto_pk_write_private_key_to_string(crypto_pk_t *env,
59 char **dest, size_t *len);
60 int crypto_pk_read_public_key_from_string(crypto_pk_t *env,
61 const char *src, size_t len);
62 int crypto_pk_read_private_key_from_string(crypto_pk_t *env,
63 const char *s, ssize_t len);
64 int crypto_pk_read_private_key1024_from_string(crypto_pk_t *env,
65 const char *src, ssize_t len);
66 int crypto_pk_write_private_key_to_filename(crypto_pk_t *env,
67 const char *fname);
69 int crypto_pk_is_valid_private_key(const crypto_pk_t *env);
70 int crypto_pk_cmp_keys(const crypto_pk_t *a, const crypto_pk_t *b);
71 int crypto_pk_eq_keys(const crypto_pk_t *a, const crypto_pk_t *b);
72 size_t crypto_pk_keysize(const crypto_pk_t *env);
73 int crypto_pk_num_bits(crypto_pk_t *env);
74 crypto_pk_t *crypto_pk_dup_key(crypto_pk_t *orig);
75 crypto_pk_t *crypto_pk_copy_full(crypto_pk_t *orig);
76 int crypto_pk_key_is_private(const crypto_pk_t *key);
77 int crypto_pk_public_exponent_ok(const crypto_pk_t *env);
78 int crypto_pk_obsolete_public_hybrid_encrypt(crypto_pk_t *env, char *to,
79 size_t tolen,
80 const char *from, size_t fromlen,
81 int padding, int force);
82 int crypto_pk_obsolete_private_hybrid_decrypt(crypto_pk_t *env, char *to,
83 size_t tolen,
84 const char *from, size_t fromlen,
85 int padding, int warnOnFailure);
86 int crypto_pk_public_encrypt(crypto_pk_t *env, char *to, size_t tolen,
87 const char *from, size_t fromlen, int padding);
88 int crypto_pk_private_decrypt(crypto_pk_t *env, char *to, size_t tolen,
89 const char *from, size_t fromlen,
90 int padding, int warnOnFailure);
91 MOCK_DECL(int, crypto_pk_public_checksig,(const crypto_pk_t *env,
92 char *to, size_t tolen,
93 const char *from, size_t fromlen));
94 int crypto_pk_private_sign(const crypto_pk_t *env, char *to, size_t tolen,
95 const char *from, size_t fromlen);
96 int crypto_pk_asn1_encode(const crypto_pk_t *pk, char *dest, size_t dest_len);
97 crypto_pk_t *crypto_pk_asn1_decode(const char *str, size_t len);
98 int crypto_pk_asn1_encode_private(const crypto_pk_t *pk,
99 char *dest, size_t dest_len);
100 crypto_pk_t *crypto_pk_asn1_decode_private(const char *str, size_t len,
101 int max_bits);
102 int crypto_pk_get_fingerprint(crypto_pk_t *pk, char *fp_out,int add_space);
103 int crypto_pk_get_hashed_fingerprint(crypto_pk_t *pk, char *fp_out);
104 void crypto_add_spaces_to_fp(char *out, size_t outlen, const char *in);
106 MOCK_DECL(int, crypto_pk_public_checksig_digest,(crypto_pk_t *env,
107 const char *data, size_t datalen, const char *sig, size_t siglen));
108 int crypto_pk_private_sign_digest(crypto_pk_t *env, char *to, size_t tolen,
109 const char *from, size_t fromlen);
110 int crypto_pk_get_digest(const crypto_pk_t *pk, char *digest_out);
111 int crypto_pk_get_common_digests(crypto_pk_t *pk,
112 common_digests_t *digests_out);
113 int crypto_pk_base64_encode_private(const crypto_pk_t *pk, char **priv_out);
114 crypto_pk_t *crypto_pk_base64_decode_private(const char *str, size_t len);
116 #ifdef ENABLE_OPENSSL
117 /* Prototypes for private functions only used by tortls.c, crypto.c, and the
118 * unit tests. */
119 struct rsa_st;
120 struct evp_pkey_st;
121 struct rsa_st *crypto_pk_get_openssl_rsa_(crypto_pk_t *env);
122 crypto_pk_t *crypto_new_pk_from_openssl_rsa_(struct rsa_st *rsa);
123 MOCK_DECL(struct evp_pkey_st *, crypto_pk_get_openssl_evp_pkey_,(
124 crypto_pk_t *env,int private));
125 #endif /* defined(ENABLE_OPENSSL) */
127 #ifdef ENABLE_NSS
128 struct SECKEYPublicKeyStr;
129 struct SECKEYPrivateKeyStr;
130 crypto_pk_t *crypto_pk_new_from_nss_pubkey(struct SECKEYPublicKeyStr *pub);
131 const struct SECKEYPublicKeyStr *crypto_pk_get_nss_pubkey(
132 const crypto_pk_t *key);
133 const struct SECKEYPrivateKeyStr *crypto_pk_get_nss_privkey(
134 const crypto_pk_t *key);
135 #endif /* defined(ENABLE_NSS) */
137 void crypto_pk_assign_public(crypto_pk_t *dest, const crypto_pk_t *src);
138 void crypto_pk_assign_private(crypto_pk_t *dest, const crypto_pk_t *src);
140 #ifdef TOR_UNIT_TESTS
141 #ifdef ENABLE_NSS
142 struct SECItemStr;
143 STATIC int secitem_uint_cmp(const struct SECItemStr *a,
144 const struct SECItemStr *b);
145 #endif
146 #endif /* defined(TOR_UNIT_TESTS) */
148 #endif /* !defined(TOR_CRYPTO_RSA_H) */