Major restructuring of the internals of SILC Cipher API
[crypto.git] / lib / silccrypt / aes.h
index 97d684d2c0817f247cbae4d1205237731c20ab07..f573638b2c003a57d01a0e1922e5ed4b3b70c6db 100644 (file)
@@ -1,51 +1,34 @@
 /*
 
-  rijndael.h
+  aes.h
 
-  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
+  Author: Pekka Riikonen <priikone@silcnet.org>
 
-  Copyright (C) 1997 - 2000 Pekka Riikonen
+  Copyright (C) 1997 - 2008 Pekka Riikonen
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
-  (at your option) any later version.
-  
+  the Free Software Foundation; version 2 of the License.
+
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
 
 */
-/*
- * $Id$
- * $Log$
- * Revision 1.1  2001/02/26 17:32:08  priikone
- *     updates.
- *
- * Revision 1.2  2000/10/02 18:31:46  priikone
- *     Added rijndael (AES) to cipher list.
- *
- * Revision 1.1.1.1  2000/06/27 11:36:55  priikone
- *     Importet from internal CVS/Added Log headers.
- *
- *
- */
 
-#ifndef RIJNDAEL_H
-#define RIJNDAEL_H
+#ifndef AES_H
+#define AES_H
 
-#include "rijndael_internal.h"
-
-/* 
- * SILC Crypto API for Rijndael
+/*
+ * SILC Crypto API for AES
  */
 
 SILC_CIPHER_API_SET_KEY(aes);
-SILC_CIPHER_API_SET_KEY_WITH_STRING(aes);
-SILC_CIPHER_API_CONTEXT_LEN(aes);
-SILC_CIPHER_API_ENCRYPT_CBC(aes);
-SILC_CIPHER_API_DECRYPT_CBC(aes);
-
+SILC_CIPHER_API_SET_IV(aes);
+SILC_CIPHER_API_ENCRYPT(aes);
+SILC_CIPHER_API_DECRYPT(aes);
+SILC_CIPHER_API_INIT(aes);
+SILC_CIPHER_API_UNINIT(aes);
 
 #endif