aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypt_ops/aes.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-21 12:46:11 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-21 13:14:14 -0400
commit25ccfff86a5b29c9c1ec9b3d01fe1dc796e9afa0 (patch)
tree1c23ec9dd2cea5d00e4262fa4574ffdb9e250aa7 /src/lib/crypt_ops/aes.h
parent49d7c9ce53daa13daae59eedceb07d28e06e4395 (diff)
downloadtor-25ccfff86a5b29c9c1ec9b3d01fe1dc796e9afa0.tar.gz
tor-25ccfff86a5b29c9c1ec9b3d01fe1dc796e9afa0.zip
Split crypto and tls libraries into directories
I am calling the crypto library "crypt_ops", since I want higher-level crypto things to be separated from lower-level ones. This library will hold only the low-level ones, once we have it refactored.
Diffstat (limited to 'src/lib/crypt_ops/aes.h')
-rw-r--r--src/lib/crypt_ops/aes.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/crypt_ops/aes.h b/src/lib/crypt_ops/aes.h
new file mode 100644
index 0000000000..e1287d330e
--- /dev/null
+++ b/src/lib/crypt_ops/aes.h
@@ -0,0 +1,29 @@
+/* Copyright (c) 2003, Roger Dingledine
+ * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
+ * Copyright (c) 2007-2018, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/* Implements a minimal interface to counter-mode AES. */
+
+#ifndef TOR_AES_H
+#define TOR_AES_H
+
+/**
+ * \file aes.h
+ * \brief Headers for aes.c
+ */
+
+typedef struct aes_cnt_cipher aes_cnt_cipher_t;
+
+aes_cnt_cipher_t* aes_new_cipher(const uint8_t *key, const uint8_t *iv,
+ int key_bits);
+void aes_cipher_free_(aes_cnt_cipher_t *cipher);
+#define aes_cipher_free(cipher) \
+ FREE_AND_NULL(aes_cnt_cipher_t, aes_cipher_free_, (cipher))
+void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len);
+
+int evaluate_evp_for_aes(int force_value);
+int evaluate_ctr_for_aes(void);
+
+#endif /* !defined(TOR_AES_H) */
+