Added assembler AES for x86 and x86_64.
[crypto.git] / lib / silccrypt / none.h
1 /*
2
3   none.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2000 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19 /*
20  * $Id$
21  * $Log$
22  * Revision 1.3  2006/12/15 15:22:48  priikone
23  *      Added assembler AES for x86 and x86_64.
24  *      Simplified Cipher implementation API.
25  *
26  * Revision 1.2  2005/05/10 18:31:17  priikone
27  *      Merged silc_1_0_branch to trunk.
28  *
29  * Revision 1.1.1.1.4.1  2005/04/30 15:31:26  priikone
30  *      Header changes.
31  *
32  * Revision 1.1.1.1  2000/06/27 11:36:54  priikone
33  *      Importet from internal CVS/Added Log headers.
34  *
35  *
36  */
37
38 #ifndef NONE_H
39 #define NONE_H
40
41 /*
42  * SILC Crypto API for None cipher (ie. no cipher) :)
43  */
44
45 SILC_CIPHER_API_SET_KEY(none);
46 SILC_CIPHER_API_CONTEXT_LEN(none);
47 SILC_CIPHER_API_ENCRYPT_CBC(none);
48 SILC_CIPHER_API_DECRYPT_CBC(none);
49
50 #endif