summaryrefslogtreecommitdiff
path: root/ot_rijndael.h
diff options
context:
space:
mode:
Diffstat (limited to 'ot_rijndael.h')
-rw-r--r--ot_rijndael.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/ot_rijndael.h b/ot_rijndael.h
new file mode 100644
index 0000000..7f57b3f
--- /dev/null
+++ b/ot_rijndael.h
@@ -0,0 +1,20 @@
1/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
2 It is considered beerware. Prost. Skol. Cheers or whatever.
3
4 The rijndael implementation was taken from
5
6 http://www.cs.ucdavis.edu/~rogaway/ocb/ocb-ref/rijndael-alg-fst.c
7
8 and modified to work with 128 bits (this is 10 rounds) only.
9
10 $id$ */
11
12#ifndef __OT_RIJNDAEL_H__
13#define __OT_RIJNDAEL_H__
14
15#include <stdint.h>
16
17int rijndaelKeySetupEnc128(uint32_t rk[44], const uint8_t cipherKey[] );
18void rijndaelEncrypt128(const uint32_t rk[44], const uint8_t pt[16], uint8_t ct[16]);
19
20#endif