13 #ifndef TOR_CRYPTO_CIPHER_H
14 #define TOR_CRYPTO_CIPHER_H
22 #define CIPHER_KEY_LEN 16
24 #define CIPHER_IV_LEN 16
26 #define CIPHER256_KEY_LEN 32
28 typedef struct aes_cnt_cipher_t crypto_cipher_t;
38 #define crypto_cipher_free(c) \
39 FREE_AND_NULL(crypto_cipher_t, crypto_cipher_free_, (c))
42 const char *crypto_cipher_get_key(crypto_cipher_t *env);
45 const char *from,
size_t fromlen);
47 const char *from,
size_t fromlen);
51 char *to,
size_t tolen,
52 const char *from,
size_t fromlen);
54 char *to,
size_t tolen,
55 const char *from,
size_t fromlen);
int crypto_cipher_decrypt_with_iv(const char *key, char *to, size_t tolen, const char *from, size_t fromlen)
crypto_cipher_t * crypto_cipher_new(const char *key)
crypto_cipher_t * crypto_cipher_new_with_bits(const char *key, int bits)
int crypto_cipher_decrypt(crypto_cipher_t *env, char *to, const char *from, size_t fromlen)
int crypto_cipher_encrypt_with_iv(const char *key, char *to, size_t tolen, const char *from, size_t fromlen)
void crypto_cipher_crypt_inplace(crypto_cipher_t *env, char *d, size_t len)
crypto_cipher_t * crypto_cipher_new_with_iv_and_bits(const uint8_t *key, const uint8_t *iv, int bits)
int crypto_cipher_encrypt(crypto_cipher_t *env, char *to, const char *from, size_t fromlen)
void crypto_cipher_free_(crypto_cipher_t *env)
crypto_cipher_t * crypto_cipher_new_with_iv(const char *key, const char *iv)
Integer definitions used throughout Tor.