4 * \brief Cipher wrappers.
6 * \author Adriaan de Jong <dejong@fox-it.com>
8 * Copyright (C) 2006-2013, Brainspark B.V.
10 * This file is part of PolarSSL (http://www.polarssl.org)
11 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
13 * All rights reserved.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #ifndef POLARSSL_CIPHER_WRAP_H
30 #define POLARSSL_CIPHER_WRAP_H
32 #if !defined(POLARSSL_CONFIG_FILE)
35 #include POLARSSL_CONFIG_FILE
46 const cipher_info_t
*info
;
47 } cipher_definition_t
;
49 extern const cipher_definition_t cipher_definitions
[];
51 extern int supported_ciphers
[];
57 #endif /* POLARSSL_CIPHER_WRAP_H */