source: asp3_tinet_ecnl_arm/trunk/wolfssl-3.12.2/cyassl/ctaocrypt/settings_comp.h@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 2.1 KB
Line 
1/* settings_comp.h
2 *
3 * Copyright (C) 2006-2017 wolfSSL Inc.
4 *
5 * This file is part of wolfSSL.
6 *
7 * wolfSSL is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * wolfSSL is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20 */
21
22
23#ifndef CTAO_CRYPT_SETTINGS_C_H
24#define CTAO_CRYPT_SETTINGS_C_H
25
26
27/* since fips overrides rsa.h map compatibility here */
28#if !defined(NO_RSA)
29 #ifdef WOLFSSL_KEY_GEN
30 #define RsaKeyToDer wc_RsaKeyToDer
31 #endif
32
33 #define RsaPrivateKeyDecode wc_RsaPrivateKeyDecode
34 #define RsaPublicKeyDecode wc_RsaPublicKeyDecode
35 #define RsaPublicKeyDecodeRaw wc_RsaPublicKeyDecodeRaw
36#endif /* have rsa and HAVE_FIPS */
37
38/* Macro redefinitions for compatibility */
39#ifdef HAVE_NTRU
40 #define MakeNtruCert wc_MakeNtruCert
41#endif
42#if defined(WOLFSSL_SHA512) && !defined(CYASSL_SHA512)
43 #define CYASSL_SHA512
44#endif
45#if defined(WOLFSSL_SHA384) && !defined(CYASSL_SHA384)
46 #define CYASSL_SHA384
47#endif
48#if defined(WOLFSSL_LEANPSK) && !defined(CYASSL_LEANPSK)
49 #define CYASSL_LEANPSK
50#endif
51#if defined(NO_WOLFSSL_MEMORY) && !defined(NO_CYASSL_MEMORY)
52 #define NO_CYASSL_MEMORY
53#endif
54#if defined(WOLFSSL_KEY_GEN) && !defined(CYASSL_KEY_GEN)
55 #define CYASSL_KEY_GEN
56#endif
57
58/* AES */
59#if defined(WOLFSSL_AES_DIRECT) && !defined(CYASSL_AES_DIRECT)
60 #define CYASSL_AES_DIRECT
61#endif
62#if defined(WOLFSSL_AES_COUNTER) && !defined(CYASSL_AES_COUNTER)
63 #define CYASSL_AES_COUNTER
64#endif
65
66/* DES */
67#if defined(WOLFSSL_DES_ECB) && !defined(CYASSL_DES_ECB)
68 #define CYASSL_DES_ECB
69#endif
70
71#endif /* CTAO_CRYPT_SETTINGS_C_H */
72
Note: See TracBrowser for help on using the repository browser.