crypto_legacy.h
Go to the documentation of this file.
1 /**
2  * @file crypto_legacy.h
3  * @brief Legacy definitions
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneCRYPTO Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.0
29  **/
30 
31 #ifndef _CRYPTO_LEGACY_H
32 #define _CRYPTO_LEGACY_H
33 
34 //Deprecated functions
35 #define mpiReadRaw(r, data, length) mpiImport(r, data, length, MPI_FORMAT_BIG_ENDIAN)
36 #define mpiWriteRaw(a, data, length) mpiExport(a, data, length, MPI_FORMAT_BIG_ENDIAN)
37 
38 #ifdef CURVE25519_SUPPORT
39  #define X25519_SUPPORT CURVE25519_SUPPORT
40 #endif
41 
42 #ifdef CURVE448_SUPPORT
43  #define X448_SUPPORT CURVE448_SUPPORT
44 #endif
45 
46 #define ecdsaGenerateKeyPair ecGenerateKeyPair
47 #define ecdsaGeneratePrivateKey ecGeneratePrivateKey
48 #define ecdsaGeneratePublicKey ecGeneratePublicKey
49 
50 #define MAX_HASH_CONTEXT_SIZE sizeof(HashContext)
51 #define MAX_CIPHER_CONTEXT_SIZE sizeof(CipherContext)
52 
53 #ifdef SAMD51_CRYPTO_PUKCC_SUPPORT
54  #define SAMD51_CRYPTO_PKC_SUPPORT SAMD51_CRYPTO_PUKCC_SUPPORT
55 #endif
56 
57 #ifdef SAME54_CRYPTO_PUKCC_SUPPORT
58  #define SAME54_CRYPTO_PKC_SUPPORT SAME54_CRYPTO_PUKCC_SUPPORT
59 #endif
60 
61 #define yarrowRelease yarrowDeinit
62 
63 #define X509CertificateInfo X509CertInfo
64 #define X509SignatureAlgoId X509SignAlgoId
65 
66 #endif