protocomm_security0.h 525 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_0
  12. /**
  13. * @brief Protocomm security version 0 implementation
  14. *
  15. * This is a simple implementation to be used when no
  16. * security is required for the protocomm instance
  17. */
  18. extern const protocomm_security_t protocomm_security0;
  19. #endif
  20. #ifdef __cplusplus
  21. }
  22. #endif