| # Copyright 2021 The Pigweed Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| # use this file except in compliance with the License. You may obtain a copy of |
| # the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| # License for the specific language governing permissions and limitations under |
| # the License. |
| |
| mbedtls_sources = [ |
| "src/library/aes.c", |
| "src/library/aesni.c", |
| "src/library/arc4.c", |
| "src/library/aria.c", |
| "src/library/asn1parse.c", |
| "src/library/asn1write.c", |
| "src/library/base64.c", |
| "src/library/bignum.c", |
| "src/library/blowfish.c", |
| "src/library/camellia.c", |
| "src/library/ccm.c", |
| "src/library/certs.c", |
| "src/library/chacha20.c", |
| "src/library/chachapoly.c", |
| "src/library/cipher.c", |
| "src/library/cipher_wrap.c", |
| "src/library/cmac.c", |
| "src/library/ctr_drbg.c", |
| "src/library/debug.c", |
| "src/library/des.c", |
| "src/library/dhm.c", |
| "src/library/ecdh.c", |
| "src/library/ecdsa.c", |
| "src/library/ecjpake.c", |
| "src/library/ecp.c", |
| "src/library/ecp_curves.c", |
| "src/library/entropy.c", |
| "src/library/entropy_poll.c", |
| "src/library/error.c", |
| "src/library/gcm.c", |
| "src/library/havege.c", |
| "src/library/hkdf.c", |
| "src/library/hmac_drbg.c", |
| "src/library/md.c", |
| "src/library/md2.c", |
| "src/library/md4.c", |
| "src/library/md5.c", |
| "src/library/memory_buffer_alloc.c", |
| "src/library/net_sockets.c", |
| "src/library/nist_kw.c", |
| "src/library/oid.c", |
| "src/library/padlock.c", |
| "src/library/pem.c", |
| "src/library/pk.c", |
| "src/library/pk_wrap.c", |
| "src/library/pkcs11.c", |
| "src/library/pkcs12.c", |
| "src/library/pkcs5.c", |
| "src/library/pkparse.c", |
| "src/library/pkwrite.c", |
| "src/library/platform.c", |
| "src/library/platform_util.c", |
| "src/library/poly1305.c", |
| "src/library/psa_crypto.c", |
| "src/library/psa_crypto_driver_wrappers.c", |
| "src/library/psa_crypto_se.c", |
| "src/library/psa_crypto_slot_management.c", |
| "src/library/psa_crypto_storage.c", |
| "src/library/psa_its_file.c", |
| "src/library/ripemd160.c", |
| "src/library/rsa.c", |
| "src/library/rsa_internal.c", |
| "src/library/sha1.c", |
| "src/library/sha256.c", |
| "src/library/sha512.c", |
| "src/library/ssl_cache.c", |
| "src/library/ssl_ciphersuites.c", |
| "src/library/ssl_cli.c", |
| "src/library/ssl_cookie.c", |
| "src/library/ssl_msg.c", |
| "src/library/ssl_srv.c", |
| "src/library/ssl_ticket.c", |
| "src/library/ssl_tls.c", |
| "src/library/ssl_tls13_keys.c", |
| "src/library/threading.c", |
| "src/library/timing.c", |
| "src/library/version.c", |
| "src/library/version_features.c", |
| "src/library/x509.c", |
| "src/library/x509_create.c", |
| "src/library/x509_crl.c", |
| "src/library/x509_crt.c", |
| "src/library/x509_csr.c", |
| "src/library/x509write_crt.c", |
| "src/library/x509write_csr.c", |
| "src/library/xtea.c", |
| ] |