1 /*
2  * The internal definitions
3  *
4  * Copyright (C) 2017-2020, Joachim Metz <joachim.metz@gmail.com>
5  *
6  * Refer to AUTHORS for acknowledgements.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
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  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #if !defined( LIBFCRYPTO_INTERNAL_DEFINITIONS_H )
23 #define LIBFCRYPTO_INTERNAL_DEFINITIONS_H
24 
25 #include <common.h>
26 #include <types.h>
27 
28 /* Define HAVE_LOCAL_LIBFCRYPTO for local use of libfcrypto
29  */
30 #if !defined( HAVE_LOCAL_LIBFCRYPTO )
31 #include <libfcrypto/definitions.h>
32 
33 /* The definitions in <libfcrypto/definitions.h> are copied here
34  * for local use of libfcrypto
35  */
36 #else
37 #include <byte_stream.h>
38 
39 #define LIBFCRYPTO_VERSION			20200104
40 
41 /* The version string
42  */
43 #define LIBFCRYPTO_VERSION_STRING		"20200104"
44 
45 /* The RC4 crypt modes
46  */
47 enum LIBFCRYPTO_RC4_CRYPT_MODES
48 {
49 	LIBFCRYPTO_RC4_CRYPT_MODE_DECRYPT	= 0,
50 	LIBFCRYPTO_RC4_CRYPT_MODE_ENCRYPT	= 1
51 };
52 
53 /* The Serpent crypt modes
54  */
55 enum LIBFCRYPTO_SERPENT_CRYPT_MODES
56 {
57 	LIBFCRYPTO_SERPENT_CRYPT_MODE_DECRYPT	= 0,
58 	LIBFCRYPTO_SERPENT_CRYPT_MODE_ENCRYPT	= 1
59 };
60 
61 #endif /* !defined( HAVE_LOCAL_LIBFCRYPTO ) */
62 
63 #endif /* !defined( LIBFCRYPTO_INTERNAL_DEFINITIONS_H ) */
64 
65