crypto.h 435 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2019-05-17 tyx the first version
  9. */
  10. #ifndef __CRYPTO_H__
  11. #define __CRYPTO_H__
  12. #include <rtthread.h>
  13. #include <hwcrypto.h>
  14. #include <hw_symmetric.h>
  15. #include <hw_rng.h>
  16. #include <hw_hash.h>
  17. #include <hw_crc.h>
  18. #include <hw_gcm.h>
  19. #include <hw_bignum.h>
  20. #endif