protocomm_security1.h 530 B

123456789101112131415161718192021222324252627
  1. /*
  2. * SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #include <protocomm_security.h>
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #if CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1
  12. /**
  13. * @brief Protocomm security version 1 implementation
  14. *
  15. * This is a full fledged security implementation using
  16. * Curve25519 key exchange and AES-256-CTR encryption
  17. */
  18. extern const protocomm_security_t protocomm_security1;
  19. #endif
  20. #ifdef __cplusplus
  21. }
  22. #endif