Merged silc_1_0_branch to trunk.
[silc.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.2  2005/05/10 18:31:17  priikone
23  *      Merged silc_1_0_branch to trunk.
24  *
25  * Revision 1.1.1.1.4.1  2005/04/30 15:31:26  priikone
26  *      Header changes.
27  *
28  * Revision 1.1.1.1  2000/06/27 11:36:54  priikone
29  *      Importet from internal CVS/Added Log headers.
30  *
31  *
32  */
33
34 #ifndef NONE_H
35 #define NONE_H
36
37 /* 
38  * SILC Crypto API for None cipher (ie. no cipher) :)
39  */
40
41 SILC_CIPHER_API_SET_KEY(none);
42 SILC_CIPHER_API_SET_KEY_WITH_STRING(none);
43 SILC_CIPHER_API_CONTEXT_LEN(none);
44 SILC_CIPHER_API_ENCRYPT_CBC(none);
45 SILC_CIPHER_API_DECRYPT_CBC(none);
46
47 #endif