2007-12-12 22:09:01 +01:00
|
|
|
/* Copyright (c) 2003, Roger Dingledine
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2016-02-27 18:48:19 +01:00
|
|
|
* Copyright (c) 2007-2016, The Tor Project, Inc. */
|
2003-06-30 21:18:12 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/* Implements a minimal interface to counter-mode AES. */
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_AES_H
|
|
|
|
#define TOR_AES_H
|
2003-06-30 21:18:12 +02:00
|
|
|
|
2004-05-10 09:54:13 +02:00
|
|
|
/**
|
|
|
|
* \file aes.h
|
|
|
|
* \brief Headers for aes.c
|
|
|
|
*/
|
|
|
|
|
2003-06-30 21:18:12 +02:00
|
|
|
typedef struct aes_cnt_cipher aes_cnt_cipher_t;
|
|
|
|
|
2016-09-16 15:51:51 +02:00
|
|
|
aes_cnt_cipher_t* aes_new_cipher(const uint8_t *key, const uint8_t *iv,
|
|
|
|
int key_bits);
|
2012-01-18 21:53:30 +01:00
|
|
|
void aes_cipher_free(aes_cnt_cipher_t *cipher);
|
2008-02-07 17:10:33 +01:00
|
|
|
void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len);
|
2003-06-30 21:18:12 +02:00
|
|
|
|
2011-11-21 03:20:31 +01:00
|
|
|
int evaluate_evp_for_aes(int force_value);
|
2012-01-09 23:40:11 +01:00
|
|
|
int evaluate_ctr_for_aes(void);
|
2011-11-21 03:20:31 +01:00
|
|
|
|
2003-06-30 21:18:12 +02:00
|
|
|
#endif
|
2016-02-06 20:00:24 +01:00
|
|
|
|