mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Added the crypto abstraction to libor. Need to test and change the code to use this instead of OpenSSL.
svn:r74
This commit is contained in:
parent
5af5a96343
commit
e01522bbed
@ -3,9 +3,9 @@ noinst_LIBRARIES = libor.a
|
|||||||
|
|
||||||
#CFLAGS = -Wall -Wpointer-arith -O2
|
#CFLAGS = -Wall -Wpointer-arith -O2
|
||||||
|
|
||||||
libor_a_SOURCES = config.c key.c log.c utils.c
|
libor_a_SOURCES = config.c key.c log.c utils.c crypto.c
|
||||||
|
|
||||||
noinst_HEADERS = config.h key.h log.h \
|
noinst_HEADERS = config.h key.h log.h \
|
||||||
policies.h utils.h \
|
policies.h utils.h \
|
||||||
ss.h version.h
|
ss.h version.h crypto.h
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include "crypto.h"
|
#include "crypto.h"
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
int crypto_global_init()
|
int crypto_global_init()
|
||||||
{
|
{
|
||||||
@ -32,16 +33,16 @@ crypto_pk_env_t *crypto_new_pk_env(int type)
|
|||||||
|
|
||||||
switch(type) {
|
switch(type) {
|
||||||
case CRYPTO_PK_RSA:
|
case CRYPTO_PK_RSA:
|
||||||
env->key = (unsigned char *)RSA_new();
|
env->key = (unsigned char *)RSA_new();
|
||||||
if (!env->key) {
|
if (!env->key) {
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return env;
|
return env;
|
||||||
@ -49,16 +50,15 @@ crypto_pk_env_t *crypto_new_pk_env(int type)
|
|||||||
|
|
||||||
void crypto_free_pk_env(crypto_pk_env_t *env)
|
void crypto_free_pk_env(crypto_pk_env_t *env)
|
||||||
{
|
{
|
||||||
if (!env)
|
assert(env);
|
||||||
return;
|
|
||||||
|
|
||||||
switch(env->type) {
|
switch(env->type) {
|
||||||
case CRYPTO_PK_RSA:
|
case CRYPTO_PK_RSA:
|
||||||
if (env->key)
|
if (env->key)
|
||||||
RSA_free((RSA *)env->key);
|
RSA_free((RSA *)env->key);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
@ -80,96 +80,95 @@ crypto_cipher_env_t *crypto_new_cipher_env(int type)
|
|||||||
|
|
||||||
switch(type) {
|
switch(type) {
|
||||||
case CRYPTO_CIPHER_IDENTITY:
|
case CRYPTO_CIPHER_IDENTITY:
|
||||||
env->aux = (unsigned char *)malloc(sizeof(EVP_CIPHER_CTX));
|
env->aux = (unsigned char *)malloc(sizeof(EVP_CIPHER_CTX));
|
||||||
if (!env->aux) {
|
if (!env->aux) {
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
EVP_CIPHER_CTX_init((EVP_CIPHER_CTX *)env->aux);
|
EVP_CIPHER_CTX_init((EVP_CIPHER_CTX *)env->aux);
|
||||||
break;
|
break;
|
||||||
case CRYPTO_CIPHER_DES:
|
case CRYPTO_CIPHER_DES:
|
||||||
env->aux = (unsigned char *)malloc(sizeof(EVP_CIPHER_CTX));
|
env->aux = (unsigned char *)malloc(sizeof(EVP_CIPHER_CTX));
|
||||||
if (!env->aux) {
|
if (!env->aux) {
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
env->key = (unsigned char *)malloc(8);
|
env->key = (unsigned char *)malloc(8);
|
||||||
if (!env->key) {
|
if (!env->key) {
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
env->iv = (unsigned char *)malloc(8);
|
env->iv = (unsigned char *)malloc(8);
|
||||||
if (!env->iv) {
|
if (!env->iv) {
|
||||||
free((void *)env->key);
|
free((void *)env->key);
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
EVP_CIPHER_CTX_init((EVP_CIPHER_CTX *)env->aux);
|
EVP_CIPHER_CTX_init((EVP_CIPHER_CTX *)env->aux);
|
||||||
break;
|
break;
|
||||||
case CRYPTO_CIPHER_RC4:
|
case CRYPTO_CIPHER_RC4:
|
||||||
env->aux = (unsigned char *)malloc(sizeof(EVP_CIPHER_CTX));
|
env->aux = (unsigned char *)malloc(sizeof(EVP_CIPHER_CTX));
|
||||||
if (!env->aux) {
|
if (!env->aux) {
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
env->key = (unsigned char *)malloc(16);
|
env->key = (unsigned char *)malloc(16);
|
||||||
if (!env->key) {
|
if (!env->key) {
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
env->iv = (unsigned char *)malloc(16);
|
env->iv = (unsigned char *)malloc(16);
|
||||||
if (!env->iv) {
|
if (!env->iv) {
|
||||||
free((void *)env->key);
|
free((void *)env->key);
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
EVP_CIPHER_CTX_init((EVP_CIPHER_CTX *)env->aux);
|
EVP_CIPHER_CTX_init((EVP_CIPHER_CTX *)env->aux);
|
||||||
default:
|
default:
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
return NULL;
|
return NULL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return env;
|
return env;
|
||||||
}
|
}
|
||||||
|
|
||||||
void crypto_free_cipher_env(crypto_cipher_env_t *env)
|
void crypto_free_cipher_env(crypto_cipher_env_t *env)
|
||||||
{
|
{
|
||||||
if (!env)
|
assert(env);
|
||||||
return;
|
|
||||||
|
|
||||||
switch(env->type) {
|
switch(env->type) {
|
||||||
case CRYPTO_CIPHER_IDENTITY:
|
case CRYPTO_CIPHER_IDENTITY:
|
||||||
if (env->aux) {
|
if (env->aux) {
|
||||||
EVP_CIPHER_CTX_cleanup((EVP_CIPHER_CTX *)env->aux);
|
EVP_CIPHER_CTX_cleanup((EVP_CIPHER_CTX *)env->aux);
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case CRYPTO_CIPHER_DES:
|
case CRYPTO_CIPHER_DES:
|
||||||
if (env->aux) {
|
if (env->aux) {
|
||||||
EVP_CIPHER_CTX_cleanup((EVP_CIPHER_CTX *)env->aux);
|
EVP_CIPHER_CTX_cleanup((EVP_CIPHER_CTX *)env->aux);
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
}
|
}
|
||||||
if (env->key)
|
if (env->key)
|
||||||
free((void *)env->key);
|
free((void *)env->key);
|
||||||
if (env->iv)
|
if (env->iv)
|
||||||
free((void *)env->iv);
|
free((void *)env->iv);
|
||||||
break;
|
break;
|
||||||
case CRYPTO_CIPHER_RC4:
|
case CRYPTO_CIPHER_RC4:
|
||||||
if (env->aux) {
|
if (env->aux) {
|
||||||
EVP_CIPHER_CTX_cleanup((EVP_CIPHER_CTX *)env->aux);
|
EVP_CIPHER_CTX_cleanup((EVP_CIPHER_CTX *)env->aux);
|
||||||
free((void *)env->aux);
|
free((void *)env->aux);
|
||||||
}
|
}
|
||||||
if (env->key)
|
if (env->key)
|
||||||
free((void *)env->key);
|
free((void *)env->key);
|
||||||
if (env->iv)
|
if (env->iv)
|
||||||
free((void *)env->iv);
|
free((void *)env->iv);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
free((void *)env);
|
free((void *)env);
|
||||||
@ -179,67 +178,264 @@ void crypto_free_cipher_env(crypto_cipher_env_t *env)
|
|||||||
/* public key crypto */
|
/* public key crypto */
|
||||||
int crypto_pk_generate_key(crypto_pk_env_t *env)
|
int crypto_pk_generate_key(crypto_pk_env_t *env)
|
||||||
{
|
{
|
||||||
|
assert(env);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
if (env->key)
|
||||||
|
RSA_free((RSA *)env->key);
|
||||||
|
env->key = (unsigned char *)RSA_generate_key(1024,65535, NULL, NULL);
|
||||||
|
if (!env->key)
|
||||||
|
return -1;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int crypto_pk_read_private_key(crypto_pk_env_t *env, FILE *src)
|
int crypto_pk_read_private_key(crypto_pk_env_t *env, FILE *src)
|
||||||
{
|
{
|
||||||
|
assert(env && src);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
if (env->key)
|
||||||
|
RSA_free((RSA *)env->key);
|
||||||
|
env->key = (unsigned char *)PEM_read_RSAPrivateKey(src, (RSA **)&env->key, NULL, NULL);
|
||||||
|
if (!env->key)
|
||||||
|
return -1;
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int crypto_pk_read_public_key(crypto_pk_env_t *env, FILE *src)
|
int crypto_pk_read_public_key(crypto_pk_env_t *env, FILE *src)
|
||||||
{
|
{
|
||||||
|
assert(env && src);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
if (env->key)
|
||||||
|
RSA_free((RSA *)env->key);
|
||||||
|
env->key = (unsigned char *)PEM_read_RSAPublicKey(src, (RSA **)&env->key, NULL, NULL);
|
||||||
|
if (!env->key)
|
||||||
|
return -1;
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int crypto_pk_write_private_key(crypto_pk_env_t *env, FILE *dest)
|
int crypto_pk_write_private_key(crypto_pk_env_t *env, FILE *dest)
|
||||||
{
|
{
|
||||||
|
assert(env && dest);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
if (!env->key)
|
||||||
|
return -1;
|
||||||
|
if (PEM_write_RSAPrivateKey(dest, (RSA *)env->key, NULL, NULL, 0,0, NULL) == 0)
|
||||||
|
return -1;
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int crypto_pk_write_public_key(crypto_pk_env_t *env, FILE *dest)
|
int crypto_pk_write_public_key(crypto_pk_env_t *env, FILE *dest)
|
||||||
{
|
{
|
||||||
|
assert(env && dest);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
if (!env->key)
|
||||||
|
return -1;
|
||||||
|
if (PEM_write_RSAPublicKey(dest, (RSA *)env->key) == 0)
|
||||||
|
return -1;
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int crypto_pk_check_key(crypto_pk_env_t *env)
|
||||||
|
{
|
||||||
|
assert(env);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
return RSA_check_key((RSA *)env->key);
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int crypto_pk_set_key(crypto_pk_env_t *env, unsigned char *key)
|
int crypto_pk_set_key(crypto_pk_env_t *env, unsigned char *key)
|
||||||
{
|
{
|
||||||
|
assert(env && key);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
if (env->key)
|
||||||
|
RSA_free((RSA *)env->key);
|
||||||
|
env->key = key;
|
||||||
|
break;
|
||||||
|
default :
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int crypto_pk_public_encrypt(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to, int padding)
|
||||||
|
{
|
||||||
|
assert(env && from && to);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
return RSA_public_encrypt(fromlen, from, to, (RSA *)env->key, padding);
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int crypto_pk_private_decrypt(crypto_pk_env_t *env, unsigned char *from, int fromlen, unsigned char *to, int padding)
|
||||||
|
{
|
||||||
|
assert(env && from && to);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_PK_RSA:
|
||||||
|
return RSA_private_decrypt(fromlen, from, to, (RSA *)env->key, padding);
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* symmetric crypto */
|
/* symmetric crypto */
|
||||||
int crypto_cipher_set_iv(crypto_cipher_env_t *env, unsigned char *iv)
|
int crypto_cipher_set_iv(crypto_cipher_env_t *env, unsigned char *iv)
|
||||||
{
|
{
|
||||||
|
assert(env && iv);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_CIPHER_IDENTITY:
|
||||||
|
break;
|
||||||
|
case CRYPTO_CIPHER_DES:
|
||||||
|
case CRYPTO_CIPHER_RC4:
|
||||||
|
if (env->iv)
|
||||||
|
free((void *)env->iv);
|
||||||
|
env->iv = iv;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int crypto_cipher_set_key(crypto_cipher_env_t *env, unsigned char *key)
|
int crypto_cipher_set_key(crypto_cipher_env_t *env, unsigned char *key)
|
||||||
{
|
{
|
||||||
|
assert(env && key);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_CIPHER_IDENTITY:
|
||||||
|
break;
|
||||||
|
case CRYPTO_CIPHER_DES:
|
||||||
|
case CRYPTO_CIPHER_RC4:
|
||||||
|
if (env->key)
|
||||||
|
free((void *)env->key);
|
||||||
|
env->key = key;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int crypto_cipher_init_cipher()
|
|
||||||
|
int crypto_cipher_encrypt_init_cipher(crypto_cipher_env_t *env)
|
||||||
{
|
{
|
||||||
|
assert(env);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_CIPHER_IDENTITY:
|
||||||
|
return !(EVP_EncryptInit((EVP_CIPHER_CTX *)env->aux, EVP_enc_null(), env->key, env->iv));
|
||||||
|
case CRYPTO_CIPHER_DES:
|
||||||
|
return !(EVP_EncryptInit((EVP_CIPHER_CTX *)env->aux, EVP_des_ofb(), env->key, env->iv));
|
||||||
|
case CRYPTO_CIPHER_RC4:
|
||||||
|
return !(EVP_EncryptInit((EVP_CIPHER_CTX *)env->aux, EVP_rc4(), env->key, env->iv));
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int crypto_cipher_decrypt_init_cipher(crypto_cipher_env_t *env)
|
||||||
|
{
|
||||||
|
assert(env);
|
||||||
|
|
||||||
|
switch(env->type) {
|
||||||
|
case CRYPTO_CIPHER_IDENTITY:
|
||||||
|
return !(EVP_DecryptInit((EVP_CIPHER_CTX *)env->aux, EVP_enc_null(), env->key, env->iv));
|
||||||
|
case CRYPTO_CIPHER_DES:
|
||||||
|
return !(EVP_DecryptInit((EVP_CIPHER_CTX *)env->aux, EVP_des_ofb(), env->key, env->iv));
|
||||||
|
case CRYPTO_CIPHER_RC4:
|
||||||
|
return !(EVP_DecryptInit((EVP_CIPHER_CTX *)env->aux, EVP_rc4(), env->key, env->iv));
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int crypto_cipher_encrypt(crypto_cipher_env_t *env, unsigned char *from, unsigned int fromlen, unsigned char *to)
|
int crypto_cipher_encrypt(crypto_cipher_env_t *env, unsigned char *from, unsigned int fromlen, unsigned char *to)
|
||||||
{
|
{
|
||||||
return 0;
|
int tolen;
|
||||||
|
|
||||||
|
assert(env && from && to);
|
||||||
|
|
||||||
|
return !(EVP_EncryptUpdate((EVP_CIPHER_CTX *)env->aux, to, &tolen, from, fromlen));
|
||||||
}
|
}
|
||||||
|
|
||||||
int crypto_cipher_decrypt(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)
|
||||||
{
|
{
|
||||||
return 0;
|
int tolen;
|
||||||
|
|
||||||
|
assert(env && from && to);
|
||||||
|
|
||||||
|
return !(EVP_DecryptUpdate((EVP_CIPHER_CTX *)env->aux, to, &tolen, from, fromlen));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SHA-1 */
|
/* SHA-1 */
|
||||||
int crypto_SHA_digest(unsigned char *m, unsigned char *digest)
|
int crypto_SHA_digest(unsigned char *m, int len, unsigned char *digest)
|
||||||
{
|
{
|
||||||
return 0;
|
assert(m && digest);
|
||||||
|
return (SHA1(m,len,digest) == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* random numbers */
|
/* random numbers */
|
||||||
int crypto_rand(unsigned int n, unsigned char *to)
|
int crypto_rand(unsigned int n, unsigned char *to)
|
||||||
{
|
{
|
||||||
return 0;
|
assert(to);
|
||||||
|
return (RAND_bytes(to, n) == -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int crypto_pseudo_rand(unsigned int n, unsigned char *to)
|
int crypto_pseudo_rand(unsigned int n, unsigned char *to)
|
||||||
{
|
{
|
||||||
return 0;
|
assert(to);
|
||||||
|
return (RAND_pseudo_bytes(to, n) == -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* errors */
|
||||||
|
char *crypto_perror()
|
||||||
|
{
|
||||||
|
return (char *)ERR_reason_error_string(ERR_get_error());
|
||||||
}
|
}
|
||||||
|
@ -53,22 +53,29 @@ int crypto_pk_read_private_key(crypto_pk_env_t *env, FILE *src);
|
|||||||
int crypto_pk_read_public_key(crypto_pk_env_t *env, FILE *src);
|
int crypto_pk_read_public_key(crypto_pk_env_t *env, FILE *src);
|
||||||
int crypto_pk_write_private_key(crypto_pk_env_t *env, FILE *dest);
|
int crypto_pk_write_private_key(crypto_pk_env_t *env, FILE *dest);
|
||||||
int crypto_pk_write_public_key(crypto_pk_env_t *env, FILE *dest);
|
int crypto_pk_write_public_key(crypto_pk_env_t *env, FILE *dest);
|
||||||
|
int crypto_pk_check_key(crypto_pk_env_t *env);
|
||||||
|
|
||||||
int crypto_pk_set_key(crypto_pk_env_t *env, unsigned char *key);
|
int crypto_pk_set_key(crypto_pk_env_t *env, unsigned char *key);
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
/* symmetric crypto */
|
/* symmetric crypto */
|
||||||
int crypto_cipher_set_iv(crypto_cipher_env_t *env, unsigned char *iv);
|
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);
|
int crypto_cipher_set_key(crypto_cipher_env_t *env, unsigned char *key);
|
||||||
int crypto_cipher_init_cipher();
|
int crypto_cipher_encrypt_init_cipher(crypto_cipher_env_t *env);
|
||||||
|
int crypto_cipher_decrypt_init_cipher(crypto_cipher_env_t *env);
|
||||||
|
|
||||||
int crypto_cipher_encrypt(crypto_cipher_env_t *env, unsigned char *from, unsigned int fromlen, unsigned char *to);
|
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);
|
int crypto_cipher_decrypt(crypto_cipher_env_t *env, unsigned char *from, unsigned int fromlen, unsigned char *to);
|
||||||
|
|
||||||
/* SHA-1 */
|
/* SHA-1 */
|
||||||
int crypto_SHA_digest(unsigned char *m, unsigned char *digest);
|
int crypto_SHA_digest(unsigned char *m, int len, unsigned char *digest);
|
||||||
|
|
||||||
/* random numbers */
|
/* random numbers */
|
||||||
int crypto_rand(unsigned int n, unsigned char *to);
|
int crypto_rand(unsigned int n, unsigned char *to);
|
||||||
int crypto_pseudo_rand(unsigned int n, unsigned char *to);
|
int crypto_pseudo_rand(unsigned int n, unsigned char *to);
|
||||||
|
|
||||||
|
/* errors */
|
||||||
|
char *crypto_perror();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user