-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d78b32
commit 998c6fe
Showing
7 changed files
with
239 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
Building Bibledit | ||
================= | ||
|
||
MbedTLS | ||
======= | ||
|
||
The source tree contains two versions of MbedTLS. | ||
* MbedTLS 2.x in folder mbedtls2. | ||
* MbedTLS 3.x in folder mbedtls. | ||
|
||
Switching between the two versions can be done as follows. | ||
1. Put the desired version of MbedTLS in folder "mbedtls". | ||
This may involve a rename operation. | ||
2. Put the relevant source code in Makefile.am. | ||
The source code is listed below for both versions. | ||
|
||
Version 2 source code: | ||
|
||
mbedtls/aes.c \ | ||
mbedtls/arc4.c \ | ||
mbedtls/asn1parse.c \ | ||
mbedtls/asn1write.c \ | ||
mbedtls/base64.c \ | ||
mbedtls/bignum.c \ | ||
mbedtls/blowfish.c \ | ||
mbedtls/camellia.c \ | ||
mbedtls/ccm.c \ | ||
mbedtls/certs.c \ | ||
mbedtls/chacha20.c \ | ||
mbedtls/chachapoly.c \ | ||
mbedtls/cipher.c \ | ||
mbedtls/cipher_wrap.c \ | ||
mbedtls/ctr_drbg.c \ | ||
mbedtls/debug.c \ | ||
mbedtls/des.c \ | ||
mbedtls/dhm.c \ | ||
mbedtls/ecdh.c \ | ||
mbedtls/ecdsa.c \ | ||
mbedtls/ecp.c \ | ||
mbedtls/ecp_curves.c \ | ||
mbedtls/entropy.c \ | ||
mbedtls/entropy_poll.c \ | ||
mbedtls/error.c \ | ||
mbedtls/gcm.c \ | ||
mbedtls/hmac_drbg.c \ | ||
mbedtls/md.c \ | ||
mbedtls/md5.c \ | ||
mbedtls/md_wrap.c \ | ||
mbedtls/net_sockets.c \ | ||
mbedtls/oid.c \ | ||
mbedtls/pem.c \ | ||
mbedtls/pk.c \ | ||
mbedtls/pk_wrap.c \ | ||
mbedtls/pkcs12.c \ | ||
mbedtls/pkcs5.c \ | ||
mbedtls/pkparse.c \ | ||
mbedtls/pkwrite.c \ | ||
mbedtls/platform_util.c \ | ||
mbedtls/platform.c \ | ||
mbedtls/poly1305.c \ | ||
mbedtls/ripemd160.c \ | ||
mbedtls/rsa.c \ | ||
mbedtls/rsa_internal.c \ | ||
mbedtls/sha1.c \ | ||
mbedtls/sha256.c \ | ||
mbedtls/sha512.c \ | ||
mbedtls/ssl_cache.c \ | ||
mbedtls/ssl_ciphersuites.c \ | ||
mbedtls/ssl_cli.c \ | ||
mbedtls/ssl_cookie.c \ | ||
mbedtls/ssl_srv.c \ | ||
mbedtls/ssl_ticket.c \ | ||
mbedtls/ssl_tls.c \ | ||
mbedtls/threading.c \ | ||
mbedtls/timing.c \ | ||
mbedtls/version.c \ | ||
mbedtls/version_features.c \ | ||
mbedtls/x509.c \ | ||
mbedtls/x509_create.c \ | ||
mbedtls/x509_crl.c \ | ||
mbedtls/x509_crt.c \ | ||
mbedtls/x509_csr.c \ | ||
mbedtls/x509write_crt.c \ | ||
mbedtls/x509write_csr.c \ | ||
mbedtls/xtea.c \ | ||
|
||
Version 3 source code: | ||
|
||
mbedtls/aes.c \ | ||
mbedtls/aesce.c \ | ||
mbedtls/aesni.c \ | ||
mbedtls/aria.c \ | ||
mbedtls/asn1parse.c \ | ||
mbedtls/asn1write.c \ | ||
mbedtls/base64.c \ | ||
mbedtls/bignum.c \ | ||
mbedtls/bignum_core.c \ | ||
mbedtls/bignum_mod.c \ | ||
mbedtls/bignum_mod_raw.c \ | ||
mbedtls/block_cipher.c \ | ||
mbedtls/camellia.c \ | ||
mbedtls/ccm.c \ | ||
mbedtls/chacha20.c \ | ||
mbedtls/chachapoly.c \ | ||
mbedtls/cipher.c \ | ||
mbedtls/cipher_wrap.c \ | ||
mbedtls/cmac.c \ | ||
mbedtls/constant_time.c \ | ||
mbedtls/ctr_drbg.c \ | ||
mbedtls/debug.c \ | ||
mbedtls/des.c \ | ||
mbedtls/dhm.c \ | ||
mbedtls/ecdh.c \ | ||
mbedtls/ecdsa.c \ | ||
mbedtls/ecjpake.c \ | ||
mbedtls/ecp.c \ | ||
mbedtls/ecp_curves.c \ | ||
mbedtls/ecp_curves_new.c \ | ||
mbedtls/entropy.c \ | ||
mbedtls/entropy_poll.c \ | ||
mbedtls/error.c \ | ||
mbedtls/gcm.c \ | ||
mbedtls/hkdf.c \ | ||
mbedtls/hmac_drbg.c \ | ||
mbedtls/lmots.c \ | ||
mbedtls/lms.c \ | ||
mbedtls/md.c \ | ||
mbedtls/md5.c \ | ||
mbedtls/memory_buffer_alloc.c \ | ||
mbedtls/mps_reader.c \ | ||
mbedtls/mps_trace.c \ | ||
mbedtls/net_sockets.c \ | ||
mbedtls/nist_kw.c \ | ||
mbedtls/oid.c \ | ||
mbedtls/padlock.c \ | ||
mbedtls/pem.c \ | ||
mbedtls/pk.c \ | ||
mbedtls/pk_ecc.c \ | ||
mbedtls/pk_wrap.c \ | ||
mbedtls/pkcs12.c \ | ||
mbedtls/pkcs5.c \ | ||
mbedtls/pkcs7.c \ | ||
mbedtls/pkparse.c \ | ||
mbedtls/pkwrite.c \ | ||
mbedtls/platform.c \ | ||
mbedtls/platform_util.c \ | ||
mbedtls/poly1305.c \ | ||
mbedtls/psa_crypto.c \ | ||
mbedtls/psa_crypto_aead.c \ | ||
mbedtls/psa_crypto_cipher.c \ | ||
mbedtls/psa_crypto_client.c \ | ||
mbedtls/psa_crypto_driver_wrappers_no_static.c \ | ||
mbedtls/psa_crypto_ecp.c \ | ||
mbedtls/psa_crypto_ffdh.c \ | ||
mbedtls/psa_crypto_hash.c \ | ||
mbedtls/psa_crypto_mac.c \ | ||
mbedtls/psa_crypto_pake.c \ | ||
mbedtls/psa_crypto_rsa.c \ | ||
mbedtls/psa_crypto_se.c \ | ||
mbedtls/psa_crypto_slot_management.c \ | ||
mbedtls/psa_crypto_storage.c \ | ||
mbedtls/psa_its_file.c \ | ||
mbedtls/psa_util.c \ | ||
mbedtls/ripemd160.c \ | ||
mbedtls/rsa.c \ | ||
mbedtls/rsa_alt_helpers.c \ | ||
mbedtls/sha1.c \ | ||
mbedtls/sha256.c \ | ||
mbedtls/sha3.c \ | ||
mbedtls/sha512.c \ | ||
mbedtls/ssl_cache.c \ | ||
mbedtls/ssl_ciphersuites.c \ | ||
mbedtls/ssl_client.c \ | ||
mbedtls/ssl_cookie.c \ | ||
mbedtls/ssl_debug_helpers_generated.c \ | ||
mbedtls/ssl_msg.c \ | ||
mbedtls/ssl_ticket.c \ | ||
mbedtls/ssl_tls.c \ | ||
mbedtls/ssl_tls12_client.c \ | ||
mbedtls/ssl_tls12_server.c \ | ||
mbedtls/ssl_tls13_client.c \ | ||
mbedtls/ssl_tls13_generic.c \ | ||
mbedtls/ssl_tls13_keys.c \ | ||
mbedtls/ssl_tls13_server.c \ | ||
mbedtls/threading.c \ | ||
mbedtls/timing.c \ | ||
mbedtls/version.c \ | ||
mbedtls/version_features.c \ | ||
mbedtls/x509.c \ | ||
mbedtls/x509_create.c \ | ||
mbedtls/x509_crl.c \ | ||
mbedtls/x509_crt.c \ | ||
mbedtls/x509_csr.c \ | ||
mbedtls/x509write.c \ | ||
mbedtls/x509write_crt.c \ | ||
mbedtls/x509write_csr.c \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,5 +95,3 @@ | |
#define HAVE_TINY_JOURNAL 1 | ||
#undef RUN_SECURE_SERVER | ||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters