aboutsummaryrefslogtreecommitdiff
path: root/src/common/aes.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-06-30 19:18:12 +0000
committerNick Mathewson <nickm@torproject.org>2003-06-30 19:18:12 +0000
commita0f15883187da1a381e5a5e1495373b0d30ff636 (patch)
tree0536127960f969c959b7d544a3a19b54e5850b35 /src/common/aes.h
parent517b418b5cfe046bcabd743ed0293452003c7bc3 (diff)
downloadtor-a0f15883187da1a381e5a5e1495373b0d30ff636.tar
tor-a0f15883187da1a381e5a5e1495373b0d30ff636.tar.gz
Add a the public-domain AES implementation, with a minimal counter-mode wrapper.
svn:r361
Diffstat (limited to 'src/common/aes.h')
-rw-r--r--src/common/aes.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/common/aes.h b/src/common/aes.h
new file mode 100644
index 000000000..0b43619bc
--- /dev/null
+++ b/src/common/aes.h
@@ -0,0 +1,23 @@
+/* Copyright 2003 Roger Dingledine */
+/* See LICENSE for licensing information */
+/* $Id$ */
+
+/* Implements a minimal interface to counter-mode AES. */
+
+#ifndef __AES_H
+#define __AES_H
+
+#include <stdint.h>
+
+struct aes_cnt_cipher;
+typedef struct aes_cnt_cipher aes_cnt_cipher_t;
+
+aes_cnt_cipher_t* aes_new_cipher();
+void aes_free_cipher(aes_cnt_cipher_t *cipher);
+void aes_set_key(aes_cnt_cipher_t *cipher, unsigned char *key, int key_bits);
+void aes_crypt(aes_cnt_cipher_t *cipher, char *input, int len, char *output);
+uint64_t aes_get_counter(aes_cnt_cipher_t *cipher);
+void aes_set_counter(aes_cnt_cipher_t *cipher, uint64_t counter);
+void aes_adjust_counter(aes_cnt_cipher_t *cipher, long delta);
+
+#endif