source.bmx 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. '
  2. ' Copyright 2018-2023 Bruce A Henderson
  3. '
  4. ' Licensed under the Apache License, Version 2.0 (the "License");
  5. ' you may not use this file except in compliance with the License.
  6. ' You may obtain a copy of the License at
  7. '
  8. ' http://www.apache.org/licenses/LICENSE-2.0
  9. '
  10. ' Unless required by applicable law or agreed to in writing, software
  11. ' distributed under the License is distributed on an "AS IS" BASIS,
  12. ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. ' See the License for the specific language governing permissions and
  14. ' limitations under the License.
  15. '
  16. SuperStrict
  17. Import "mbedtls/include/*.h"
  18. Import "mbedtls/library/asn1write.c"
  19. Import "mbedtls/library/base64.c"
  20. Import "mbedtls/library/ctr_drbg.c"
  21. Import "mbedtls/library/debug.c"
  22. Import "mbedtls/library/dhm.c"
  23. Import "mbedtls/library/ecdh.c"
  24. Import "mbedtls/library/ecdsa.c"
  25. Import "mbedtls/library/ecp.c"
  26. Import "mbedtls/library/ecp_curves.c"
  27. Import "mbedtls/library/entropy.c"
  28. Import "mbedtls/library/entropy_poll.c"
  29. Import "mbedtls/library/error.c"
  30. Import "mbedtls/library/hmac_drbg.c"
  31. Import "mbedtls/library/net_sockets.c"
  32. Import "mbedtls/library/pem.c"
  33. Import "mbedtls/library/pk.c"
  34. Import "mbedtls/library/pk_wrap.c"
  35. Import "mbedtls/library/pkcs12.c"
  36. Import "mbedtls/library/pkparse.c"
  37. Import "mbedtls/library/pkwrite.c"
  38. Import "mbedtls/library/rsa.c"
  39. Import "mbedtls/library/rsa_alt_helpers.c"
  40. Import "mbedtls/library/ssl_ciphersuites.c"
  41. Import "mbedtls/library/ssl_cli.c"
  42. Import "mbedtls/library/ssl_msg.c"
  43. Import "mbedtls/library/ssl_srv.c"
  44. Import "mbedtls/library/ssl_tls.c"
  45. Import "mbedtls/library/version_features.c"
  46. Import "mbedtls/library/version.c"
  47. Import "mbedtls/library/x509.c"
  48. Import "mbedtls/library/x509_crl.c"
  49. Import "mbedtls/library/x509_crt.c"
  50. Import "mbedtls/library/x509_csr.c"
  51. Import "glue.c"