2005-04-01 22:15:56 +02:00
|
|
|
/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
|
|
|
|
* Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
|
2002-07-24 16:02:39 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
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
|
|
|
**/
|
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
#ifndef __CRYPTO_H
|
|
|
|
#define __CRYPTO_H
|
2004-11-29 23:25:31 +01:00
|
|
|
#define CRYPTO_H_ID "$Id$"
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2002-08-22 09:30:03 +02:00
|
|
|
#include <stdio.h>
|
2002-07-24 16:02:39 +02:00
|
|
|
|
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
|
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
|
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
|
|
|
|
2005-10-06 06:33:40 +02:00
|
|
|
/** Length of a message digest when encoded in base64 with trailing = signs
|
|
|
|
* removed. */
|
2005-09-18 04:18:59 +02:00
|
|
|
#define BASE64_DIGEST_LEN 27
|
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Constants used to indicate no padding for public-key encryption */
|
2004-04-03 04:40:30 +02:00
|
|
|
#define PK_NO_PADDING 60000
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Constants used to indicate PKCS1 padding for public-key encryption */
|
2004-04-03 04:40:30 +02:00
|
|
|
#define PK_PKCS1_PADDING 60001
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Constants 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
|
2004-05-01 22:46:28 +02:00
|
|
|
|
2003-09-10 02:47:24 +02:00
|
|
|
typedef struct crypto_pk_env_t crypto_pk_env_t;
|
|
|
|
typedef struct crypto_cipher_env_t crypto_cipher_env_t;
|
2003-12-16 06:29:04 +01:00
|
|
|
typedef struct crypto_digest_env_t crypto_digest_env_t;
|
2004-04-03 04:40:30 +02:00
|
|
|
typedef struct crypto_dh_env_t crypto_dh_env_t;
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* global state */
|
2005-06-20 20:56:35 +02:00
|
|
|
int crypto_global_init(int hardwareAccel);
|
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 */
|
2004-04-03 04:40:30 +02:00
|
|
|
crypto_pk_env_t *crypto_new_pk_env(void);
|
2002-07-24 16:02:39 +02:00
|
|
|
void crypto_free_pk_env(crypto_pk_env_t *env);
|
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
/* convenience function: wraps crypto_create_crypto_env, set_key, and init. */
|
|
|
|
crypto_cipher_env_t *crypto_create_init_cipher(const char *key, int encrypt_mode);
|
|
|
|
|
2004-04-03 04:40:30 +02:00
|
|
|
crypto_cipher_env_t *crypto_new_cipher_env(void);
|
2002-07-24 16:02:39 +02:00
|
|
|
void crypto_free_cipher_env(crypto_cipher_env_t *env);
|
|
|
|
|
|
|
|
/* public key crypto */
|
|
|
|
int crypto_pk_generate_key(crypto_pk_env_t *env);
|
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
int crypto_pk_read_private_key_from_filename(crypto_pk_env_t *env, const char *keyfile);
|
2004-10-13 07:54:58 +02:00
|
|
|
int crypto_pk_write_public_key_to_string(crypto_pk_env_t *env, char **dest, size_t *len);
|
|
|
|
int crypto_pk_read_public_key_from_string(crypto_pk_env_t *env, const char *src, size_t len);
|
2003-09-26 20:27:35 +02:00
|
|
|
int crypto_pk_write_private_key_to_filename(crypto_pk_env_t *env, const char *fname);
|
2004-10-07 05:11:42 +02:00
|
|
|
int crypto_pk_DER64_encode_public_key(crypto_pk_env_t *env, char **dest);
|
|
|
|
crypto_pk_env_t *crypto_pk_DER64_decode_public_key(const char *in);
|
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
int crypto_pk_check_key(crypto_pk_env_t *env);
|
2002-08-22 09:30:03 +02:00
|
|
|
int crypto_pk_cmp_keys(crypto_pk_env_t *a, crypto_pk_env_t *b);
|
2005-05-07 07:55:06 +02:00
|
|
|
size_t crypto_pk_keysize(crypto_pk_env_t *env);
|
2004-11-02 03:28:51 +01:00
|
|
|
crypto_pk_env_t *crypto_pk_dup_key(crypto_pk_env_t *orig);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_pk_public_encrypt(crypto_pk_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen, int padding);
|
|
|
|
int crypto_pk_private_decrypt(crypto_pk_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen,
|
2004-11-02 03:28:51 +01:00
|
|
|
int padding, int warnOnFailure);
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_pk_public_checksig(crypto_pk_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen);
|
|
|
|
int crypto_pk_public_checksig_digest(crypto_pk_env_t *env, const char *data,
|
|
|
|
int datalen, const char *sig, int siglen);
|
|
|
|
int crypto_pk_private_sign(crypto_pk_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen);
|
|
|
|
int crypto_pk_private_sign_digest(crypto_pk_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen);
|
|
|
|
int crypto_pk_public_hybrid_encrypt(crypto_pk_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen,
|
2004-11-02 03:28:51 +01:00
|
|
|
int padding, int force);
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_pk_private_hybrid_decrypt(crypto_pk_env_t *env, char *to,
|
|
|
|
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
|
|
|
|
2004-03-30 21:47:32 +02:00
|
|
|
int crypto_pk_asn1_encode(crypto_pk_env_t *pk, char *dest, int dest_len);
|
2005-05-07 07:55:06 +02:00
|
|
|
crypto_pk_env_t *crypto_pk_asn1_decode(const char *str, size_t len);
|
2004-03-30 21:47:32 +02:00
|
|
|
int crypto_pk_get_digest(crypto_pk_env_t *pk, char *digest_out);
|
2004-10-06 15:26:10 +02:00
|
|
|
int crypto_pk_get_fingerprint(crypto_pk_env_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 */
|
2002-08-22 09:30:03 +02:00
|
|
|
int crypto_cipher_generate_key(crypto_cipher_env_t *env);
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_cipher_set_key(crypto_cipher_env_t *env, const char *key);
|
|
|
|
const char *crypto_cipher_get_key(crypto_cipher_env_t *env);
|
2002-07-25 10:17:22 +02:00
|
|
|
int crypto_cipher_encrypt_init_cipher(crypto_cipher_env_t *env);
|
|
|
|
int crypto_cipher_decrypt_init_cipher(crypto_cipher_env_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_cipher_encrypt(crypto_cipher_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen);
|
|
|
|
int crypto_cipher_decrypt(crypto_cipher_env_t *env, char *to,
|
|
|
|
const char *from, size_t fromlen);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* SHA-1 */
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_digest(char *digest, const char *m, size_t len);
|
2004-10-27 20:16:37 +02:00
|
|
|
crypto_digest_env_t *crypto_new_digest_env(void);
|
2003-12-16 09:13:26 +01:00
|
|
|
void crypto_free_digest_env(crypto_digest_env_t *digest);
|
2003-12-16 06:29:04 +01:00
|
|
|
void crypto_digest_add_bytes(crypto_digest_env_t *digest, const char *data,
|
2003-12-16 06:47:21 +01:00
|
|
|
size_t len);
|
2003-12-16 06:29:04 +01:00
|
|
|
void crypto_digest_get_digest(crypto_digest_env_t *digest,
|
2003-12-16 06:47:21 +01:00
|
|
|
char *out, size_t out_len);
|
|
|
|
crypto_digest_env_t *crypto_digest_dup(const crypto_digest_env_t *digest);
|
2003-12-16 06:29:04 +01:00
|
|
|
void crypto_digest_assign(crypto_digest_env_t *into,
|
2003-12-16 06:47:21 +01:00
|
|
|
const crypto_digest_env_t *from);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
/* Key negotiation */
|
|
|
|
crypto_dh_env_t *crypto_dh_new(void);
|
|
|
|
int crypto_dh_get_bytes(crypto_dh_env_t *dh);
|
|
|
|
int crypto_dh_generate_public(crypto_dh_env_t *dh);
|
|
|
|
int crypto_dh_get_public(crypto_dh_env_t *dh, char *pubkey_out,
|
|
|
|
size_t pubkey_out_len);
|
|
|
|
int crypto_dh_compute_secret(crypto_dh_env_t *dh,
|
|
|
|
const char *pubkey, size_t pubkey_len,
|
|
|
|
char *secret_out, size_t secret_out_len);
|
|
|
|
void crypto_dh_free(crypto_dh_env_t *dh);
|
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
/* random numbers */
|
2004-10-27 20:16:37 +02:00
|
|
|
int crypto_seed_rng(void);
|
2005-05-07 07:55:06 +02:00
|
|
|
int crypto_rand(char *to, size_t n);
|
2005-10-07 00:18:01 +02:00
|
|
|
int crypto_rand_int(unsigned int max);
|
2003-04-17 19:10:41 +02:00
|
|
|
|
2004-11-02 03:28:51 +01:00
|
|
|
struct smartlist_t;
|
|
|
|
void *smartlist_choose(const struct smartlist_t *sl);
|
|
|
|
|
|
|
|
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);
|
|
|
|
#define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz234567"
|
|
|
|
void base32_encode(char *dest, size_t destlen, const char *src, size_t srclen);
|
|
|
|
|
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);
|
|
|
|
|
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);
|
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|