2007-12-12 22:09:01 +01:00
|
|
|
/* Copyright (c) 2001, Matej Pfajfar.
|
2006-02-09 06:46:49 +01:00
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
2007-12-12 22:09:01 +01:00
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2013-01-16 07:54:56 +01:00
|
|
|
* Copyright (c) 2007-2013, The Tor Project, Inc. */
|
2002-07-24 16:02:39 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/**
|
2004-05-10 09:54:13 +02:00
|
|
|
* \file crypto.h
|
2004-05-10 05:53:24 +02:00
|
|
|
*
|
2005-06-11 07:31:17 +02:00
|
|
|
* \brief Headers for crypto.c
|
2004-05-10 05:53:24 +02:00
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_CRYPTO_H
|
|
|
|
#define TOR_CRYPTO_H
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2002-08-22 09:30:03 +02:00
|
|
|
#include <stdio.h>
|
2006-10-01 23:59:05 +02:00
|
|
|
#include "torint.h"
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2012-01-05 21:05:17 +01:00
|
|
|
/*
|
|
|
|
Macro to create an arbitrary OpenSSL version number as used by
|
|
|
|
OPENSSL_VERSION_NUMBER or SSLeay(), since the actual numbers are a bit hard
|
|
|
|
to read.
|
|
|
|
|
|
|
|
Don't use this directly, instead use one of the other OPENSSL_V macros
|
|
|
|
below.
|
|
|
|
|
|
|
|
The format is: 4 bits major, 8 bits minor, 8 bits fix, 8 bits patch, 4 bit
|
|
|
|
status.
|
|
|
|
*/
|
|
|
|
#define OPENSSL_VER(a,b,c,d,e) \
|
|
|
|
(((a)<<28) | \
|
|
|
|
((b)<<20) | \
|
|
|
|
((c)<<12) | \
|
|
|
|
((d)<< 4) | \
|
|
|
|
(e))
|
|
|
|
/** An openssl release number. For example, OPENSSL_V(0,9,8,'j') is the
|
|
|
|
* version for the released version of 0.9.8j */
|
|
|
|
#define OPENSSL_V(a,b,c,d) \
|
|
|
|
OPENSSL_VER((a),(b),(c),(d)-'a'+1,0xf)
|
|
|
|
/** An openssl release number for the first release in the series. For
|
|
|
|
* example, OPENSSL_V_NOPATCH(1,0,0) is the first released version of OpenSSL
|
|
|
|
* 1.0.0. */
|
|
|
|
#define OPENSSL_V_NOPATCH(a,b,c) \
|
|
|
|
OPENSSL_VER((a),(b),(c),0,0xf)
|
|
|
|
/** The first version that would occur for any alpha or beta in an openssl
|
|
|
|
* series. For example, OPENSSL_V_SERIES(0,9,8) is greater than any released
|
|
|
|
* 0.9.7, and less than any released 0.9.8. */
|
|
|
|
#define OPENSSL_V_SERIES(a,b,c) \
|
|
|
|
OPENSSL_VER((a),(b),(c),0,0)
|
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Length of the output of our message digest. */
|
2004-04-03 04:40:30 +02:00
|
|
|
#define DIGEST_LEN 20
|
2009-08-20 01:21:29 +02:00
|
|
|
/** Length of the output of our second (improved) message digests. (For now
|
2012-09-22 03:55:06 +02:00
|
|
|
* this is just sha256, but it could be any other 256-bit digest.) */
|
2009-08-20 01:21:29 +02:00
|
|
|
#define DIGEST256_LEN 32
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Length of our symmetric cipher's keys. */
|
2004-04-03 04:40:30 +02:00
|
|
|
#define CIPHER_KEY_LEN 16
|
2007-09-19 17:53:41 +02:00
|
|
|
/** Length of our symmetric cipher's IV. */
|
|
|
|
#define CIPHER_IV_LEN 16
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Length of our public keys. */
|
2004-05-01 22:46:28 +02:00
|
|
|
#define PK_BYTES (1024/8)
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Length of our DH keys. */
|
2004-05-01 22:46:28 +02:00
|
|
|
#define DH_BYTES (1024/8)
|
2003-12-16 06:29:04 +01:00
|
|
|
|
2009-08-20 01:21:29 +02:00
|
|
|
/** Length of a sha1 message digest when encoded in base64 with trailing =
|
|
|
|
* signs removed. */
|
2005-09-18 04:18:59 +02:00
|
|
|
#define BASE64_DIGEST_LEN 27
|
2009-08-20 01:21:29 +02:00
|
|
|
/** Length of a sha256 message digest when encoded in base64 with trailing =
|
|
|
|
* signs removed. */
|
|
|
|
#define BASE64_DIGEST256_LEN 43
|
2005-09-18 04:18:59 +02:00
|
|
|
|
2012-03-27 23:57:18 +02:00
|
|
|
/** Constant used to indicate PKCS1 padding for public-key encryption */
|
2004-04-03 04:40:30 +02:00
|
|
|
#define PK_PKCS1_PADDING 60001
|
2012-03-27 23:57:18 +02:00
|
|
|
/** Constant used to indicate OAEP padding for public-key encryption */
|
2004-04-03 04:40:30 +02:00
|
|
|
#define PK_PKCS1_OAEP_PADDING 60002
|
2004-03-30 21:47:32 +02:00
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Number of bytes added for PKCS1 padding. */
|
2004-04-06 05:44:36 +02:00
|
|
|
#define PKCS1_PADDING_OVERHEAD 11
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Number of bytes added for PKCS1-OAEP padding. */
|
2004-04-06 05:44:36 +02:00
|
|
|
#define PKCS1_OAEP_PADDING_OVERHEAD 42
|
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Length of encoded public key fingerprints, including space; but not
|
2004-05-01 23:41:23 +02:00
|
|
|
* including terminating NUL. */
|
2004-05-01 22:46:28 +02:00
|
|
|
#define FINGERPRINT_LEN 49
|
2004-07-01 03:16:59 +02:00
|
|
|
/** Length of hex encoding of SHA1 digest, not including final NUL. */
|
|
|
|
#define HEX_DIGEST_LEN 40
|
2009-08-20 01:21:29 +02:00
|
|
|
/** Length of hex encoding of SHA256 digest, not including final NUL. */
|
|
|
|
#define HEX_DIGEST256_LEN 64
|
|
|
|
|
|
|
|
typedef enum {
|
2009-09-16 23:01:01 +02:00
|
|
|
DIGEST_SHA1 = 0,
|
|
|
|
DIGEST_SHA256 = 1,
|
2009-08-20 01:21:29 +02:00
|
|
|
} digest_algorithm_t;
|
2009-09-16 23:01:01 +02:00
|
|
|
#define N_DIGEST_ALGORITHMS (DIGEST_SHA256+1)
|
|
|
|
|
|
|
|
/** A set of all the digests we know how to compute, taken on a single
|
|
|
|
* string. Any digests that are shorter than 256 bits are right-padded
|
|
|
|
* with 0 bits.
|
|
|
|
*
|
|
|
|
* Note that this representation wastes 12 bytes for the SHA1 case, so
|
|
|
|
* don't use it for anything where we need to allocate a whole bunch at
|
|
|
|
* once.
|
|
|
|
**/
|
|
|
|
typedef struct {
|
|
|
|
char d[N_DIGEST_ALGORITHMS][DIGEST256_LEN];
|
|
|
|
} digests_t;
|
2004-05-01 22:46:28 +02:00
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
typedef struct crypto_pk_t crypto_pk_t;
|
|
|
|
typedef struct crypto_cipher_t crypto_cipher_t;
|
|
|
|
typedef struct crypto_digest_t crypto_digest_t;
|
|
|
|
typedef struct crypto_dh_t crypto_dh_t;
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* global state */
|
2012-09-04 18:32:38 +02:00
|
|
|
const char * crypto_openssl_get_version_str(void);
|
2009-05-24 01:42:44 +02:00
|
|
|
int crypto_global_init(int hardwareAccel,
|
|
|
|
const char *accelName,
|
2011-11-23 23:39:46 +01:00
|
|
|
const char *accelPath);
|
2005-10-25 21:01:48 +02:00
|
|
|
void crypto_thread_cleanup(void);
|
2004-10-27 20:16:37 +02:00
|
|
|
int crypto_global_cleanup(void);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* environment setup */
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_t *crypto_pk_new(void);
|
|
|
|
void crypto_pk_free(crypto_pk_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2011-11-25 01:00:58 +01:00
|
|
|
void crypto_set_tls_dh_prime(const char *dynamic_dh_modulus_fname);
|
2011-11-24 00:22:31 +01:00
|
|
|
|
2012-03-20 20:35:43 +01:00
|
|
|
crypto_cipher_t *crypto_cipher_new(const char *key);
|
|
|
|
crypto_cipher_t *crypto_cipher_new_with_iv(const char *key, const char *iv);
|
2012-01-18 21:53:30 +01:00
|
|
|
void crypto_cipher_free(crypto_cipher_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* public key crypto */
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_generate_key_with_bits(crypto_pk_t *env, int bits);
|
2009-09-29 06:48:45 +02:00
|
|
|
#define crypto_pk_generate_key(env) \
|
|
|
|
crypto_pk_generate_key_with_bits((env), (PK_BYTES*8))
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_read_private_key_from_filename(crypto_pk_t *env,
|
2005-12-14 21:40:40 +01:00
|
|
|
const char *keyfile);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_write_public_key_to_string(crypto_pk_t *env,
|
2005-12-14 21:40:40 +01:00
|
|
|
char **dest, size_t *len);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_write_private_key_to_string(crypto_pk_t *env,
|
2008-08-08 16:36:11 +02:00
|
|
|
char **dest, size_t *len);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_read_public_key_from_string(crypto_pk_t *env,
|
2005-12-14 21:40:40 +01:00
|
|
|
const char *src, size_t len);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_read_private_key_from_string(crypto_pk_t *env,
|
2011-01-10 18:07:34 +01:00
|
|
|
const char *s, ssize_t len);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_write_private_key_to_filename(crypto_pk_t *env,
|
2005-12-14 21:40:40 +01:00
|
|
|
const char *fname);
|
2004-10-07 05:11:42 +02:00
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_check_key(crypto_pk_t *env);
|
|
|
|
int crypto_pk_cmp_keys(crypto_pk_t *a, crypto_pk_t *b);
|
2012-09-15 12:52:13 +02:00
|
|
|
int crypto_pk_eq_keys(crypto_pk_t *a, crypto_pk_t *b);
|
2012-01-18 21:53:30 +01:00
|
|
|
size_t crypto_pk_keysize(crypto_pk_t *env);
|
|
|
|
int crypto_pk_num_bits(crypto_pk_t *env);
|
|
|
|
crypto_pk_t *crypto_pk_dup_key(crypto_pk_t *orig);
|
|
|
|
crypto_pk_t *crypto_pk_copy_full(crypto_pk_t *orig);
|
|
|
|
int crypto_pk_key_is_private(const crypto_pk_t *key);
|
|
|
|
int crypto_pk_public_exponent_ok(crypto_pk_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_public_encrypt(crypto_pk_t *env, char *to, size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen, int padding);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_private_decrypt(crypto_pk_t *env, char *to, size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen,
|
2004-11-02 03:28:51 +01:00
|
|
|
int padding, int warnOnFailure);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_public_checksig(crypto_pk_t *env, char *to, size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_public_checksig_digest(crypto_pk_t *env, const char *data,
|
2008-02-22 20:09:45 +01:00
|
|
|
size_t datalen, const char *sig, size_t siglen);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_private_sign(crypto_pk_t *env, char *to, size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_private_sign_digest(crypto_pk_t *env, char *to, size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_public_hybrid_encrypt(crypto_pk_t *env, char *to,
|
2011-01-13 20:36:41 +01:00
|
|
|
size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen,
|
2004-11-02 03:28:51 +01:00
|
|
|
int padding, int force);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_private_hybrid_decrypt(crypto_pk_t *env, char *to,
|
2011-01-13 20:36:41 +01:00
|
|
|
size_t tolen,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen,
|
2004-11-02 03:28:51 +01:00
|
|
|
int padding, int warnOnFailure);
|
2004-04-01 05:08:35 +02:00
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_pk_asn1_encode(crypto_pk_t *pk, char *dest, size_t dest_len);
|
|
|
|
crypto_pk_t *crypto_pk_asn1_decode(const char *str, size_t len);
|
|
|
|
int crypto_pk_get_digest(crypto_pk_t *pk, char *digest_out);
|
|
|
|
int crypto_pk_get_all_digests(crypto_pk_t *pk, digests_t *digests_out);
|
|
|
|
int crypto_pk_get_fingerprint(crypto_pk_t *pk, char *fp_out,int add_space);
|
2003-09-26 22:41:23 +02:00
|
|
|
int crypto_pk_check_fingerprint_syntax(const char *s);
|
2003-05-07 04:13:23 +02:00
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
/* symmetric crypto */
|
2012-01-18 21:53:30 +01:00
|
|
|
const char *crypto_cipher_get_key(crypto_cipher_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_cipher_encrypt(crypto_cipher_t *env, char *to,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_cipher_decrypt(crypto_cipher_t *env, char *to,
|
2005-05-07 07:55:06 +02:00
|
|
|
const char *from, size_t fromlen);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_cipher_crypt_inplace(crypto_cipher_t *env, char *d, size_t len);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2012-03-20 20:35:43 +01:00
|
|
|
int crypto_cipher_encrypt_with_iv(const char *key,
|
2007-09-19 17:53:41 +02:00
|
|
|
char *to, size_t tolen,
|
|
|
|
const char *from, size_t fromlen);
|
2012-03-20 20:35:43 +01:00
|
|
|
int crypto_cipher_decrypt_with_iv(const char *key,
|
2007-09-19 17:53:41 +02:00
|
|
|
char *to, size_t tolen,
|
|
|
|
const char *from, size_t fromlen);
|
|
|
|
|
2009-09-16 23:01:01 +02:00
|
|
|
/* SHA-1 and other digests. */
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_digest(char *digest, const char *m, size_t len);
|
2009-08-20 01:21:29 +02:00
|
|
|
int crypto_digest256(char *digest, const char *m, size_t len,
|
|
|
|
digest_algorithm_t algorithm);
|
2009-09-16 23:01:01 +02:00
|
|
|
int crypto_digest_all(digests_t *ds_out, const char *m, size_t len);
|
|
|
|
const char *crypto_digest_algorithm_get_name(digest_algorithm_t alg);
|
2009-09-16 18:34:44 +02:00
|
|
|
int crypto_digest_algorithm_parse_name(const char *name);
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_digest_t *crypto_digest_new(void);
|
|
|
|
crypto_digest_t *crypto_digest256_new(digest_algorithm_t algorithm);
|
|
|
|
void crypto_digest_free(crypto_digest_t *digest);
|
|
|
|
void crypto_digest_add_bytes(crypto_digest_t *digest, const char *data,
|
2003-12-16 06:47:21 +01:00
|
|
|
size_t len);
|
2012-01-18 21:53:30 +01:00
|
|
|
void crypto_digest_get_digest(crypto_digest_t *digest,
|
2003-12-16 06:47:21 +01:00
|
|
|
char *out, size_t out_len);
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_digest_t *crypto_digest_dup(const crypto_digest_t *digest);
|
|
|
|
void crypto_digest_assign(crypto_digest_t *into,
|
|
|
|
const crypto_digest_t *from);
|
2007-10-31 05:56:59 +01:00
|
|
|
void crypto_hmac_sha1(char *hmac_out,
|
|
|
|
const char *key, size_t key_len,
|
|
|
|
const char *msg, size_t msg_len);
|
2011-09-13 17:38:13 +02:00
|
|
|
void crypto_hmac_sha256(char *hmac_out,
|
|
|
|
const char *key, size_t key_len,
|
|
|
|
const char *msg, size_t msg_len);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
/* Key negotiation */
|
2011-01-24 22:03:14 +01:00
|
|
|
#define DH_TYPE_CIRCUIT 1
|
|
|
|
#define DH_TYPE_REND 2
|
|
|
|
#define DH_TYPE_TLS 3
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_dh_t *crypto_dh_new(int dh_type);
|
2012-11-28 21:38:37 +01:00
|
|
|
crypto_dh_t *crypto_dh_dup(const crypto_dh_t *dh);
|
2012-01-18 21:53:30 +01:00
|
|
|
int crypto_dh_get_bytes(crypto_dh_t *dh);
|
|
|
|
int crypto_dh_generate_public(crypto_dh_t *dh);
|
|
|
|
int crypto_dh_get_public(crypto_dh_t *dh, char *pubkey_out,
|
2004-11-02 03:28:51 +01:00
|
|
|
size_t pubkey_out_len);
|
2012-01-18 21:53:30 +01:00
|
|
|
ssize_t crypto_dh_compute_secret(int severity, crypto_dh_t *dh,
|
2004-11-02 03:28:51 +01:00
|
|
|
const char *pubkey, size_t pubkey_len,
|
|
|
|
char *secret_out, size_t secret_out_len);
|
2012-01-18 21:53:30 +01:00
|
|
|
void crypto_dh_free(crypto_dh_t *dh);
|
2012-12-03 18:20:05 +01:00
|
|
|
|
|
|
|
int crypto_expand_key_material_TAP(const uint8_t *key_in,
|
|
|
|
size_t key_in_len,
|
|
|
|
uint8_t *key_out, size_t key_out_len);
|
|
|
|
int crypto_expand_key_material_rfc5869_sha256(
|
|
|
|
const uint8_t *key_in, size_t key_in_len,
|
|
|
|
const uint8_t *salt_in, size_t salt_in_len,
|
|
|
|
const uint8_t *info_in, size_t info_in_len,
|
|
|
|
uint8_t *key_out, size_t key_out_len);
|
2004-11-02 03:28:51 +01:00
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
/* random numbers */
|
2008-03-21 20:18:57 +01:00
|
|
|
int crypto_seed_rng(int startup);
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_rand(char *to, size_t n);
|
2012-12-04 05:31:07 +01:00
|
|
|
int crypto_strongest_rand(uint8_t *out, size_t out_len);
|
2005-10-07 00:18:01 +02:00
|
|
|
int crypto_rand_int(unsigned int max);
|
2006-10-01 23:59:05 +02:00
|
|
|
uint64_t crypto_rand_uint64(uint64_t max);
|
2010-06-23 03:30:26 +02:00
|
|
|
double crypto_rand_double(void);
|
2013-02-08 22:28:05 +01:00
|
|
|
struct tor_weak_rng_t;
|
|
|
|
void crypto_seed_weak_rng(struct tor_weak_rng_t *rng);
|
2003-04-17 19:10:41 +02:00
|
|
|
|
2008-02-08 22:13:12 +01:00
|
|
|
char *crypto_random_hostname(int min_rand_len, int max_rand_len,
|
|
|
|
const char *prefix, const char *suffix);
|
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
struct smartlist_t;
|
|
|
|
void *smartlist_choose(const struct smartlist_t *sl);
|
2007-05-18 23:19:14 +02:00
|
|
|
void smartlist_shuffle(struct smartlist_t *sl);
|
2004-11-02 03:28:51 +01:00
|
|
|
|
|
|
|
int base64_encode(char *dest, size_t destlen, const char *src, size_t srclen);
|
|
|
|
int base64_decode(char *dest, size_t destlen, const char *src, size_t srclen);
|
2013-01-17 22:08:28 +01:00
|
|
|
/** Characters that can appear (case-insensitively) in a base32 encoding. */
|
2004-11-02 03:28:51 +01:00
|
|
|
#define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz234567"
|
|
|
|
void base32_encode(char *dest, size_t destlen, const char *src, size_t srclen);
|
2007-09-18 19:07:56 +02:00
|
|
|
int base32_decode(char *dest, size_t destlen, const char *src, size_t srclen);
|
2004-11-02 03:28:51 +01:00
|
|
|
|
2005-09-18 04:18:59 +02:00
|
|
|
int digest_to_base64(char *d64, const char *digest);
|
|
|
|
int digest_from_base64(char *digest, const char *d64);
|
2009-08-20 02:03:40 +02:00
|
|
|
int digest256_to_base64(char *d64, const char *digest);
|
|
|
|
int digest256_from_base64(char *digest, const char *d64);
|
2005-09-18 04:18:59 +02:00
|
|
|
|
2007-02-05 19:33:52 +01:00
|
|
|
/** Length of RFC2440-style S2K specifier: the first 8 bytes are a salt, the
|
|
|
|
* 9th describes how much iteration to do. */
|
2004-11-03 20:49:03 +01:00
|
|
|
#define S2K_SPECIFIER_LEN 9
|
|
|
|
void secret_to_key(char *key_out, size_t key_out_len, const char *secret,
|
|
|
|
size_t secret_len, const char *s2k_specifier);
|
|
|
|
|
2012-11-07 22:09:58 +01:00
|
|
|
/** OpenSSL-based utility functions. */
|
|
|
|
void memwipe(void *mem, uint8_t byte, size_t sz);
|
|
|
|
|
2007-05-01 00:42:50 +02:00
|
|
|
#ifdef CRYPTO_PRIVATE
|
2010-04-10 00:45:08 +02:00
|
|
|
/* Prototypes for private functions only used by tortls.c, crypto.c, and the
|
|
|
|
* unit tests. */
|
2007-06-14 00:39:10 +02:00
|
|
|
struct rsa_st;
|
|
|
|
struct evp_pkey_st;
|
|
|
|
struct dh_st;
|
2012-10-12 18:22:13 +02:00
|
|
|
struct rsa_st *crypto_pk_get_rsa_(crypto_pk_t *env);
|
|
|
|
crypto_pk_t *crypto_new_pk_from_rsa_(struct rsa_st *rsa);
|
|
|
|
struct evp_pkey_st *crypto_pk_get_evp_pkey_(crypto_pk_t *env,
|
2007-06-14 00:39:10 +02:00
|
|
|
int private);
|
2012-10-12 18:22:13 +02:00
|
|
|
struct dh_st *crypto_dh_get_dh_(crypto_dh_t *dh);
|
2007-06-13 20:15:53 +02:00
|
|
|
/* Prototypes for private functions only used by crypto.c and test.c*/
|
2008-02-16 00:39:14 +01:00
|
|
|
void add_spaces_to_fp(char *out, size_t outlen, const char *in);
|
2007-05-01 00:42:50 +02:00
|
|
|
#endif
|
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|