crypto_legacy.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-2023 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.2.4
  29. **/
  30. #ifndef _CRYPTO_LEGACY_H
  31. #define _CRYPTO_LEGACY_H
  32. //Deprecated functions
  33. #define mpiReadRaw(r, data, length) mpiImport(r, data, length, MPI_FORMAT_BIG_ENDIAN)
  34. #define mpiWriteRaw(a, data, length) mpiExport(a, data, length, MPI_FORMAT_BIG_ENDIAN)
  35. #ifdef CURVE25519_SUPPORT
  36. #define X25519_SUPPORT CURVE25519_SUPPORT
  37. #endif
  38. #ifdef CURVE448_SUPPORT
  39. #define X448_SUPPORT CURVE448_SUPPORT
  40. #endif
  41. #define ecdsaGenerateKeyPair ecGenerateKeyPair
  42. #define ecdsaGeneratePrivateKey ecGeneratePrivateKey
  43. #define ecdsaGeneratePublicKey ecGeneratePublicKey
  44. #define MAX_HASH_CONTEXT_SIZE sizeof(HashContext)
  45. #define MAX_CIPHER_CONTEXT_SIZE sizeof(CipherContext)
  46. #ifdef SAMD51_CRYPTO_PUKCC_SUPPORT
  47. #define SAMD51_CRYPTO_PKC_SUPPORT SAMD51_CRYPTO_PUKCC_SUPPORT
  48. #endif
  49. #ifdef SAME54_CRYPTO_PUKCC_SUPPORT
  50. #define SAME54_CRYPTO_PKC_SUPPORT SAME54_CRYPTO_PUKCC_SUPPORT
  51. #endif
  52. #define yarrowRelease yarrowDeinit
  53. #endif