2003-10-08 04:04:08 +02:00
|
|
|
/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */
|
2002-07-24 16:02:39 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef __CRYPTO_H
|
|
|
|
#define __CRYPTO_H
|
|
|
|
|
2002-08-22 09:30:03 +02:00
|
|
|
#include <stdio.h>
|
2002-07-24 16:02:39 +02:00
|
|
|
#include <openssl/rsa.h>
|
2003-09-04 18:05:08 +02:00
|
|
|
#include <openssl/dh.h>
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* available encryption primitives */
|
|
|
|
#define CRYPTO_CIPHER_IDENTITY 0
|
|
|
|
#define CRYPTO_CIPHER_DES 1
|
|
|
|
#define CRYPTO_CIPHER_RC4 2
|
2003-03-19 21:41:15 +01:00
|
|
|
#define CRYPTO_CIPHER_3DES 3
|
2003-06-30 21:18:32 +02:00
|
|
|
#define CRYPTO_CIPHER_AES_CTR 4
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
#define CRYPTO_PK_RSA 0
|
|
|
|
|
2003-12-16 06:29:04 +01:00
|
|
|
#define CRYPTO_SHA1_DIGEST 0
|
|
|
|
|
2004-03-30 21:47:32 +02:00
|
|
|
#define CRYPTO_SHA1_DIGEST_LEN 20
|
|
|
|
|
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;
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
/* global state */
|
|
|
|
int crypto_global_init();
|
|
|
|
int crypto_global_cleanup();
|
|
|
|
|
|
|
|
/* environment setup */
|
|
|
|
crypto_pk_env_t *crypto_new_pk_env(int type);
|
|
|
|
void crypto_free_pk_env(crypto_pk_env_t *env);
|
|
|
|
|
|
|
|
crypto_cipher_env_t *crypto_new_cipher_env(int type);
|
|
|
|
void crypto_free_cipher_env(crypto_cipher_env_t *env);
|
|
|
|
|
|
|
|
/* public key crypto */
|
|
|
|
int crypto_pk_generate_key(crypto_pk_env_t *env);
|
|
|
|
|
2002-09-24 12:43:57 +02:00
|
|
|
int crypto_pk_read_private_key_from_file(crypto_pk_env_t *env, FILE *src);
|
|
|
|
int crypto_pk_read_public_key_from_file(crypto_pk_env_t *env, FILE *src);
|
|
|
|
int crypto_pk_write_public_key_to_string(crypto_pk_env_t *env, char **dest, int *len);
|
2003-12-09 00:45:37 +01:00
|
|
|
int crypto_pk_read_public_key_from_string(crypto_pk_env_t *env, const char *src, int len);
|
2002-09-24 12:43:57 +02:00
|
|
|
int crypto_pk_write_private_key_to_file(crypto_pk_env_t *env, FILE *dest);
|
2003-09-26 20:27:35 +02:00
|
|
|
int crypto_pk_write_private_key_to_filename(crypto_pk_env_t *env, const char *fname);
|
2002-09-24 12:43:57 +02:00
|
|
|
int crypto_pk_write_public_key_to_file(crypto_pk_env_t *env, FILE *dest);
|
2002-07-25 10:17:22 +02:00
|
|
|
int crypto_pk_check_key(crypto_pk_env_t *env);
|
2003-09-25 07:17:11 +02:00
|
|
|
int crypto_pk_read_private_key_from_filename(crypto_pk_env_t *env, const char *keyfile);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
int crypto_pk_set_key(crypto_pk_env_t *env, unsigned char *key);
|
2002-08-22 09:30:03 +02:00
|
|
|
int crypto_pk_cmp_keys(crypto_pk_env_t *a, crypto_pk_env_t *b);
|
2002-09-24 12:43:57 +02:00
|
|
|
crypto_pk_env_t *crypto_pk_dup_key(crypto_pk_env_t *orig);
|
2002-08-22 09:30:03 +02:00
|
|
|
int crypto_pk_keysize(crypto_pk_env_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
2002-07-25 10:17:22 +02:00
|
|
|
int crypto_pk_public_encrypt(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to, int padding);
|
|
|
|
int crypto_pk_private_decrypt(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to, int padding);
|
2003-05-07 04:13:23 +02:00
|
|
|
int crypto_pk_private_sign(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to);
|
2004-04-02 00:10:33 +02:00
|
|
|
int crypto_pk_private_sign_digest(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to);
|
2003-05-07 20:30:46 +02:00
|
|
|
int crypto_pk_public_checksig(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to);
|
2004-04-02 00:10:33 +02:00
|
|
|
int crypto_pk_public_checksig_digest(crypto_pk_env_t *env, unsigned char *data, int datalen, unsigned char *sig, int siglen);
|
2004-04-01 05:08:35 +02:00
|
|
|
int crypto_pk_public_hybrid_encrypt(crypto_pk_env_t *env, unsigned char *from,
|
|
|
|
int fromlen, unsigned char *to,
|
|
|
|
int padding);
|
|
|
|
int crypto_pk_private_hybrid_decrypt(crypto_pk_env_t *env, unsigned char *from,
|
|
|
|
int fromlen, unsigned char *to,
|
|
|
|
int padding);
|
|
|
|
|
2003-09-25 07:17:11 +02:00
|
|
|
#define FINGERPRINT_LEN 49
|
2004-03-30 21:47:32 +02:00
|
|
|
int crypto_pk_asn1_encode(crypto_pk_env_t *pk, char *dest, int dest_len);
|
|
|
|
crypto_pk_env_t *crypto_pk_asn1_decode(const char *str, int len);
|
|
|
|
int crypto_pk_get_digest(crypto_pk_env_t *pk, char *digest_out);
|
2003-09-25 07:17:11 +02:00
|
|
|
int crypto_pk_get_fingerprint(crypto_pk_env_t *pk, char *fp_out);
|
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
|
|
|
|
2003-12-09 00:45:37 +01:00
|
|
|
int base64_encode(char *dest, int destlen, const char *src, int srclen);
|
|
|
|
int base64_decode(char *dest, int destlen, const char *src, int srclen);
|
2004-03-30 21:47:32 +02:00
|
|
|
int base32_encode(char *dest, int destlen, const char *src, int srclen);
|
2003-05-01 02:53:46 +02:00
|
|
|
|
|
|
|
/* Key negotiation */
|
2003-09-04 18:05:08 +02:00
|
|
|
typedef struct crypto_dh_env_st {
|
|
|
|
DH *dh;
|
|
|
|
} crypto_dh_env_t;
|
|
|
|
|
2003-05-07 04:28:42 +02:00
|
|
|
/* #define CRYPTO_DH_SIZE (1536 / 8) */
|
|
|
|
#define CRYPTO_DH_SIZE (1024 / 8)
|
2003-05-01 02:53:46 +02:00
|
|
|
crypto_dh_env_t *crypto_dh_new();
|
|
|
|
int crypto_dh_get_bytes(crypto_dh_env_t *dh);
|
2004-04-01 22:04:54 +02:00
|
|
|
int crypto_dh_generate_public(crypto_dh_env_t *dh);
|
2003-12-16 06:29:04 +01:00
|
|
|
int crypto_dh_get_public(crypto_dh_env_t *dh, char *pubkey_out,
|
2004-03-12 14:02:16 +01:00
|
|
|
int pubkey_out_len);
|
2003-12-16 06:29:04 +01:00
|
|
|
int crypto_dh_compute_secret(crypto_dh_env_t *dh,
|
2004-03-12 14:02:16 +01:00
|
|
|
char *pubkey, int pubkey_len,
|
|
|
|
char *secret_out, int secret_out_len);
|
2003-05-01 02:53:46 +02:00
|
|
|
void crypto_dh_free(crypto_dh_env_t *dh);
|
|
|
|
|
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);
|
2002-07-24 16:02:39 +02:00
|
|
|
int crypto_cipher_set_iv(crypto_cipher_env_t *env, unsigned char *iv);
|
|
|
|
int crypto_cipher_set_key(crypto_cipher_env_t *env, unsigned char *key);
|
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);
|
2003-09-10 02:47:24 +02:00
|
|
|
unsigned char *crypto_cipher_get_key(crypto_cipher_env_t *env);
|
2002-07-24 16:02:39 +02:00
|
|
|
|
|
|
|
int crypto_cipher_encrypt(crypto_cipher_env_t *env, unsigned char *from, unsigned int fromlen, unsigned char *to);
|
|
|
|
int crypto_cipher_decrypt(crypto_cipher_env_t *env, unsigned char *from, unsigned int fromlen, unsigned char *to);
|
|
|
|
|
2003-06-30 21:18:32 +02:00
|
|
|
/* only implemented for CRYPTO_CIPHER_AES_CTR */
|
2003-12-23 08:43:05 +01:00
|
|
|
int crypto_cipher_rewind(crypto_cipher_env_t *env, long delta);
|
2003-06-30 21:18:32 +02:00
|
|
|
int crypto_cipher_advance(crypto_cipher_env_t *env, long delta);
|
|
|
|
|
2002-10-02 22:39:51 +02:00
|
|
|
/* convenience function: wraps crypto_create_crypto_env, set_key, set_iv, and init. */
|
|
|
|
crypto_cipher_env_t *crypto_create_init_cipher(int cipher_type, char *key, char *iv, int encrypt_mode);
|
|
|
|
|
2002-07-24 16:02:39 +02:00
|
|
|
/* SHA-1 */
|
2003-12-09 00:45:37 +01:00
|
|
|
int crypto_SHA_digest(const unsigned char *m, int len, unsigned char *digest);
|
2003-12-17 06:31:52 +01:00
|
|
|
crypto_digest_env_t *crypto_new_digest_env(int type);
|
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
|
|
|
|
|
|
|
/* random numbers */
|
2003-06-13 23:13:37 +02:00
|
|
|
int crypto_seed_rng();
|
2002-07-24 16:02:39 +02:00
|
|
|
int crypto_rand(unsigned int n, unsigned char *to);
|
2003-11-12 05:12:35 +01:00
|
|
|
void crypto_pseudo_rand(unsigned int n, unsigned char *to);
|
2003-11-12 05:28:30 +01:00
|
|
|
int crypto_pseudo_rand_int(unsigned int max);
|
2003-04-17 19:10:41 +02:00
|
|
|
|
2002-07-25 10:17:22 +02:00
|
|
|
/* errors */
|
|
|
|
char *crypto_perror();
|
2002-07-24 16:02:39 +02:00
|
|
|
#endif
|