summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile347
-rw-r--r--src/Makefile.nmake365
-rwxr-xr-xsrc/update-libtom.pl4
3 files changed, 360 insertions, 356 deletions
diff --git a/src/Makefile b/src/Makefile
index 9c58478a..2642bcf4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,177 +1,178 @@
-OBJS=ltc/misc/compare_testvector.o ltc/misc/error_to_string.o ltc/misc/copy_or_zeromem.o \
-ltc/misc/crc32.o ltc/misc/burn_stack.o ltc/misc/zeromem.o ltc/misc/mem_neq.o ltc/misc/adler32.o \
-ltc/misc/pkcs12/pkcs12_utf8_to_utf16.o ltc/misc/pkcs12/pkcs12_kdf.o ltc/misc/pbes/pbes1.o \
-ltc/misc/pbes/pbes2.o ltc/misc/pbes/pbes.o ltc/misc/crypt/crypt_unregister_prng.o \
-ltc/misc/crypt/crypt_unregister_cipher.o ltc/misc/crypt/crypt.o ltc/misc/crypt/crypt_find_cipher_any.o \
-ltc/misc/crypt/crypt_prng_descriptor.o ltc/misc/crypt/crypt_constants.o ltc/misc/crypt/crypt_prng_is_valid.o \
-ltc/misc/crypt/crypt_prng_rng_descriptor.o ltc/misc/crypt/crypt_cipher_is_valid.o \
-ltc/misc/crypt/crypt_find_hash_oid.o ltc/misc/crypt/crypt_hash_descriptor.o ltc/misc/crypt/crypt_register_all_ciphers.o \
-ltc/misc/crypt/crypt_register_prng.o ltc/misc/crypt/crypt_register_cipher.o ltc/misc/crypt/crypt_find_hash.o \
-ltc/misc/crypt/crypt_inits.o ltc/misc/crypt/crypt_cipher_descriptor.o ltc/misc/crypt/crypt_register_all_hashes.o \
-ltc/misc/crypt/crypt_find_cipher.o ltc/misc/crypt/crypt_find_hash_id.o ltc/misc/crypt/crypt_ltc_mp_descriptor.o \
-ltc/misc/crypt/crypt_find_cipher_id.o ltc/misc/crypt/crypt_register_hash.o ltc/misc/crypt/crypt_hash_is_valid.o \
-ltc/misc/crypt/crypt_find_prng.o ltc/misc/crypt/crypt_argchk.o ltc/misc/crypt/crypt_sizes.o \
-ltc/misc/crypt/crypt_find_hash_any.o ltc/misc/crypt/crypt_register_all_prngs.o ltc/misc/crypt/crypt_fsa.o \
-ltc/misc/crypt/crypt_unregister_hash.o ltc/misc/bcrypt/bcrypt.o ltc/misc/base64/base64_decode.o \
-ltc/misc/base64/base64_encode.o ltc/misc/pkcs5/pkcs_5_1.o ltc/misc/pkcs5/pkcs_5_2.o \
-ltc/misc/hkdf/hkdf.o ltc/misc/ssh/ssh_decode_sequence_multi.o ltc/misc/ssh/ssh_encode_sequence_multi.o \
-ltc/misc/base16/base16_encode.o ltc/misc/base16/base16_decode.o ltc/misc/padding/padding_pad.o \
-ltc/misc/padding/padding_depad.o ltc/misc/base32/base32_decode.o ltc/misc/base32/base32_encode.o \
-ltc/pk/asn1/der/octet/der_decode_octet_string.o ltc/pk/asn1/der/octet/der_encode_octet_string.o \
-ltc/pk/asn1/der/octet/der_length_octet_string.o ltc/pk/asn1/der/bit/der_length_bit_string.o \
-ltc/pk/asn1/der/bit/der_encode_raw_bit_string.o ltc/pk/asn1/der/bit/der_decode_raw_bit_string.o \
-ltc/pk/asn1/der/bit/der_encode_bit_string.o ltc/pk/asn1/der/bit/der_decode_bit_string.o \
-ltc/pk/asn1/der/object_identifier/der_encode_object_identifier.o ltc/pk/asn1/der/object_identifier/der_decode_object_identifier.o \
-ltc/pk/asn1/der/object_identifier/der_length_object_identifier.o ltc/pk/asn1/der/utf8/der_encode_utf8_string.o \
-ltc/pk/asn1/der/utf8/der_decode_utf8_string.o ltc/pk/asn1/der/utf8/der_length_utf8_string.o \
-ltc/pk/asn1/der/general/der_encode_asn1_identifier.o ltc/pk/asn1/der/general/der_length_asn1_identifier.o \
-ltc/pk/asn1/der/general/der_encode_asn1_length.o ltc/pk/asn1/der/general/der_decode_asn1_identifier.o \
-ltc/pk/asn1/der/general/der_length_asn1_length.o ltc/pk/asn1/der/general/der_decode_asn1_length.o \
-ltc/pk/asn1/der/general/der_asn1_maps.o ltc/pk/asn1/der/generalizedtime/der_decode_generalizedtime.o \
+OBJS=ltc/ciphers/aes/aes.o ltc/ciphers/anubis.o ltc/ciphers/blowfish.o ltc/ciphers/camellia.o \
+ltc/ciphers/cast5.o ltc/ciphers/des.o ltc/ciphers/idea.o ltc/ciphers/kasumi.o ltc/ciphers/khazad.o \
+ltc/ciphers/kseed.o ltc/ciphers/multi2.o ltc/ciphers/noekeon.o ltc/ciphers/rc2.o \
+ltc/ciphers/rc5.o ltc/ciphers/rc6.o ltc/ciphers/safer/safer.o ltc/ciphers/safer/saferp.o \
+ltc/ciphers/serpent.o ltc/ciphers/skipjack.o ltc/ciphers/tea.o ltc/ciphers/twofish/twofish.o \
+ltc/ciphers/xtea.o ltc/encauth/ccm/ccm_add_aad.o ltc/encauth/ccm/ccm_add_nonce.o \
+ltc/encauth/ccm/ccm_done.o ltc/encauth/ccm/ccm_init.o ltc/encauth/ccm/ccm_memory.o \
+ltc/encauth/ccm/ccm_process.o ltc/encauth/ccm/ccm_reset.o ltc/encauth/chachapoly/chacha20poly1305_add_aad.o \
+ltc/encauth/chachapoly/chacha20poly1305_decrypt.o ltc/encauth/chachapoly/chacha20poly1305_done.o \
+ltc/encauth/chachapoly/chacha20poly1305_encrypt.o ltc/encauth/chachapoly/chacha20poly1305_init.o \
+ltc/encauth/chachapoly/chacha20poly1305_memory.o ltc/encauth/chachapoly/chacha20poly1305_setiv.o \
+ltc/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.o ltc/encauth/eax/eax_addheader.o \
+ltc/encauth/eax/eax_decrypt.o ltc/encauth/eax/eax_decrypt_verify_memory.o ltc/encauth/eax/eax_done.o \
+ltc/encauth/eax/eax_encrypt.o ltc/encauth/eax/eax_encrypt_authenticate_memory.o ltc/encauth/eax/eax_init.o \
+ltc/encauth/gcm/gcm_add_aad.o ltc/encauth/gcm/gcm_add_iv.o ltc/encauth/gcm/gcm_done.o \
+ltc/encauth/gcm/gcm_gf_mult.o ltc/encauth/gcm/gcm_init.o ltc/encauth/gcm/gcm_memory.o \
+ltc/encauth/gcm/gcm_mult_h.o ltc/encauth/gcm/gcm_process.o ltc/encauth/gcm/gcm_reset.o \
+ltc/encauth/ocb3/ocb3_add_aad.o ltc/encauth/ocb3/ocb3_decrypt.o ltc/encauth/ocb3/ocb3_decrypt_last.o \
+ltc/encauth/ocb3/ocb3_decrypt_verify_memory.o ltc/encauth/ocb3/ocb3_done.o ltc/encauth/ocb3/ocb3_encrypt.o \
+ltc/encauth/ocb3/ocb3_encrypt_authenticate_memory.o ltc/encauth/ocb3/ocb3_encrypt_last.o \
+ltc/encauth/ocb3/ocb3_init.o ltc/encauth/ocb3/ocb3_int_ntz.o ltc/encauth/ocb3/ocb3_int_xor_blocks.o \
+ltc/hashes/blake2b.o ltc/hashes/blake2s.o ltc/hashes/chc/chc.o ltc/hashes/helper/hash_file.o \
+ltc/hashes/helper/hash_filehandle.o ltc/hashes/helper/hash_memory.o ltc/hashes/helper/hash_memory_multi.o \
+ltc/hashes/md2.o ltc/hashes/md4.o ltc/hashes/md5.o ltc/hashes/rmd128.o ltc/hashes/rmd160.o \
+ltc/hashes/rmd256.o ltc/hashes/rmd320.o ltc/hashes/sha1.o ltc/hashes/sha2/sha224.o \
+ltc/hashes/sha2/sha256.o ltc/hashes/sha2/sha384.o ltc/hashes/sha2/sha512.o ltc/hashes/sha2/sha512_224.o \
+ltc/hashes/sha2/sha512_256.o ltc/hashes/sha3.o ltc/hashes/sha3_test.o ltc/hashes/tiger.o \
+ltc/hashes/whirl/whirl.o ltc/mac/blake2/blake2bmac.o ltc/mac/blake2/blake2bmac_file.o \
+ltc/mac/blake2/blake2bmac_memory.o ltc/mac/blake2/blake2bmac_memory_multi.o ltc/mac/blake2/blake2smac.o \
+ltc/mac/blake2/blake2smac_file.o ltc/mac/blake2/blake2smac_memory.o ltc/mac/blake2/blake2smac_memory_multi.o \
+ltc/mac/f9/f9_done.o ltc/mac/f9/f9_file.o ltc/mac/f9/f9_init.o ltc/mac/f9/f9_memory.o \
+ltc/mac/f9/f9_memory_multi.o ltc/mac/f9/f9_process.o ltc/mac/hmac/hmac_done.o ltc/mac/hmac/hmac_file.o \
+ltc/mac/hmac/hmac_init.o ltc/mac/hmac/hmac_memory.o ltc/mac/hmac/hmac_memory_multi.o \
+ltc/mac/hmac/hmac_process.o ltc/mac/omac/omac_done.o ltc/mac/omac/omac_file.o ltc/mac/omac/omac_init.o \
+ltc/mac/omac/omac_memory.o ltc/mac/omac/omac_memory_multi.o ltc/mac/omac/omac_process.o \
+ltc/mac/pelican/pelican.o ltc/mac/pelican/pelican_memory.o ltc/mac/pmac/pmac_done.o \
+ltc/mac/pmac/pmac_file.o ltc/mac/pmac/pmac_init.o ltc/mac/pmac/pmac_memory.o ltc/mac/pmac/pmac_memory_multi.o \
+ltc/mac/pmac/pmac_ntz.o ltc/mac/pmac/pmac_process.o ltc/mac/pmac/pmac_shift_xor.o \
+ltc/mac/poly1305/poly1305.o ltc/mac/poly1305/poly1305_file.o ltc/mac/poly1305/poly1305_memory.o \
+ltc/mac/poly1305/poly1305_memory_multi.o ltc/mac/xcbc/xcbc_done.o ltc/mac/xcbc/xcbc_file.o \
+ltc/mac/xcbc/xcbc_init.o ltc/mac/xcbc/xcbc_memory.o ltc/mac/xcbc/xcbc_memory_multi.o \
+ltc/mac/xcbc/xcbc_process.o ltc/math/fp/ltc_ecc_fp_mulmod.o ltc/math/ltm_desc.o ltc/math/multi.o \
+ltc/math/radix_to_bin.o ltc/math/rand_bn.o ltc/math/rand_prime.o ltc/math/tfm_desc.o \
+ltc/misc/adler32.o ltc/misc/base16/base16_decode.o ltc/misc/base16/base16_encode.o \
+ltc/misc/base32/base32_decode.o ltc/misc/base32/base32_encode.o ltc/misc/base64/base64_decode.o \
+ltc/misc/base64/base64_encode.o ltc/misc/bcrypt/bcrypt.o ltc/misc/burn_stack.o ltc/misc/compare_testvector.o \
+ltc/misc/copy_or_zeromem.o ltc/misc/crc32.o ltc/misc/crypt/crypt.o ltc/misc/crypt/crypt_argchk.o \
+ltc/misc/crypt/crypt_cipher_descriptor.o ltc/misc/crypt/crypt_cipher_is_valid.o ltc/misc/crypt/crypt_constants.o \
+ltc/misc/crypt/crypt_find_cipher.o ltc/misc/crypt/crypt_find_cipher_any.o ltc/misc/crypt/crypt_find_cipher_id.o \
+ltc/misc/crypt/crypt_find_hash.o ltc/misc/crypt/crypt_find_hash_any.o ltc/misc/crypt/crypt_find_hash_id.o \
+ltc/misc/crypt/crypt_find_hash_oid.o ltc/misc/crypt/crypt_find_prng.o ltc/misc/crypt/crypt_fsa.o \
+ltc/misc/crypt/crypt_hash_descriptor.o ltc/misc/crypt/crypt_hash_is_valid.o ltc/misc/crypt/crypt_inits.o \
+ltc/misc/crypt/crypt_ltc_mp_descriptor.o ltc/misc/crypt/crypt_prng_descriptor.o ltc/misc/crypt/crypt_prng_is_valid.o \
+ltc/misc/crypt/crypt_prng_rng_descriptor.o ltc/misc/crypt/crypt_register_all_ciphers.o \
+ltc/misc/crypt/crypt_register_all_hashes.o ltc/misc/crypt/crypt_register_all_prngs.o \
+ltc/misc/crypt/crypt_register_cipher.o ltc/misc/crypt/crypt_register_hash.o ltc/misc/crypt/crypt_register_prng.o \
+ltc/misc/crypt/crypt_sizes.o ltc/misc/crypt/crypt_unregister_cipher.o ltc/misc/crypt/crypt_unregister_hash.o \
+ltc/misc/crypt/crypt_unregister_prng.o ltc/misc/error_to_string.o ltc/misc/hkdf/hkdf.o \
+ltc/misc/mem_neq.o ltc/misc/padding/padding_depad.o ltc/misc/padding/padding_pad.o \
+ltc/misc/pbes/pbes.o ltc/misc/pbes/pbes1.o ltc/misc/pbes/pbes2.o ltc/misc/pkcs12/pkcs12_kdf.o \
+ltc/misc/pkcs12/pkcs12_utf8_to_utf16.o ltc/misc/pkcs5/pkcs_5_1.o ltc/misc/pkcs5/pkcs_5_2.o \
+ltc/misc/ssh/ssh_decode_sequence_multi.o ltc/misc/ssh/ssh_encode_sequence_multi.o \
+ltc/misc/zeromem.o ltc/modes/cbc/cbc_decrypt.o ltc/modes/cbc/cbc_done.o ltc/modes/cbc/cbc_encrypt.o \
+ltc/modes/cbc/cbc_getiv.o ltc/modes/cbc/cbc_setiv.o ltc/modes/cbc/cbc_start.o ltc/modes/cfb/cfb_decrypt.o \
+ltc/modes/cfb/cfb_done.o ltc/modes/cfb/cfb_encrypt.o ltc/modes/cfb/cfb_getiv.o ltc/modes/cfb/cfb_setiv.o \
+ltc/modes/cfb/cfb_start.o ltc/modes/ctr/ctr_decrypt.o ltc/modes/ctr/ctr_done.o ltc/modes/ctr/ctr_encrypt.o \
+ltc/modes/ctr/ctr_getiv.o ltc/modes/ctr/ctr_setiv.o ltc/modes/ctr/ctr_start.o ltc/modes/ecb/ecb_decrypt.o \
+ltc/modes/ecb/ecb_done.o ltc/modes/ecb/ecb_encrypt.o ltc/modes/ecb/ecb_start.o ltc/modes/ofb/ofb_decrypt.o \
+ltc/modes/ofb/ofb_done.o ltc/modes/ofb/ofb_encrypt.o ltc/modes/ofb/ofb_getiv.o ltc/modes/ofb/ofb_setiv.o \
+ltc/modes/ofb/ofb_start.o ltc/pk/asn1/der/bit/der_decode_bit_string.o ltc/pk/asn1/der/bit/der_decode_raw_bit_string.o \
+ltc/pk/asn1/der/bit/der_encode_bit_string.o ltc/pk/asn1/der/bit/der_encode_raw_bit_string.o \
+ltc/pk/asn1/der/bit/der_length_bit_string.o ltc/pk/asn1/der/boolean/der_decode_boolean.o \
+ltc/pk/asn1/der/boolean/der_encode_boolean.o ltc/pk/asn1/der/boolean/der_length_boolean.o \
+ltc/pk/asn1/der/choice/der_decode_choice.o ltc/pk/asn1/der/custom_type/der_decode_custom_type.o \
+ltc/pk/asn1/der/custom_type/der_encode_custom_type.o ltc/pk/asn1/der/custom_type/der_length_custom_type.o \
+ltc/pk/asn1/der/general/der_asn1_maps.o ltc/pk/asn1/der/general/der_decode_asn1_identifier.o \
+ltc/pk/asn1/der/general/der_decode_asn1_length.o ltc/pk/asn1/der/general/der_encode_asn1_identifier.o \
+ltc/pk/asn1/der/general/der_encode_asn1_length.o ltc/pk/asn1/der/general/der_length_asn1_identifier.o \
+ltc/pk/asn1/der/general/der_length_asn1_length.o ltc/pk/asn1/der/generalizedtime/der_decode_generalizedtime.o \
ltc/pk/asn1/der/generalizedtime/der_encode_generalizedtime.o ltc/pk/asn1/der/generalizedtime/der_length_generalizedtime.o \
-ltc/pk/asn1/der/short_integer/der_length_short_integer.o ltc/pk/asn1/der/short_integer/der_encode_short_integer.o \
-ltc/pk/asn1/der/short_integer/der_decode_short_integer.o ltc/pk/asn1/der/choice/der_decode_choice.o \
-ltc/pk/asn1/der/ia5/der_length_ia5_string.o ltc/pk/asn1/der/ia5/der_encode_ia5_string.o \
-ltc/pk/asn1/der/ia5/der_decode_ia5_string.o ltc/pk/asn1/der/teletex_string/der_decode_teletex_string.o \
-ltc/pk/asn1/der/teletex_string/der_length_teletex_string.o ltc/pk/asn1/der/boolean/der_decode_boolean.o \
-ltc/pk/asn1/der/boolean/der_length_boolean.o ltc/pk/asn1/der/boolean/der_encode_boolean.o \
-ltc/pk/asn1/der/integer/der_length_integer.o ltc/pk/asn1/der/integer/der_decode_integer.o \
-ltc/pk/asn1/der/integer/der_encode_integer.o ltc/pk/asn1/der/custom_type/der_encode_custom_type.o \
-ltc/pk/asn1/der/custom_type/der_decode_custom_type.o ltc/pk/asn1/der/custom_type/der_length_custom_type.o \
-ltc/pk/asn1/der/set/der_encode_setof.o ltc/pk/asn1/der/set/der_encode_set.o ltc/pk/asn1/der/sequence/der_encode_sequence_ex.o \
-ltc/pk/asn1/der/sequence/der_sequence_shrink.o ltc/pk/asn1/der/sequence/der_length_sequence.o \
-ltc/pk/asn1/der/sequence/der_decode_sequence_ex.o ltc/pk/asn1/der/sequence/der_decode_sequence_multi.o \
-ltc/pk/asn1/der/sequence/der_decode_sequence_flexi.o ltc/pk/asn1/der/sequence/der_encode_sequence_multi.o \
-ltc/pk/asn1/der/sequence/der_sequence_free.o ltc/pk/asn1/der/printable_string/der_encode_printable_string.o \
-ltc/pk/asn1/der/printable_string/der_length_printable_string.o ltc/pk/asn1/der/printable_string/der_decode_printable_string.o \
-ltc/pk/asn1/der/utctime/der_encode_utctime.o ltc/pk/asn1/der/utctime/der_length_utctime.o \
-ltc/pk/asn1/der/utctime/der_decode_utctime.o ltc/pk/asn1/x509/x509_encode_subject_public_key_info.o \
-ltc/pk/asn1/x509/x509_decode_public_key_from_certificate.o ltc/pk/asn1/x509/x509_decode_subject_public_key_info.o \
-ltc/pk/asn1/oid/pk_get_oid.o ltc/pk/asn1/oid/pk_oid_str.o ltc/pk/asn1/oid/pk_oid_cmp.o \
-ltc/pk/asn1/pkcs8/pkcs8_decode_flexi.o ltc/pk/dh/dh_import.o ltc/pk/dh/dh_set.o ltc/pk/dh/dh_shared_secret.o \
-ltc/pk/dh/dh_export_key.o ltc/pk/dh/dh_set_pg_dhparam.o ltc/pk/dh/dh_check_pubkey.o \
-ltc/pk/dh/dh_free.o ltc/pk/dh/dh_generate_key.o ltc/pk/dh/dh.o ltc/pk/dh/dh_export.o \
-ltc/pk/rsa/rsa_verify_hash.o ltc/pk/rsa/rsa_import_pkcs8.o ltc/pk/rsa/rsa_exptmod.o \
-ltc/pk/rsa/rsa_decrypt_key.o ltc/pk/rsa/rsa_encrypt_key.o ltc/pk/rsa/rsa_import.o \
-ltc/pk/rsa/rsa_sign_hash.o ltc/pk/rsa/rsa_set.o ltc/pk/rsa/rsa_import_x509.o ltc/pk/rsa/rsa_make_key.o \
-ltc/pk/rsa/rsa_export.o ltc/pk/rsa/rsa_sign_saltlen_get.o ltc/pk/rsa/rsa_key.o ltc/pk/rsa/rsa_get_size.o \
-ltc/pk/dsa/dsa_make_key.o ltc/pk/dsa/dsa_verify_key.o ltc/pk/dsa/dsa_set.o ltc/pk/dsa/dsa_sign_hash.o \
-ltc/pk/dsa/dsa_shared_secret.o ltc/pk/dsa/dsa_generate_pqg.o ltc/pk/dsa/dsa_import.o \
-ltc/pk/dsa/dsa_decrypt_key.o ltc/pk/dsa/dsa_set_pqg_dsaparam.o ltc/pk/dsa/dsa_export.o \
-ltc/pk/dsa/dsa_verify_hash.o ltc/pk/dsa/dsa_generate_key.o ltc/pk/dsa/dsa_free.o \
-ltc/pk/dsa/dsa_encrypt_key.o ltc/pk/ec25519/ec25519_export.o ltc/pk/ec25519/ec25519_import_pkcs8.o \
-ltc/pk/ec25519/tweetnacl.o ltc/pk/ed25519/ed25519_export.o ltc/pk/ed25519/ed25519_import_pkcs8.o \
-ltc/pk/ed25519/ed25519_import_raw.o ltc/pk/ed25519/ed25519_import_x509.o ltc/pk/ed25519/ed25519_sign.o \
-ltc/pk/ed25519/ed25519_make_key.o ltc/pk/ed25519/ed25519_verify.o ltc/pk/ed25519/ed25519_import.o \
-ltc/pk/ecc/ecc_import_x509.o ltc/pk/ecc/ecc_set_curve.o ltc/pk/ecc/ecc_recover_key.o \
-ltc/pk/ecc/ecc_export_openssl.o ltc/pk/ecc/ltc_ecc_projective_add_point.o ltc/pk/ecc/ecc_make_key.o \
-ltc/pk/ecc/ecc_ansi_x963_import.o ltc/pk/ecc/ltc_ecc_map.o ltc/pk/ecc/ecc_get_size.o \
-ltc/pk/ecc/ecc_import_pkcs8.o ltc/pk/ecc/ecc_set_key.o ltc/pk/ecc/ecc.o ltc/pk/ecc/ecc_get_key.o \
-ltc/pk/ecc/ecc_export.o ltc/pk/ecc/ecc_import_openssl.o ltc/pk/ecc/ecc_free.o ltc/pk/ecc/ecc_find_curve.o \
-ltc/pk/ecc/ecc_import.o ltc/pk/ecc/ecc_get_oid_str.o ltc/pk/ecc/ecc_decrypt_key.o \
-ltc/pk/ecc/ltc_ecc_is_point.o ltc/pk/ecc/ecc_shared_secret.o ltc/pk/ecc/ltc_ecc_projective_dbl_point.o \
-ltc/pk/ecc/ecc_sizes.o ltc/pk/ecc/ltc_ecc_mul2add.o ltc/pk/ecc/ltc_ecc_points.o ltc/pk/ecc/ltc_ecc_mulmod.o \
-ltc/pk/ecc/ecc_verify_hash.o ltc/pk/ecc/ltc_ecc_is_point_at_infinity.o ltc/pk/ecc/ltc_ecc_import_point.o \
-ltc/pk/ecc/ltc_ecc_mulmod_timing.o ltc/pk/ecc/ecc_ansi_x963_export.o ltc/pk/ecc/ecc_ssh_ecdsa_encode_name.o \
-ltc/pk/ecc/ecc_sign_hash.o ltc/pk/ecc/ecc_encrypt_key.o ltc/pk/ecc/ecc_set_curve_internal.o \
-ltc/pk/ecc/ltc_ecc_verify_key.o ltc/pk/ecc/ltc_ecc_export_point.o ltc/pk/pkcs1/pkcs_1_os2ip.o \
-ltc/pk/pkcs1/pkcs_1_pss_decode.o ltc/pk/pkcs1/pkcs_1_pss_encode.o ltc/pk/pkcs1/pkcs_1_mgf1.o \
-ltc/pk/pkcs1/pkcs_1_oaep_decode.o ltc/pk/pkcs1/pkcs_1_v1_5_decode.o ltc/pk/pkcs1/pkcs_1_v1_5_encode.o \
-ltc/pk/pkcs1/pkcs_1_oaep_encode.o ltc/pk/pkcs1/pkcs_1_i2osp.o ltc/pk/x25519/x25519_make_key.o \
-ltc/pk/x25519/x25519_import_pkcs8.o ltc/pk/x25519/x25519_export.o ltc/pk/x25519/x25519_shared_secret.o \
-ltc/pk/x25519/x25519_import.o ltc/pk/x25519/x25519_import_raw.o ltc/pk/x25519/x25519_import_x509.o \
-ltc/hashes/md4.o ltc/hashes/sha1.o ltc/hashes/rmd128.o ltc/hashes/sha3_test.o ltc/hashes/rmd256.o \
-ltc/hashes/md2.o ltc/hashes/blake2b.o ltc/hashes/md5.o ltc/hashes/tiger.o ltc/hashes/blake2s.o \
-ltc/hashes/sha3.o ltc/hashes/rmd160.o ltc/hashes/rmd320.o ltc/hashes/sha2/sha512_224.o \
-ltc/hashes/sha2/sha512_256.o ltc/hashes/sha2/sha224.o ltc/hashes/sha2/sha256.o ltc/hashes/sha2/sha512.o \
-ltc/hashes/sha2/sha384.o ltc/hashes/whirl/whirl.o ltc/hashes/chc/chc.o ltc/hashes/helper/hash_memory_multi.o \
-ltc/hashes/helper/hash_file.o ltc/hashes/helper/hash_filehandle.o ltc/hashes/helper/hash_memory.o \
-ltc/modes/ctr/ctr_encrypt.o ltc/modes/ctr/ctr_setiv.o ltc/modes/ctr/ctr_start.o ltc/modes/ctr/ctr_decrypt.o \
-ltc/modes/ctr/ctr_getiv.o ltc/modes/ctr/ctr_done.o ltc/modes/ofb/ofb_getiv.o ltc/modes/ofb/ofb_encrypt.o \
-ltc/modes/ofb/ofb_done.o ltc/modes/ofb/ofb_start.o ltc/modes/ofb/ofb_setiv.o ltc/modes/ofb/ofb_decrypt.o \
-ltc/modes/cbc/cbc_setiv.o ltc/modes/cbc/cbc_decrypt.o ltc/modes/cbc/cbc_done.o ltc/modes/cbc/cbc_getiv.o \
-ltc/modes/cbc/cbc_start.o ltc/modes/cbc/cbc_encrypt.o ltc/modes/cfb/cfb_done.o ltc/modes/cfb/cfb_encrypt.o \
-ltc/modes/cfb/cfb_start.o ltc/modes/cfb/cfb_getiv.o ltc/modes/cfb/cfb_setiv.o ltc/modes/cfb/cfb_decrypt.o \
-ltc/modes/ecb/ecb_encrypt.o ltc/modes/ecb/ecb_done.o ltc/modes/ecb/ecb_decrypt.o \
-ltc/modes/ecb/ecb_start.o ltc/prngs/chacha20.o ltc/prngs/rc4.o ltc/prngs/rng_get_bytes.o \
-ltc/prngs/fortuna.o ltc/prngs/rng_make_prng.o ltc/prngs/sober128.o ltc/prngs/sprng.o \
-ltc/prngs/yarrow.o ltc/encauth/eax/eax_decrypt.o ltc/encauth/eax/eax_decrypt_verify_memory.o \
-ltc/encauth/eax/eax_init.o ltc/encauth/eax/eax_encrypt_authenticate_memory.o ltc/encauth/eax/eax_addheader.o \
-ltc/encauth/eax/eax_encrypt.o ltc/encauth/eax/eax_done.o ltc/encauth/gcm/gcm_init.o \
-ltc/encauth/gcm/gcm_process.o ltc/encauth/gcm/gcm_memory.o ltc/encauth/gcm/gcm_reset.o \
-ltc/encauth/gcm/gcm_done.o ltc/encauth/gcm/gcm_mult_h.o ltc/encauth/gcm/gcm_add_iv.o \
-ltc/encauth/gcm/gcm_add_aad.o ltc/encauth/gcm/gcm_gf_mult.o ltc/encauth/ccm/ccm_done.o \
-ltc/encauth/ccm/ccm_add_aad.o ltc/encauth/ccm/ccm_add_nonce.o ltc/encauth/ccm/ccm_process.o \
-ltc/encauth/ccm/ccm_reset.o ltc/encauth/ccm/ccm_memory.o ltc/encauth/ccm/ccm_init.o \
-ltc/encauth/chachapoly/chacha20poly1305_done.o ltc/encauth/chachapoly/chacha20poly1305_add_aad.o \
-ltc/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.o ltc/encauth/chachapoly/chacha20poly1305_decrypt.o \
-ltc/encauth/chachapoly/chacha20poly1305_encrypt.o ltc/encauth/chachapoly/chacha20poly1305_setiv.o \
-ltc/encauth/chachapoly/chacha20poly1305_init.o ltc/encauth/chachapoly/chacha20poly1305_memory.o \
-ltc/encauth/ocb3/ocb3_int_ntz.o ltc/encauth/ocb3/ocb3_encrypt_authenticate_memory.o \
-ltc/encauth/ocb3/ocb3_add_aad.o ltc/encauth/ocb3/ocb3_encrypt_last.o ltc/encauth/ocb3/ocb3_int_xor_blocks.o \
-ltc/encauth/ocb3/ocb3_decrypt.o ltc/encauth/ocb3/ocb3_done.o ltc/encauth/ocb3/ocb3_decrypt_verify_memory.o \
-ltc/encauth/ocb3/ocb3_encrypt.o ltc/encauth/ocb3/ocb3_decrypt_last.o ltc/encauth/ocb3/ocb3_init.o \
-ltc/stream/rc4/rc4_stream.o ltc/stream/rc4/rc4_stream_memory.o ltc/stream/chacha/chacha_ivctr32.o \
-ltc/stream/chacha/chacha_memory.o ltc/stream/chacha/chacha_crypt.o ltc/stream/chacha/chacha_keystream.o \
-ltc/stream/chacha/chacha_done.o ltc/stream/chacha/chacha_ivctr64.o ltc/stream/chacha/chacha_setup.o \
-ltc/stream/sober128/sober128_stream_memory.o ltc/stream/sober128/sober128_stream.o \
-ltc/stream/salsa20/salsa20_setup.o ltc/stream/salsa20/xsalsa20_memory.o ltc/stream/salsa20/salsa20_done.o \
-ltc/stream/salsa20/salsa20_memory.o ltc/stream/salsa20/salsa20_keystream.o ltc/stream/salsa20/salsa20_crypt.o \
-ltc/stream/salsa20/salsa20_ivctr64.o ltc/stream/salsa20/xsalsa20_setup.o ltc/stream/rabbit/rabbit_memory.o \
-ltc/stream/rabbit/rabbit.o ltc/stream/sosemanuk/sosemanuk_memory.o ltc/stream/sosemanuk/sosemanuk.o \
-ltc/math/radix_to_bin.o ltc/math/tfm_desc.o ltc/math/rand_bn.o ltc/math/multi.o ltc/math/ltm_desc.o \
-ltc/math/rand_prime.o ltc/math/fp/ltc_ecc_fp_mulmod.o ltc/mac/pmac/pmac_init.o ltc/mac/pmac/pmac_shift_xor.o \
-ltc/mac/pmac/pmac_ntz.o ltc/mac/pmac/pmac_done.o ltc/mac/pmac/pmac_file.o ltc/mac/pmac/pmac_memory_multi.o \
-ltc/mac/pmac/pmac_memory.o ltc/mac/pmac/pmac_process.o ltc/mac/hmac/hmac_memory.o \
-ltc/mac/hmac/hmac_init.o ltc/mac/hmac/hmac_done.o ltc/mac/hmac/hmac_file.o ltc/mac/hmac/hmac_memory_multi.o \
-ltc/mac/hmac/hmac_process.o ltc/mac/blake2/blake2bmac_file.o ltc/mac/blake2/blake2smac_memory.o \
-ltc/mac/blake2/blake2bmac_memory_multi.o ltc/mac/blake2/blake2smac.o ltc/mac/blake2/blake2smac_file.o \
-ltc/mac/blake2/blake2smac_memory_multi.o ltc/mac/blake2/blake2bmac_memory.o ltc/mac/blake2/blake2bmac.o \
-ltc/mac/poly1305/poly1305_memory.o ltc/mac/poly1305/poly1305_file.o ltc/mac/poly1305/poly1305.o \
-ltc/mac/poly1305/poly1305_memory_multi.o ltc/mac/xcbc/xcbc_init.o ltc/mac/xcbc/xcbc_memory.o \
-ltc/mac/xcbc/xcbc_process.o ltc/mac/xcbc/xcbc_file.o ltc/mac/xcbc/xcbc_memory_multi.o \
-ltc/mac/xcbc/xcbc_done.o ltc/mac/f9/f9_memory_multi.o ltc/mac/f9/f9_memory.o ltc/mac/f9/f9_init.o \
-ltc/mac/f9/f9_process.o ltc/mac/f9/f9_done.o ltc/mac/f9/f9_file.o ltc/mac/pelican/pelican.o \
-ltc/mac/pelican/pelican_memory.o ltc/mac/omac/omac_init.o ltc/mac/omac/omac_file.o \
-ltc/mac/omac/omac_process.o ltc/mac/omac/omac_memory_multi.o ltc/mac/omac/omac_memory.o \
-ltc/mac/omac/omac_done.o ltc/ciphers/noekeon.o ltc/ciphers/camellia.o ltc/ciphers/tea.o \
-ltc/ciphers/kseed.o ltc/ciphers/des.o ltc/ciphers/khazad.o ltc/ciphers/idea.o ltc/ciphers/blowfish.o \
-ltc/ciphers/kasumi.o ltc/ciphers/anubis.o ltc/ciphers/rc2.o ltc/ciphers/rc6.o ltc/ciphers/skipjack.o \
-ltc/ciphers/cast5.o ltc/ciphers/serpent.o ltc/ciphers/xtea.o ltc/ciphers/multi2.o \
-ltc/ciphers/rc5.o ltc/ciphers/safer/safer.o ltc/ciphers/safer/saferp.o ltc/ciphers/twofish/twofish.o \
-ltc/ciphers/aes/aes.o ltm/bn_s_mp_sqr.o ltm/bn_prime_tab.o ltm/bn_mp_radix_size.o \
-ltm/bn_mp_cmp_mag.o ltm/bn_mp_get_bit.o ltm/bn_fast_s_mp_sqr.o ltm/bn_mp_cnt_lsb.o \
-ltm/bn_mp_2expt.o ltm/bn_mp_mod_2d.o ltm/bn_mp_sub.o ltm/bn_mp_reduce_2k_l.o ltm/bn_mp_kronecker.o \
-ltm/bn_mp_invmod_slow.o ltm/bn_mp_prime_is_divisible.o ltm/bn_mp_count_bits.o ltm/bn_mp_clear_multi.o \
-ltm/bn_mp_set_int.o ltm/bn_error.o ltm/bn_mp_export.o ltm/bn_mp_cmp.o ltm/bn_mp_add.o \
-ltm/bn_mp_grow.o ltm/bn_mp_n_root_ex.o ltm/bn_mp_prime_fermat.o ltm/bn_mp_shrink.o \
-ltm/bn_mp_get_int.o ltm/bn_mp_abs.o ltm/bn_s_mp_mul_high_digs.o ltm/bn_fast_mp_invmod.o \
-ltm/bn_mp_reduce_2k_setup_l.o ltm/bn_mp_div_2.o ltm/bn_mp_rshd.o ltm/bn_s_mp_mul_digs.o \
-ltm/bn_mp_to_unsigned_bin.o ltm/bn_mp_tc_div_2d.o ltm/bn_mp_mul_d.o ltm/bn_mp_fwrite.o \
-ltm/bn_fast_s_mp_mul_digs.o ltm/bn_mp_lshd.o ltm/bn_mp_reduce_is_2k_l.o ltm/bn_mp_prime_rabin_miller_trials.o \
-ltm/bn_mp_n_root.o ltm/bn_mp_tc_xor.o ltm/bn_mp_tc_or.o ltm/bn_mp_and.o ltm/bn_mp_cmp_d.o \
-ltm/bn_mp_exptmod_fast.o ltm/bn_mp_to_signed_bin.o ltm/bn_mp_get_long.o ltm/bn_mp_lcm.o \
-ltm/bn_mp_is_square.o ltm/bn_mp_sqrt.o ltm/bn_mp_signed_bin_size.o ltm/bn_mp_mod_d.o \
-ltm/bn_mp_sqrtmod_prime.o ltm/bn_mp_init_multi.o ltm/bn_mp_init_set_int.o ltm/bn_mp_reduce_is_2k.o \
-ltm/bn_mp_set_long.o ltm/bn_mp_init_set.o ltm/bn_mp_invmod.o ltm/bn_mp_dr_reduce.o \
-ltm/bn_mp_init_size.o ltm/bn_mp_submod.o ltm/bn_reverse.o ltm/bn_mp_montgomery_reduce.o \
-ltm/bn_mp_exteuclid.o ltm/bn_mp_neg.o ltm/bn_mp_clamp.o ltm/bn_mp_dr_setup.o ltm/bn_mp_copy.o \
-ltm/bn_mp_karatsuba_mul.o ltm/bn_mp_to_unsigned_bin_n.o ltm/bn_mp_to_signed_bin_n.o \
-ltm/bn_mp_init_copy.o ltm/bn_fast_s_mp_mul_high_digs.o ltm/bn_mp_div_d.o ltm/bn_mp_toom_sqr.o \
-ltm/bn_mp_toradix_n.o ltm/bn_mp_fread.o ltm/bn_mp_reduce.o ltm/bn_mp_jacobi.o ltm/bn_mp_mod.o \
-ltm/bn_mp_montgomery_calc_normalization.o ltm/bn_mp_prime_miller_rabin.o ltm/bn_mp_zero.o \
-ltm/bn_mp_sqr.o ltm/bn_mp_addmod.o ltm/bn_mp_init.o ltm/bn_mp_prime_is_prime.o ltm/bn_mp_radix_smap.o \
-ltm/bn_mp_div.o ltm/bn_mp_clear.o ltm/bn_mp_xor.o ltm/bn_mp_exptmod.o ltm/bn_mp_reduce_setup.o \
-ltm/bn_mp_or.o ltm/bn_mp_read_radix.o ltm/bn_s_mp_sub.o ltm/bn_mp_prime_frobenius_underwood.o \
-ltm/bn_mp_set.o ltm/bn_mp_div_2d.o ltm/bn_mp_tc_and.o ltm/bn_mp_reduce_2k_setup.o \
-ltm/bn_s_mp_add.o ltm/bn_mp_exch.o ltm/bn_mp_prime_next_prime.o ltm/bn_mp_sub_d.o \
-ltm/bn_fast_mp_montgomery_reduce.o ltm/bn_mp_gcd.o ltm/bn_mp_mul.o ltm/bn_mp_expt_d.o \
-ltm/bn_mp_rand.o ltm/bn_mp_expt_d_ex.o ltm/bn_mp_mul_2d.o ltm/bn_s_mp_exptmod.o ltm/bn_mp_read_unsigned_bin.o \
-ltm/bn_mp_prime_strong_lucas_selfridge.o ltm/bn_mp_montgomery_setup.o ltm/bn_mp_reduce_2k.o \
-ltm/bn_mp_add_d.o ltm/bn_mp_karatsuba_sqr.o ltm/bn_mp_sqrmod.o ltm/bn_mp_dr_is_modulus.o \
-ltm/bn_mp_complement.o ltm/bncore.o ltm/bn_mp_mul_2.o ltm/bn_mp_mulmod.o ltm/bn_mp_toom_mul.o \
-ltm/bn_mp_import.o ltm/bn_mp_div_3.o ltm/bn_mp_toradix.o ltm/bn_mp_unsigned_bin_size.o \
-ltm/bn_mp_prime_random_ex.o ltm/bn_mp_read_signed_bin.o
+ltc/pk/asn1/der/ia5/der_decode_ia5_string.o ltc/pk/asn1/der/ia5/der_encode_ia5_string.o \
+ltc/pk/asn1/der/ia5/der_length_ia5_string.o ltc/pk/asn1/der/integer/der_decode_integer.o \
+ltc/pk/asn1/der/integer/der_encode_integer.o ltc/pk/asn1/der/integer/der_length_integer.o \
+ltc/pk/asn1/der/object_identifier/der_decode_object_identifier.o ltc/pk/asn1/der/object_identifier/der_encode_object_identifier.o \
+ltc/pk/asn1/der/object_identifier/der_length_object_identifier.o ltc/pk/asn1/der/octet/der_decode_octet_string.o \
+ltc/pk/asn1/der/octet/der_encode_octet_string.o ltc/pk/asn1/der/octet/der_length_octet_string.o \
+ltc/pk/asn1/der/printable_string/der_decode_printable_string.o ltc/pk/asn1/der/printable_string/der_encode_printable_string.o \
+ltc/pk/asn1/der/printable_string/der_length_printable_string.o ltc/pk/asn1/der/sequence/der_decode_sequence_ex.o \
+ltc/pk/asn1/der/sequence/der_decode_sequence_flexi.o ltc/pk/asn1/der/sequence/der_decode_sequence_multi.o \
+ltc/pk/asn1/der/sequence/der_encode_sequence_ex.o ltc/pk/asn1/der/sequence/der_encode_sequence_multi.o \
+ltc/pk/asn1/der/sequence/der_length_sequence.o ltc/pk/asn1/der/sequence/der_sequence_free.o \
+ltc/pk/asn1/der/sequence/der_sequence_shrink.o ltc/pk/asn1/der/set/der_encode_set.o \
+ltc/pk/asn1/der/set/der_encode_setof.o ltc/pk/asn1/der/short_integer/der_decode_short_integer.o \
+ltc/pk/asn1/der/short_integer/der_encode_short_integer.o ltc/pk/asn1/der/short_integer/der_length_short_integer.o \
+ltc/pk/asn1/der/teletex_string/der_decode_teletex_string.o ltc/pk/asn1/der/teletex_string/der_length_teletex_string.o \
+ltc/pk/asn1/der/utctime/der_decode_utctime.o ltc/pk/asn1/der/utctime/der_encode_utctime.o \
+ltc/pk/asn1/der/utctime/der_length_utctime.o ltc/pk/asn1/der/utf8/der_decode_utf8_string.o \
+ltc/pk/asn1/der/utf8/der_encode_utf8_string.o ltc/pk/asn1/der/utf8/der_length_utf8_string.o \
+ltc/pk/asn1/oid/pk_get_oid.o ltc/pk/asn1/oid/pk_oid_cmp.o ltc/pk/asn1/oid/pk_oid_str.o \
+ltc/pk/asn1/pkcs8/pkcs8_decode_flexi.o ltc/pk/asn1/x509/x509_decode_public_key_from_certificate.o \
+ltc/pk/asn1/x509/x509_decode_subject_public_key_info.o ltc/pk/asn1/x509/x509_encode_subject_public_key_info.o \
+ltc/pk/dh/dh.o ltc/pk/dh/dh_check_pubkey.o ltc/pk/dh/dh_export.o ltc/pk/dh/dh_export_key.o \
+ltc/pk/dh/dh_free.o ltc/pk/dh/dh_generate_key.o ltc/pk/dh/dh_import.o ltc/pk/dh/dh_set.o \
+ltc/pk/dh/dh_set_pg_dhparam.o ltc/pk/dh/dh_shared_secret.o ltc/pk/dsa/dsa_decrypt_key.o \
+ltc/pk/dsa/dsa_encrypt_key.o ltc/pk/dsa/dsa_export.o ltc/pk/dsa/dsa_free.o ltc/pk/dsa/dsa_generate_key.o \
+ltc/pk/dsa/dsa_generate_pqg.o ltc/pk/dsa/dsa_import.o ltc/pk/dsa/dsa_make_key.o ltc/pk/dsa/dsa_set.o \
+ltc/pk/dsa/dsa_set_pqg_dsaparam.o ltc/pk/dsa/dsa_shared_secret.o ltc/pk/dsa/dsa_sign_hash.o \
+ltc/pk/dsa/dsa_verify_hash.o ltc/pk/dsa/dsa_verify_key.o ltc/pk/ec25519/ec25519_export.o \
+ltc/pk/ec25519/ec25519_import_pkcs8.o ltc/pk/ec25519/tweetnacl.o ltc/pk/ecc/ecc.o \
+ltc/pk/ecc/ecc_ansi_x963_export.o ltc/pk/ecc/ecc_ansi_x963_import.o ltc/pk/ecc/ecc_decrypt_key.o \
+ltc/pk/ecc/ecc_encrypt_key.o ltc/pk/ecc/ecc_export.o ltc/pk/ecc/ecc_export_openssl.o \
+ltc/pk/ecc/ecc_find_curve.o ltc/pk/ecc/ecc_free.o ltc/pk/ecc/ecc_get_key.o ltc/pk/ecc/ecc_get_oid_str.o \
+ltc/pk/ecc/ecc_get_size.o ltc/pk/ecc/ecc_import.o ltc/pk/ecc/ecc_import_openssl.o \
+ltc/pk/ecc/ecc_import_pkcs8.o ltc/pk/ecc/ecc_import_x509.o ltc/pk/ecc/ecc_make_key.o \
+ltc/pk/ecc/ecc_recover_key.o ltc/pk/ecc/ecc_set_curve.o ltc/pk/ecc/ecc_set_curve_internal.o \
+ltc/pk/ecc/ecc_set_key.o ltc/pk/ecc/ecc_shared_secret.o ltc/pk/ecc/ecc_sign_hash.o \
+ltc/pk/ecc/ecc_sizes.o ltc/pk/ecc/ecc_ssh_ecdsa_encode_name.o ltc/pk/ecc/ecc_verify_hash.o \
+ltc/pk/ecc/ltc_ecc_export_point.o ltc/pk/ecc/ltc_ecc_import_point.o ltc/pk/ecc/ltc_ecc_is_point.o \
+ltc/pk/ecc/ltc_ecc_is_point_at_infinity.o ltc/pk/ecc/ltc_ecc_map.o ltc/pk/ecc/ltc_ecc_mul2add.o \
+ltc/pk/ecc/ltc_ecc_mulmod.o ltc/pk/ecc/ltc_ecc_mulmod_timing.o ltc/pk/ecc/ltc_ecc_points.o \
+ltc/pk/ecc/ltc_ecc_projective_add_point.o ltc/pk/ecc/ltc_ecc_projective_dbl_point.o \
+ltc/pk/ecc/ltc_ecc_verify_key.o ltc/pk/ed25519/ed25519_export.o ltc/pk/ed25519/ed25519_import.o \
+ltc/pk/ed25519/ed25519_import_pkcs8.o ltc/pk/ed25519/ed25519_import_raw.o ltc/pk/ed25519/ed25519_import_x509.o \
+ltc/pk/ed25519/ed25519_make_key.o ltc/pk/ed25519/ed25519_sign.o ltc/pk/ed25519/ed25519_verify.o \
+ltc/pk/pkcs1/pkcs_1_i2osp.o ltc/pk/pkcs1/pkcs_1_mgf1.o ltc/pk/pkcs1/pkcs_1_oaep_decode.o \
+ltc/pk/pkcs1/pkcs_1_oaep_encode.o ltc/pk/pkcs1/pkcs_1_os2ip.o ltc/pk/pkcs1/pkcs_1_pss_decode.o \
+ltc/pk/pkcs1/pkcs_1_pss_encode.o ltc/pk/pkcs1/pkcs_1_v1_5_decode.o ltc/pk/pkcs1/pkcs_1_v1_5_encode.o \
+ltc/pk/rsa/rsa_decrypt_key.o ltc/pk/rsa/rsa_encrypt_key.o ltc/pk/rsa/rsa_export.o \
+ltc/pk/rsa/rsa_exptmod.o ltc/pk/rsa/rsa_get_size.o ltc/pk/rsa/rsa_import.o ltc/pk/rsa/rsa_import_pkcs8.o \
+ltc/pk/rsa/rsa_import_x509.o ltc/pk/rsa/rsa_key.o ltc/pk/rsa/rsa_make_key.o ltc/pk/rsa/rsa_set.o \
+ltc/pk/rsa/rsa_sign_hash.o ltc/pk/rsa/rsa_sign_saltlen_get.o ltc/pk/rsa/rsa_verify_hash.o \
+ltc/pk/x25519/x25519_export.o ltc/pk/x25519/x25519_import.o ltc/pk/x25519/x25519_import_pkcs8.o \
+ltc/pk/x25519/x25519_import_raw.o ltc/pk/x25519/x25519_import_x509.o ltc/pk/x25519/x25519_make_key.o \
+ltc/pk/x25519/x25519_shared_secret.o ltc/prngs/chacha20.o ltc/prngs/fortuna.o ltc/prngs/rc4.o \
+ltc/prngs/rng_get_bytes.o ltc/prngs/rng_make_prng.o ltc/prngs/sober128.o ltc/prngs/sprng.o \
+ltc/prngs/yarrow.o ltc/stream/chacha/chacha_crypt.o ltc/stream/chacha/chacha_done.o \
+ltc/stream/chacha/chacha_ivctr32.o ltc/stream/chacha/chacha_ivctr64.o ltc/stream/chacha/chacha_keystream.o \
+ltc/stream/chacha/chacha_memory.o ltc/stream/chacha/chacha_setup.o ltc/stream/rabbit/rabbit.o \
+ltc/stream/rabbit/rabbit_memory.o ltc/stream/rc4/rc4_stream.o ltc/stream/rc4/rc4_stream_memory.o \
+ltc/stream/salsa20/salsa20_crypt.o ltc/stream/salsa20/salsa20_done.o ltc/stream/salsa20/salsa20_ivctr64.o \
+ltc/stream/salsa20/salsa20_keystream.o ltc/stream/salsa20/salsa20_memory.o ltc/stream/salsa20/salsa20_setup.o \
+ltc/stream/salsa20/xsalsa20_memory.o ltc/stream/salsa20/xsalsa20_setup.o ltc/stream/sober128/sober128_stream.o \
+ltc/stream/sober128/sober128_stream_memory.o ltc/stream/sosemanuk/sosemanuk.o ltc/stream/sosemanuk/sosemanuk_memory.o \
+ltm/bn_error.o ltm/bn_fast_mp_invmod.o ltm/bn_fast_mp_montgomery_reduce.o ltm/bn_fast_s_mp_mul_digs.o \
+ltm/bn_fast_s_mp_mul_high_digs.o ltm/bn_fast_s_mp_sqr.o ltm/bn_mp_2expt.o ltm/bn_mp_abs.o \
+ltm/bn_mp_add.o ltm/bn_mp_add_d.o ltm/bn_mp_addmod.o ltm/bn_mp_and.o ltm/bn_mp_clamp.o \
+ltm/bn_mp_clear.o ltm/bn_mp_clear_multi.o ltm/bn_mp_cmp.o ltm/bn_mp_cmp_d.o ltm/bn_mp_cmp_mag.o \
+ltm/bn_mp_cnt_lsb.o ltm/bn_mp_complement.o ltm/bn_mp_copy.o ltm/bn_mp_count_bits.o \
+ltm/bn_mp_div.o ltm/bn_mp_div_2.o ltm/bn_mp_div_2d.o ltm/bn_mp_div_3.o ltm/bn_mp_div_d.o \
+ltm/bn_mp_dr_is_modulus.o ltm/bn_mp_dr_reduce.o ltm/bn_mp_dr_setup.o ltm/bn_mp_exch.o \
+ltm/bn_mp_export.o ltm/bn_mp_expt_d.o ltm/bn_mp_expt_d_ex.o ltm/bn_mp_exptmod.o ltm/bn_mp_exptmod_fast.o \
+ltm/bn_mp_exteuclid.o ltm/bn_mp_fread.o ltm/bn_mp_fwrite.o ltm/bn_mp_gcd.o ltm/bn_mp_get_bit.o \
+ltm/bn_mp_get_int.o ltm/bn_mp_get_long.o ltm/bn_mp_grow.o ltm/bn_mp_import.o ltm/bn_mp_init.o \
+ltm/bn_mp_init_copy.o ltm/bn_mp_init_multi.o ltm/bn_mp_init_set.o ltm/bn_mp_init_set_int.o \
+ltm/bn_mp_init_size.o ltm/bn_mp_invmod.o ltm/bn_mp_invmod_slow.o ltm/bn_mp_is_square.o \
+ltm/bn_mp_jacobi.o ltm/bn_mp_karatsuba_mul.o ltm/bn_mp_karatsuba_sqr.o ltm/bn_mp_kronecker.o \
+ltm/bn_mp_lcm.o ltm/bn_mp_lshd.o ltm/bn_mp_mod.o ltm/bn_mp_mod_2d.o ltm/bn_mp_mod_d.o \
+ltm/bn_mp_montgomery_calc_normalization.o ltm/bn_mp_montgomery_reduce.o ltm/bn_mp_montgomery_setup.o \
+ltm/bn_mp_mul.o ltm/bn_mp_mul_2.o ltm/bn_mp_mul_2d.o ltm/bn_mp_mul_d.o ltm/bn_mp_mulmod.o \
+ltm/bn_mp_n_root.o ltm/bn_mp_n_root_ex.o ltm/bn_mp_neg.o ltm/bn_mp_or.o ltm/bn_mp_prime_fermat.o \
+ltm/bn_mp_prime_frobenius_underwood.o ltm/bn_mp_prime_is_divisible.o ltm/bn_mp_prime_is_prime.o \
+ltm/bn_mp_prime_miller_rabin.o ltm/bn_mp_prime_next_prime.o ltm/bn_mp_prime_rabin_miller_trials.o \
+ltm/bn_mp_prime_random_ex.o ltm/bn_mp_prime_strong_lucas_selfridge.o ltm/bn_mp_radix_size.o \
+ltm/bn_mp_radix_smap.o ltm/bn_mp_rand.o ltm/bn_mp_read_radix.o ltm/bn_mp_read_signed_bin.o \
+ltm/bn_mp_read_unsigned_bin.o ltm/bn_mp_reduce.o ltm/bn_mp_reduce_2k.o ltm/bn_mp_reduce_2k_l.o \
+ltm/bn_mp_reduce_2k_setup.o ltm/bn_mp_reduce_2k_setup_l.o ltm/bn_mp_reduce_is_2k.o \
+ltm/bn_mp_reduce_is_2k_l.o ltm/bn_mp_reduce_setup.o ltm/bn_mp_rshd.o ltm/bn_mp_set.o \
+ltm/bn_mp_set_int.o ltm/bn_mp_set_long.o ltm/bn_mp_shrink.o ltm/bn_mp_signed_bin_size.o \
+ltm/bn_mp_sqr.o ltm/bn_mp_sqrmod.o ltm/bn_mp_sqrt.o ltm/bn_mp_sqrtmod_prime.o ltm/bn_mp_sub.o \
+ltm/bn_mp_sub_d.o ltm/bn_mp_submod.o ltm/bn_mp_tc_and.o ltm/bn_mp_tc_div_2d.o ltm/bn_mp_tc_or.o \
+ltm/bn_mp_tc_xor.o ltm/bn_mp_to_signed_bin.o ltm/bn_mp_to_signed_bin_n.o ltm/bn_mp_to_unsigned_bin.o \
+ltm/bn_mp_to_unsigned_bin_n.o ltm/bn_mp_toom_mul.o ltm/bn_mp_toom_sqr.o ltm/bn_mp_toradix.o \
+ltm/bn_mp_toradix_n.o ltm/bn_mp_unsigned_bin_size.o ltm/bn_mp_xor.o ltm/bn_mp_zero.o \
+ltm/bn_prime_tab.o ltm/bn_reverse.o ltm/bn_s_mp_add.o ltm/bn_s_mp_exptmod.o ltm/bn_s_mp_mul_digs.o \
+ltm/bn_s_mp_mul_high_digs.o ltm/bn_s_mp_sqr.o ltm/bn_s_mp_sub.o ltm/bncore.o
LIB_EXT =.a
OBJ_EXT =.o
diff --git a/src/Makefile.nmake b/src/Makefile.nmake
index 3ae11937..5e2cd2da 100644
--- a/src/Makefile.nmake
+++ b/src/Makefile.nmake
@@ -1,186 +1,189 @@
-OBJS=ltc/misc/compare_testvector.obj ltc/misc/error_to_string.obj ltc/misc/copy_or_zeromem.obj \
-ltc/misc/crc32.obj ltc/misc/burn_stack.obj ltc/misc/zeromem.obj ltc/misc/mem_neq.obj \
-ltc/misc/adler32.obj ltc/misc/pkcs12/pkcs12_utf8_to_utf16.obj ltc/misc/pkcs12/pkcs12_kdf.obj \
-ltc/misc/pbes/pbes1.obj ltc/misc/pbes/pbes2.obj ltc/misc/pbes/pbes.obj ltc/misc/crypt/crypt_unregister_prng.obj \
-ltc/misc/crypt/crypt_unregister_cipher.obj ltc/misc/crypt/crypt.obj ltc/misc/crypt/crypt_find_cipher_any.obj \
-ltc/misc/crypt/crypt_prng_descriptor.obj ltc/misc/crypt/crypt_constants.obj ltc/misc/crypt/crypt_prng_is_valid.obj \
-ltc/misc/crypt/crypt_prng_rng_descriptor.obj ltc/misc/crypt/crypt_cipher_is_valid.obj \
-ltc/misc/crypt/crypt_find_hash_oid.obj ltc/misc/crypt/crypt_hash_descriptor.obj ltc/misc/crypt/crypt_register_all_ciphers.obj \
-ltc/misc/crypt/crypt_register_prng.obj ltc/misc/crypt/crypt_register_cipher.obj ltc/misc/crypt/crypt_find_hash.obj \
-ltc/misc/crypt/crypt_inits.obj ltc/misc/crypt/crypt_cipher_descriptor.obj ltc/misc/crypt/crypt_register_all_hashes.obj \
-ltc/misc/crypt/crypt_find_cipher.obj ltc/misc/crypt/crypt_find_hash_id.obj ltc/misc/crypt/crypt_ltc_mp_descriptor.obj \
-ltc/misc/crypt/crypt_find_cipher_id.obj ltc/misc/crypt/crypt_register_hash.obj ltc/misc/crypt/crypt_hash_is_valid.obj \
-ltc/misc/crypt/crypt_find_prng.obj ltc/misc/crypt/crypt_argchk.obj ltc/misc/crypt/crypt_sizes.obj \
-ltc/misc/crypt/crypt_find_hash_any.obj ltc/misc/crypt/crypt_register_all_prngs.obj \
-ltc/misc/crypt/crypt_fsa.obj ltc/misc/crypt/crypt_unregister_hash.obj ltc/misc/bcrypt/bcrypt.obj \
-ltc/misc/base64/base64_decode.obj ltc/misc/base64/base64_encode.obj ltc/misc/pkcs5/pkcs_5_1.obj \
-ltc/misc/pkcs5/pkcs_5_2.obj ltc/misc/hkdf/hkdf.obj ltc/misc/ssh/ssh_decode_sequence_multi.obj \
-ltc/misc/ssh/ssh_encode_sequence_multi.obj ltc/misc/base16/base16_encode.obj ltc/misc/base16/base16_decode.obj \
-ltc/misc/padding/padding_pad.obj ltc/misc/padding/padding_depad.obj ltc/misc/base32/base32_decode.obj \
-ltc/misc/base32/base32_encode.obj ltc/pk/asn1/der/octet/der_decode_octet_string.obj \
+OBJS=ltc/ciphers/aes/aes.obj ltc/ciphers/anubis.obj ltc/ciphers/blowfish.obj ltc/ciphers/camellia.obj \
+ltc/ciphers/cast5.obj ltc/ciphers/des.obj ltc/ciphers/idea.obj ltc/ciphers/kasumi.obj \
+ltc/ciphers/khazad.obj ltc/ciphers/kseed.obj ltc/ciphers/multi2.obj ltc/ciphers/noekeon.obj \
+ltc/ciphers/rc2.obj ltc/ciphers/rc5.obj ltc/ciphers/rc6.obj ltc/ciphers/safer/safer.obj \
+ltc/ciphers/safer/saferp.obj ltc/ciphers/serpent.obj ltc/ciphers/skipjack.obj ltc/ciphers/tea.obj \
+ltc/ciphers/twofish/twofish.obj ltc/ciphers/xtea.obj ltc/encauth/ccm/ccm_add_aad.obj \
+ltc/encauth/ccm/ccm_add_nonce.obj ltc/encauth/ccm/ccm_done.obj ltc/encauth/ccm/ccm_init.obj \
+ltc/encauth/ccm/ccm_memory.obj ltc/encauth/ccm/ccm_process.obj ltc/encauth/ccm/ccm_reset.obj \
+ltc/encauth/chachapoly/chacha20poly1305_add_aad.obj ltc/encauth/chachapoly/chacha20poly1305_decrypt.obj \
+ltc/encauth/chachapoly/chacha20poly1305_done.obj ltc/encauth/chachapoly/chacha20poly1305_encrypt.obj \
+ltc/encauth/chachapoly/chacha20poly1305_init.obj ltc/encauth/chachapoly/chacha20poly1305_memory.obj \
+ltc/encauth/chachapoly/chacha20poly1305_setiv.obj ltc/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.obj \
+ltc/encauth/eax/eax_addheader.obj ltc/encauth/eax/eax_decrypt.obj ltc/encauth/eax/eax_decrypt_verify_memory.obj \
+ltc/encauth/eax/eax_done.obj ltc/encauth/eax/eax_encrypt.obj ltc/encauth/eax/eax_encrypt_authenticate_memory.obj \
+ltc/encauth/eax/eax_init.obj ltc/encauth/gcm/gcm_add_aad.obj ltc/encauth/gcm/gcm_add_iv.obj \
+ltc/encauth/gcm/gcm_done.obj ltc/encauth/gcm/gcm_gf_mult.obj ltc/encauth/gcm/gcm_init.obj \
+ltc/encauth/gcm/gcm_memory.obj ltc/encauth/gcm/gcm_mult_h.obj ltc/encauth/gcm/gcm_process.obj \
+ltc/encauth/gcm/gcm_reset.obj ltc/encauth/ocb3/ocb3_add_aad.obj ltc/encauth/ocb3/ocb3_decrypt.obj \
+ltc/encauth/ocb3/ocb3_decrypt_last.obj ltc/encauth/ocb3/ocb3_decrypt_verify_memory.obj \
+ltc/encauth/ocb3/ocb3_done.obj ltc/encauth/ocb3/ocb3_encrypt.obj ltc/encauth/ocb3/ocb3_encrypt_authenticate_memory.obj \
+ltc/encauth/ocb3/ocb3_encrypt_last.obj ltc/encauth/ocb3/ocb3_init.obj ltc/encauth/ocb3/ocb3_int_ntz.obj \
+ltc/encauth/ocb3/ocb3_int_xor_blocks.obj ltc/hashes/blake2b.obj ltc/hashes/blake2s.obj \
+ltc/hashes/chc/chc.obj ltc/hashes/helper/hash_file.obj ltc/hashes/helper/hash_filehandle.obj \
+ltc/hashes/helper/hash_memory.obj ltc/hashes/helper/hash_memory_multi.obj ltc/hashes/md2.obj \
+ltc/hashes/md4.obj ltc/hashes/md5.obj ltc/hashes/rmd128.obj ltc/hashes/rmd160.obj \
+ltc/hashes/rmd256.obj ltc/hashes/rmd320.obj ltc/hashes/sha1.obj ltc/hashes/sha2/sha224.obj \
+ltc/hashes/sha2/sha256.obj ltc/hashes/sha2/sha384.obj ltc/hashes/sha2/sha512.obj \
+ltc/hashes/sha2/sha512_224.obj ltc/hashes/sha2/sha512_256.obj ltc/hashes/sha3.obj \
+ltc/hashes/sha3_test.obj ltc/hashes/tiger.obj ltc/hashes/whirl/whirl.obj ltc/mac/blake2/blake2bmac.obj \
+ltc/mac/blake2/blake2bmac_file.obj ltc/mac/blake2/blake2bmac_memory.obj ltc/mac/blake2/blake2bmac_memory_multi.obj \
+ltc/mac/blake2/blake2smac.obj ltc/mac/blake2/blake2smac_file.obj ltc/mac/blake2/blake2smac_memory.obj \
+ltc/mac/blake2/blake2smac_memory_multi.obj ltc/mac/f9/f9_done.obj ltc/mac/f9/f9_file.obj \
+ltc/mac/f9/f9_init.obj ltc/mac/f9/f9_memory.obj ltc/mac/f9/f9_memory_multi.obj ltc/mac/f9/f9_process.obj \
+ltc/mac/hmac/hmac_done.obj ltc/mac/hmac/hmac_file.obj ltc/mac/hmac/hmac_init.obj \
+ltc/mac/hmac/hmac_memory.obj ltc/mac/hmac/hmac_memory_multi.obj ltc/mac/hmac/hmac_process.obj \
+ltc/mac/omac/omac_done.obj ltc/mac/omac/omac_file.obj ltc/mac/omac/omac_init.obj \
+ltc/mac/omac/omac_memory.obj ltc/mac/omac/omac_memory_multi.obj ltc/mac/omac/omac_process.obj \
+ltc/mac/pelican/pelican.obj ltc/mac/pelican/pelican_memory.obj ltc/mac/pmac/pmac_done.obj \
+ltc/mac/pmac/pmac_file.obj ltc/mac/pmac/pmac_init.obj ltc/mac/pmac/pmac_memory.obj \
+ltc/mac/pmac/pmac_memory_multi.obj ltc/mac/pmac/pmac_ntz.obj ltc/mac/pmac/pmac_process.obj \
+ltc/mac/pmac/pmac_shift_xor.obj ltc/mac/poly1305/poly1305.obj ltc/mac/poly1305/poly1305_file.obj \
+ltc/mac/poly1305/poly1305_memory.obj ltc/mac/poly1305/poly1305_memory_multi.obj ltc/mac/xcbc/xcbc_done.obj \
+ltc/mac/xcbc/xcbc_file.obj ltc/mac/xcbc/xcbc_init.obj ltc/mac/xcbc/xcbc_memory.obj \
+ltc/mac/xcbc/xcbc_memory_multi.obj ltc/mac/xcbc/xcbc_process.obj ltc/math/fp/ltc_ecc_fp_mulmod.obj \
+ltc/math/ltm_desc.obj ltc/math/multi.obj ltc/math/radix_to_bin.obj ltc/math/rand_bn.obj \
+ltc/math/rand_prime.obj ltc/math/tfm_desc.obj ltc/misc/adler32.obj ltc/misc/base16/base16_decode.obj \
+ltc/misc/base16/base16_encode.obj ltc/misc/base32/base32_decode.obj ltc/misc/base32/base32_encode.obj \
+ltc/misc/base64/base64_decode.obj ltc/misc/base64/base64_encode.obj ltc/misc/bcrypt/bcrypt.obj \
+ltc/misc/burn_stack.obj ltc/misc/compare_testvector.obj ltc/misc/copy_or_zeromem.obj \
+ltc/misc/crc32.obj ltc/misc/crypt/crypt.obj ltc/misc/crypt/crypt_argchk.obj ltc/misc/crypt/crypt_cipher_descriptor.obj \
+ltc/misc/crypt/crypt_cipher_is_valid.obj ltc/misc/crypt/crypt_constants.obj ltc/misc/crypt/crypt_find_cipher.obj \
+ltc/misc/crypt/crypt_find_cipher_any.obj ltc/misc/crypt/crypt_find_cipher_id.obj \
+ltc/misc/crypt/crypt_find_hash.obj ltc/misc/crypt/crypt_find_hash_any.obj ltc/misc/crypt/crypt_find_hash_id.obj \
+ltc/misc/crypt/crypt_find_hash_oid.obj ltc/misc/crypt/crypt_find_prng.obj ltc/misc/crypt/crypt_fsa.obj \
+ltc/misc/crypt/crypt_hash_descriptor.obj ltc/misc/crypt/crypt_hash_is_valid.obj ltc/misc/crypt/crypt_inits.obj \
+ltc/misc/crypt/crypt_ltc_mp_descriptor.obj ltc/misc/crypt/crypt_prng_descriptor.obj \
+ltc/misc/crypt/crypt_prng_is_valid.obj ltc/misc/crypt/crypt_prng_rng_descriptor.obj \
+ltc/misc/crypt/crypt_register_all_ciphers.obj ltc/misc/crypt/crypt_register_all_hashes.obj \
+ltc/misc/crypt/crypt_register_all_prngs.obj ltc/misc/crypt/crypt_register_cipher.obj \
+ltc/misc/crypt/crypt_register_hash.obj ltc/misc/crypt/crypt_register_prng.obj ltc/misc/crypt/crypt_sizes.obj \
+ltc/misc/crypt/crypt_unregister_cipher.obj ltc/misc/crypt/crypt_unregister_hash.obj \
+ltc/misc/crypt/crypt_unregister_prng.obj ltc/misc/error_to_string.obj ltc/misc/hkdf/hkdf.obj \
+ltc/misc/mem_neq.obj ltc/misc/padding/padding_depad.obj ltc/misc/padding/padding_pad.obj \
+ltc/misc/pbes/pbes.obj ltc/misc/pbes/pbes1.obj ltc/misc/pbes/pbes2.obj ltc/misc/pkcs12/pkcs12_kdf.obj \
+ltc/misc/pkcs12/pkcs12_utf8_to_utf16.obj ltc/misc/pkcs5/pkcs_5_1.obj ltc/misc/pkcs5/pkcs_5_2.obj \
+ltc/misc/ssh/ssh_decode_sequence_multi.obj ltc/misc/ssh/ssh_encode_sequence_multi.obj \
+ltc/misc/zeromem.obj ltc/modes/cbc/cbc_decrypt.obj ltc/modes/cbc/cbc_done.obj ltc/modes/cbc/cbc_encrypt.obj \
+ltc/modes/cbc/cbc_getiv.obj ltc/modes/cbc/cbc_setiv.obj ltc/modes/cbc/cbc_start.obj \
+ltc/modes/cfb/cfb_decrypt.obj ltc/modes/cfb/cfb_done.obj ltc/modes/cfb/cfb_encrypt.obj \
+ltc/modes/cfb/cfb_getiv.obj ltc/modes/cfb/cfb_setiv.obj ltc/modes/cfb/cfb_start.obj \
+ltc/modes/ctr/ctr_decrypt.obj ltc/modes/ctr/ctr_done.obj ltc/modes/ctr/ctr_encrypt.obj \
+ltc/modes/ctr/ctr_getiv.obj ltc/modes/ctr/ctr_setiv.obj ltc/modes/ctr/ctr_start.obj \
+ltc/modes/ecb/ecb_decrypt.obj ltc/modes/ecb/ecb_done.obj ltc/modes/ecb/ecb_encrypt.obj \
+ltc/modes/ecb/ecb_start.obj ltc/modes/ofb/ofb_decrypt.obj ltc/modes/ofb/ofb_done.obj \
+ltc/modes/ofb/ofb_encrypt.obj ltc/modes/ofb/ofb_getiv.obj ltc/modes/ofb/ofb_setiv.obj \
+ltc/modes/ofb/ofb_start.obj ltc/pk/asn1/der/bit/der_decode_bit_string.obj ltc/pk/asn1/der/bit/der_decode_raw_bit_string.obj \
+ltc/pk/asn1/der/bit/der_encode_bit_string.obj ltc/pk/asn1/der/bit/der_encode_raw_bit_string.obj \
+ltc/pk/asn1/der/bit/der_length_bit_string.obj ltc/pk/asn1/der/boolean/der_decode_boolean.obj \
+ltc/pk/asn1/der/boolean/der_encode_boolean.obj ltc/pk/asn1/der/boolean/der_length_boolean.obj \
+ltc/pk/asn1/der/choice/der_decode_choice.obj ltc/pk/asn1/der/custom_type/der_decode_custom_type.obj \
+ltc/pk/asn1/der/custom_type/der_encode_custom_type.obj ltc/pk/asn1/der/custom_type/der_length_custom_type.obj \
+ltc/pk/asn1/der/general/der_asn1_maps.obj ltc/pk/asn1/der/general/der_decode_asn1_identifier.obj \
+ltc/pk/asn1/der/general/der_decode_asn1_length.obj ltc/pk/asn1/der/general/der_encode_asn1_identifier.obj \
+ltc/pk/asn1/der/general/der_encode_asn1_length.obj ltc/pk/asn1/der/general/der_length_asn1_identifier.obj \
+ltc/pk/asn1/der/general/der_length_asn1_length.obj ltc/pk/asn1/der/generalizedtime/der_decode_generalizedtime.obj \
+ltc/pk/asn1/der/generalizedtime/der_encode_generalizedtime.obj ltc/pk/asn1/der/generalizedtime/der_length_generalizedtime.obj \
+ltc/pk/asn1/der/ia5/der_decode_ia5_string.obj ltc/pk/asn1/der/ia5/der_encode_ia5_string.obj \
+ltc/pk/asn1/der/ia5/der_length_ia5_string.obj ltc/pk/asn1/der/integer/der_decode_integer.obj \
+ltc/pk/asn1/der/integer/der_encode_integer.obj ltc/pk/asn1/der/integer/der_length_integer.obj \
+ltc/pk/asn1/der/object_identifier/der_decode_object_identifier.obj ltc/pk/asn1/der/object_identifier/der_encode_object_identifier.obj \
+ltc/pk/asn1/der/object_identifier/der_length_object_identifier.obj ltc/pk/asn1/der/octet/der_decode_octet_string.obj \
ltc/pk/asn1/der/octet/der_encode_octet_string.obj ltc/pk/asn1/der/octet/der_length_octet_string.obj \
-ltc/pk/asn1/der/bit/der_length_bit_string.obj ltc/pk/asn1/der/bit/der_encode_raw_bit_string.obj \
-ltc/pk/asn1/der/bit/der_decode_raw_bit_string.obj ltc/pk/asn1/der/bit/der_encode_bit_string.obj \
-ltc/pk/asn1/der/bit/der_decode_bit_string.obj ltc/pk/asn1/der/object_identifier/der_encode_object_identifier.obj \
-ltc/pk/asn1/der/object_identifier/der_decode_object_identifier.obj ltc/pk/asn1/der/object_identifier/der_length_object_identifier.obj \
-ltc/pk/asn1/der/utf8/der_encode_utf8_string.obj ltc/pk/asn1/der/utf8/der_decode_utf8_string.obj \
-ltc/pk/asn1/der/utf8/der_length_utf8_string.obj ltc/pk/asn1/der/general/der_encode_asn1_identifier.obj \
-ltc/pk/asn1/der/general/der_length_asn1_identifier.obj ltc/pk/asn1/der/general/der_encode_asn1_length.obj \
-ltc/pk/asn1/der/general/der_decode_asn1_identifier.obj ltc/pk/asn1/der/general/der_length_asn1_length.obj \
-ltc/pk/asn1/der/general/der_decode_asn1_length.obj ltc/pk/asn1/der/general/der_asn1_maps.obj \
-ltc/pk/asn1/der/generalizedtime/der_decode_generalizedtime.obj ltc/pk/asn1/der/generalizedtime/der_encode_generalizedtime.obj \
-ltc/pk/asn1/der/generalizedtime/der_length_generalizedtime.obj ltc/pk/asn1/der/short_integer/der_length_short_integer.obj \
-ltc/pk/asn1/der/short_integer/der_encode_short_integer.obj ltc/pk/asn1/der/short_integer/der_decode_short_integer.obj \
-ltc/pk/asn1/der/choice/der_decode_choice.obj ltc/pk/asn1/der/ia5/der_length_ia5_string.obj \
-ltc/pk/asn1/der/ia5/der_encode_ia5_string.obj ltc/pk/asn1/der/ia5/der_decode_ia5_string.obj \
+ltc/pk/asn1/der/printable_string/der_decode_printable_string.obj ltc/pk/asn1/der/printable_string/der_encode_printable_string.obj \
+ltc/pk/asn1/der/printable_string/der_length_printable_string.obj ltc/pk/asn1/der/sequence/der_decode_sequence_ex.obj \
+ltc/pk/asn1/der/sequence/der_decode_sequence_flexi.obj ltc/pk/asn1/der/sequence/der_decode_sequence_multi.obj \
+ltc/pk/asn1/der/sequence/der_encode_sequence_ex.obj ltc/pk/asn1/der/sequence/der_encode_sequence_multi.obj \
+ltc/pk/asn1/der/sequence/der_length_sequence.obj ltc/pk/asn1/der/sequence/der_sequence_free.obj \
+ltc/pk/asn1/der/sequence/der_sequence_shrink.obj ltc/pk/asn1/der/set/der_encode_set.obj \
+ltc/pk/asn1/der/set/der_encode_setof.obj ltc/pk/asn1/der/short_integer/der_decode_short_integer.obj \
+ltc/pk/asn1/der/short_integer/der_encode_short_integer.obj ltc/pk/asn1/der/short_integer/der_length_short_integer.obj \
ltc/pk/asn1/der/teletex_string/der_decode_teletex_string.obj ltc/pk/asn1/der/teletex_string/der_length_teletex_string.obj \
-ltc/pk/asn1/der/boolean/der_decode_boolean.obj ltc/pk/asn1/der/boolean/der_length_boolean.obj \
-ltc/pk/asn1/der/boolean/der_encode_boolean.obj ltc/pk/asn1/der/integer/der_length_integer.obj \
-ltc/pk/asn1/der/integer/der_decode_integer.obj ltc/pk/asn1/der/integer/der_encode_integer.obj \
-ltc/pk/asn1/der/custom_type/der_encode_custom_type.obj ltc/pk/asn1/der/custom_type/der_decode_custom_type.obj \
-ltc/pk/asn1/der/custom_type/der_length_custom_type.obj ltc/pk/asn1/der/set/der_encode_setof.obj \
-ltc/pk/asn1/der/set/der_encode_set.obj ltc/pk/asn1/der/sequence/der_encode_sequence_ex.obj \
-ltc/pk/asn1/der/sequence/der_sequence_shrink.obj ltc/pk/asn1/der/sequence/der_length_sequence.obj \
-ltc/pk/asn1/der/sequence/der_decode_sequence_ex.obj ltc/pk/asn1/der/sequence/der_decode_sequence_multi.obj \
-ltc/pk/asn1/der/sequence/der_decode_sequence_flexi.obj ltc/pk/asn1/der/sequence/der_encode_sequence_multi.obj \
-ltc/pk/asn1/der/sequence/der_sequence_free.obj ltc/pk/asn1/der/printable_string/der_encode_printable_string.obj \
-ltc/pk/asn1/der/printable_string/der_length_printable_string.obj ltc/pk/asn1/der/printable_string/der_decode_printable_string.obj \
-ltc/pk/asn1/der/utctime/der_encode_utctime.obj ltc/pk/asn1/der/utctime/der_length_utctime.obj \
-ltc/pk/asn1/der/utctime/der_decode_utctime.obj ltc/pk/asn1/x509/x509_encode_subject_public_key_info.obj \
-ltc/pk/asn1/x509/x509_decode_public_key_from_certificate.obj ltc/pk/asn1/x509/x509_decode_subject_public_key_info.obj \
-ltc/pk/asn1/oid/pk_get_oid.obj ltc/pk/asn1/oid/pk_oid_str.obj ltc/pk/asn1/oid/pk_oid_cmp.obj \
-ltc/pk/asn1/pkcs8/pkcs8_decode_flexi.obj ltc/pk/dh/dh_import.obj ltc/pk/dh/dh_set.obj \
-ltc/pk/dh/dh_shared_secret.obj ltc/pk/dh/dh_export_key.obj ltc/pk/dh/dh_set_pg_dhparam.obj \
-ltc/pk/dh/dh_check_pubkey.obj ltc/pk/dh/dh_free.obj ltc/pk/dh/dh_generate_key.obj \
-ltc/pk/dh/dh.obj ltc/pk/dh/dh_export.obj ltc/pk/rsa/rsa_verify_hash.obj ltc/pk/rsa/rsa_import_pkcs8.obj \
-ltc/pk/rsa/rsa_exptmod.obj ltc/pk/rsa/rsa_decrypt_key.obj ltc/pk/rsa/rsa_encrypt_key.obj \
-ltc/pk/rsa/rsa_import.obj ltc/pk/rsa/rsa_sign_hash.obj ltc/pk/rsa/rsa_set.obj ltc/pk/rsa/rsa_import_x509.obj \
-ltc/pk/rsa/rsa_make_key.obj ltc/pk/rsa/rsa_export.obj ltc/pk/rsa/rsa_sign_saltlen_get.obj \
-ltc/pk/rsa/rsa_key.obj ltc/pk/rsa/rsa_get_size.obj ltc/pk/dsa/dsa_make_key.obj ltc/pk/dsa/dsa_verify_key.obj \
-ltc/pk/dsa/dsa_set.obj ltc/pk/dsa/dsa_sign_hash.obj ltc/pk/dsa/dsa_shared_secret.obj \
-ltc/pk/dsa/dsa_generate_pqg.obj ltc/pk/dsa/dsa_import.obj ltc/pk/dsa/dsa_decrypt_key.obj \
-ltc/pk/dsa/dsa_set_pqg_dsaparam.obj ltc/pk/dsa/dsa_export.obj ltc/pk/dsa/dsa_verify_hash.obj \
-ltc/pk/dsa/dsa_generate_key.obj ltc/pk/dsa/dsa_free.obj ltc/pk/dsa/dsa_encrypt_key.obj \
-ltc/pk/ec25519/ec25519_export.obj ltc/pk/ec25519/ec25519_import_pkcs8.obj ltc/pk/ec25519/tweetnacl.obj \
-ltc/pk/ed25519/ed25519_export.obj ltc/pk/ed25519/ed25519_import_pkcs8.obj ltc/pk/ed25519/ed25519_import_raw.obj \
-ltc/pk/ed25519/ed25519_import_x509.obj ltc/pk/ed25519/ed25519_sign.obj ltc/pk/ed25519/ed25519_make_key.obj \
-ltc/pk/ed25519/ed25519_verify.obj ltc/pk/ed25519/ed25519_import.obj ltc/pk/ecc/ecc_import_x509.obj \
-ltc/pk/ecc/ecc_set_curve.obj ltc/pk/ecc/ecc_recover_key.obj ltc/pk/ecc/ecc_export_openssl.obj \
-ltc/pk/ecc/ltc_ecc_projective_add_point.obj ltc/pk/ecc/ecc_make_key.obj ltc/pk/ecc/ecc_ansi_x963_import.obj \
-ltc/pk/ecc/ltc_ecc_map.obj ltc/pk/ecc/ecc_get_size.obj ltc/pk/ecc/ecc_import_pkcs8.obj \
-ltc/pk/ecc/ecc_set_key.obj ltc/pk/ecc/ecc.obj ltc/pk/ecc/ecc_get_key.obj ltc/pk/ecc/ecc_export.obj \
-ltc/pk/ecc/ecc_import_openssl.obj ltc/pk/ecc/ecc_free.obj ltc/pk/ecc/ecc_find_curve.obj \
-ltc/pk/ecc/ecc_import.obj ltc/pk/ecc/ecc_get_oid_str.obj ltc/pk/ecc/ecc_decrypt_key.obj \
-ltc/pk/ecc/ltc_ecc_is_point.obj ltc/pk/ecc/ecc_shared_secret.obj ltc/pk/ecc/ltc_ecc_projective_dbl_point.obj \
-ltc/pk/ecc/ecc_sizes.obj ltc/pk/ecc/ltc_ecc_mul2add.obj ltc/pk/ecc/ltc_ecc_points.obj \
-ltc/pk/ecc/ltc_ecc_mulmod.obj ltc/pk/ecc/ecc_verify_hash.obj ltc/pk/ecc/ltc_ecc_is_point_at_infinity.obj \
-ltc/pk/ecc/ltc_ecc_import_point.obj ltc/pk/ecc/ltc_ecc_mulmod_timing.obj ltc/pk/ecc/ecc_ansi_x963_export.obj \
-ltc/pk/ecc/ecc_ssh_ecdsa_encode_name.obj ltc/pk/ecc/ecc_sign_hash.obj ltc/pk/ecc/ecc_encrypt_key.obj \
-ltc/pk/ecc/ecc_set_curve_internal.obj ltc/pk/ecc/ltc_ecc_verify_key.obj ltc/pk/ecc/ltc_ecc_export_point.obj \
-ltc/pk/pkcs1/pkcs_1_os2ip.obj ltc/pk/pkcs1/pkcs_1_pss_decode.obj ltc/pk/pkcs1/pkcs_1_pss_encode.obj \
-ltc/pk/pkcs1/pkcs_1_mgf1.obj ltc/pk/pkcs1/pkcs_1_oaep_decode.obj ltc/pk/pkcs1/pkcs_1_v1_5_decode.obj \
-ltc/pk/pkcs1/pkcs_1_v1_5_encode.obj ltc/pk/pkcs1/pkcs_1_oaep_encode.obj ltc/pk/pkcs1/pkcs_1_i2osp.obj \
-ltc/pk/x25519/x25519_make_key.obj ltc/pk/x25519/x25519_import_pkcs8.obj ltc/pk/x25519/x25519_export.obj \
-ltc/pk/x25519/x25519_shared_secret.obj ltc/pk/x25519/x25519_import.obj ltc/pk/x25519/x25519_import_raw.obj \
-ltc/pk/x25519/x25519_import_x509.obj ltc/hashes/md4.obj ltc/hashes/sha1.obj ltc/hashes/rmd128.obj \
-ltc/hashes/sha3_test.obj ltc/hashes/rmd256.obj ltc/hashes/md2.obj ltc/hashes/blake2b.obj \
-ltc/hashes/md5.obj ltc/hashes/tiger.obj ltc/hashes/blake2s.obj ltc/hashes/sha3.obj \
-ltc/hashes/rmd160.obj ltc/hashes/rmd320.obj ltc/hashes/sha2/sha512_224.obj ltc/hashes/sha2/sha512_256.obj \
-ltc/hashes/sha2/sha224.obj ltc/hashes/sha2/sha256.obj ltc/hashes/sha2/sha512.obj \
-ltc/hashes/sha2/sha384.obj ltc/hashes/whirl/whirl.obj ltc/hashes/chc/chc.obj ltc/hashes/helper/hash_memory_multi.obj \
-ltc/hashes/helper/hash_file.obj ltc/hashes/helper/hash_filehandle.obj ltc/hashes/helper/hash_memory.obj \
-ltc/modes/ctr/ctr_encrypt.obj ltc/modes/ctr/ctr_setiv.obj ltc/modes/ctr/ctr_start.obj \
-ltc/modes/ctr/ctr_decrypt.obj ltc/modes/ctr/ctr_getiv.obj ltc/modes/ctr/ctr_done.obj \
-ltc/modes/ofb/ofb_getiv.obj ltc/modes/ofb/ofb_encrypt.obj ltc/modes/ofb/ofb_done.obj \
-ltc/modes/ofb/ofb_start.obj ltc/modes/ofb/ofb_setiv.obj ltc/modes/ofb/ofb_decrypt.obj \
-ltc/modes/cbc/cbc_setiv.obj ltc/modes/cbc/cbc_decrypt.obj ltc/modes/cbc/cbc_done.obj \
-ltc/modes/cbc/cbc_getiv.obj ltc/modes/cbc/cbc_start.obj ltc/modes/cbc/cbc_encrypt.obj \
-ltc/modes/cfb/cfb_done.obj ltc/modes/cfb/cfb_encrypt.obj ltc/modes/cfb/cfb_start.obj \
-ltc/modes/cfb/cfb_getiv.obj ltc/modes/cfb/cfb_setiv.obj ltc/modes/cfb/cfb_decrypt.obj \
-ltc/modes/ecb/ecb_encrypt.obj ltc/modes/ecb/ecb_done.obj ltc/modes/ecb/ecb_decrypt.obj \
-ltc/modes/ecb/ecb_start.obj ltc/prngs/chacha20.obj ltc/prngs/rc4.obj ltc/prngs/rng_get_bytes.obj \
-ltc/prngs/fortuna.obj ltc/prngs/rng_make_prng.obj ltc/prngs/sober128.obj ltc/prngs/sprng.obj \
-ltc/prngs/yarrow.obj ltc/encauth/eax/eax_decrypt.obj ltc/encauth/eax/eax_decrypt_verify_memory.obj \
-ltc/encauth/eax/eax_init.obj ltc/encauth/eax/eax_encrypt_authenticate_memory.obj \
-ltc/encauth/eax/eax_addheader.obj ltc/encauth/eax/eax_encrypt.obj ltc/encauth/eax/eax_done.obj \
-ltc/encauth/gcm/gcm_init.obj ltc/encauth/gcm/gcm_process.obj ltc/encauth/gcm/gcm_memory.obj \
-ltc/encauth/gcm/gcm_reset.obj ltc/encauth/gcm/gcm_done.obj ltc/encauth/gcm/gcm_mult_h.obj \
-ltc/encauth/gcm/gcm_add_iv.obj ltc/encauth/gcm/gcm_add_aad.obj ltc/encauth/gcm/gcm_gf_mult.obj \
-ltc/encauth/ccm/ccm_done.obj ltc/encauth/ccm/ccm_add_aad.obj ltc/encauth/ccm/ccm_add_nonce.obj \
-ltc/encauth/ccm/ccm_process.obj ltc/encauth/ccm/ccm_reset.obj ltc/encauth/ccm/ccm_memory.obj \
-ltc/encauth/ccm/ccm_init.obj ltc/encauth/chachapoly/chacha20poly1305_done.obj ltc/encauth/chachapoly/chacha20poly1305_add_aad.obj \
-ltc/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.obj ltc/encauth/chachapoly/chacha20poly1305_decrypt.obj \
-ltc/encauth/chachapoly/chacha20poly1305_encrypt.obj ltc/encauth/chachapoly/chacha20poly1305_setiv.obj \
-ltc/encauth/chachapoly/chacha20poly1305_init.obj ltc/encauth/chachapoly/chacha20poly1305_memory.obj \
-ltc/encauth/ocb3/ocb3_int_ntz.obj ltc/encauth/ocb3/ocb3_encrypt_authenticate_memory.obj \
-ltc/encauth/ocb3/ocb3_add_aad.obj ltc/encauth/ocb3/ocb3_encrypt_last.obj ltc/encauth/ocb3/ocb3_int_xor_blocks.obj \
-ltc/encauth/ocb3/ocb3_decrypt.obj ltc/encauth/ocb3/ocb3_done.obj ltc/encauth/ocb3/ocb3_decrypt_verify_memory.obj \
-ltc/encauth/ocb3/ocb3_encrypt.obj ltc/encauth/ocb3/ocb3_decrypt_last.obj ltc/encauth/ocb3/ocb3_init.obj \
-ltc/stream/rc4/rc4_stream.obj ltc/stream/rc4/rc4_stream_memory.obj ltc/stream/chacha/chacha_ivctr32.obj \
-ltc/stream/chacha/chacha_memory.obj ltc/stream/chacha/chacha_crypt.obj ltc/stream/chacha/chacha_keystream.obj \
-ltc/stream/chacha/chacha_done.obj ltc/stream/chacha/chacha_ivctr64.obj ltc/stream/chacha/chacha_setup.obj \
-ltc/stream/sober128/sober128_stream_memory.obj ltc/stream/sober128/sober128_stream.obj \
-ltc/stream/salsa20/salsa20_setup.obj ltc/stream/salsa20/xsalsa20_memory.obj ltc/stream/salsa20/salsa20_done.obj \
-ltc/stream/salsa20/salsa20_memory.obj ltc/stream/salsa20/salsa20_keystream.obj ltc/stream/salsa20/salsa20_crypt.obj \
-ltc/stream/salsa20/salsa20_ivctr64.obj ltc/stream/salsa20/xsalsa20_setup.obj ltc/stream/rabbit/rabbit_memory.obj \
-ltc/stream/rabbit/rabbit.obj ltc/stream/sosemanuk/sosemanuk_memory.obj ltc/stream/sosemanuk/sosemanuk.obj \
-ltc/math/radix_to_bin.obj ltc/math/tfm_desc.obj ltc/math/rand_bn.obj ltc/math/multi.obj \
-ltc/math/ltm_desc.obj ltc/math/rand_prime.obj ltc/math/fp/ltc_ecc_fp_mulmod.obj ltc/mac/pmac/pmac_init.obj \
-ltc/mac/pmac/pmac_shift_xor.obj ltc/mac/pmac/pmac_ntz.obj ltc/mac/pmac/pmac_done.obj \
-ltc/mac/pmac/pmac_file.obj ltc/mac/pmac/pmac_memory_multi.obj ltc/mac/pmac/pmac_memory.obj \
-ltc/mac/pmac/pmac_process.obj ltc/mac/hmac/hmac_memory.obj ltc/mac/hmac/hmac_init.obj \
-ltc/mac/hmac/hmac_done.obj ltc/mac/hmac/hmac_file.obj ltc/mac/hmac/hmac_memory_multi.obj \
-ltc/mac/hmac/hmac_process.obj ltc/mac/blake2/blake2bmac_file.obj ltc/mac/blake2/blake2smac_memory.obj \
-ltc/mac/blake2/blake2bmac_memory_multi.obj ltc/mac/blake2/blake2smac.obj ltc/mac/blake2/blake2smac_file.obj \
-ltc/mac/blake2/blake2smac_memory_multi.obj ltc/mac/blake2/blake2bmac_memory.obj ltc/mac/blake2/blake2bmac.obj \
-ltc/mac/poly1305/poly1305_memory.obj ltc/mac/poly1305/poly1305_file.obj ltc/mac/poly1305/poly1305.obj \
-ltc/mac/poly1305/poly1305_memory_multi.obj ltc/mac/xcbc/xcbc_init.obj ltc/mac/xcbc/xcbc_memory.obj \
-ltc/mac/xcbc/xcbc_process.obj ltc/mac/xcbc/xcbc_file.obj ltc/mac/xcbc/xcbc_memory_multi.obj \
-ltc/mac/xcbc/xcbc_done.obj ltc/mac/f9/f9_memory_multi.obj ltc/mac/f9/f9_memory.obj \
-ltc/mac/f9/f9_init.obj ltc/mac/f9/f9_process.obj ltc/mac/f9/f9_done.obj ltc/mac/f9/f9_file.obj \
-ltc/mac/pelican/pelican.obj ltc/mac/pelican/pelican_memory.obj ltc/mac/omac/omac_init.obj \
-ltc/mac/omac/omac_file.obj ltc/mac/omac/omac_process.obj ltc/mac/omac/omac_memory_multi.obj \
-ltc/mac/omac/omac_memory.obj ltc/mac/omac/omac_done.obj ltc/ciphers/noekeon.obj ltc/ciphers/camellia.obj \
-ltc/ciphers/tea.obj ltc/ciphers/kseed.obj ltc/ciphers/des.obj ltc/ciphers/khazad.obj \
-ltc/ciphers/idea.obj ltc/ciphers/blowfish.obj ltc/ciphers/kasumi.obj ltc/ciphers/anubis.obj \
-ltc/ciphers/rc2.obj ltc/ciphers/rc6.obj ltc/ciphers/skipjack.obj ltc/ciphers/cast5.obj \
-ltc/ciphers/serpent.obj ltc/ciphers/xtea.obj ltc/ciphers/multi2.obj ltc/ciphers/rc5.obj \
-ltc/ciphers/safer/safer.obj ltc/ciphers/safer/saferp.obj ltc/ciphers/twofish/twofish.obj \
-ltc/ciphers/aes/aes.obj ltm/bn_s_mp_sqr.obj ltm/bn_prime_tab.obj ltm/bn_mp_radix_size.obj \
-ltm/bn_mp_cmp_mag.obj ltm/bn_mp_get_bit.obj ltm/bn_fast_s_mp_sqr.obj ltm/bn_mp_cnt_lsb.obj \
-ltm/bn_mp_2expt.obj ltm/bn_mp_mod_2d.obj ltm/bn_mp_sub.obj ltm/bn_mp_reduce_2k_l.obj \
-ltm/bn_mp_kronecker.obj ltm/bn_mp_invmod_slow.obj ltm/bn_mp_prime_is_divisible.obj \
-ltm/bn_mp_count_bits.obj ltm/bn_mp_clear_multi.obj ltm/bn_mp_set_int.obj ltm/bn_error.obj \
-ltm/bn_mp_export.obj ltm/bn_mp_cmp.obj ltm/bn_mp_add.obj ltm/bn_mp_grow.obj ltm/bn_mp_n_root_ex.obj \
-ltm/bn_mp_prime_fermat.obj ltm/bn_mp_shrink.obj ltm/bn_mp_get_int.obj ltm/bn_mp_abs.obj \
-ltm/bn_s_mp_mul_high_digs.obj ltm/bn_fast_mp_invmod.obj ltm/bn_mp_reduce_2k_setup_l.obj \
-ltm/bn_mp_div_2.obj ltm/bn_mp_rshd.obj ltm/bn_s_mp_mul_digs.obj ltm/bn_mp_to_unsigned_bin.obj \
-ltm/bn_mp_tc_div_2d.obj ltm/bn_mp_mul_d.obj ltm/bn_mp_fwrite.obj ltm/bn_fast_s_mp_mul_digs.obj \
-ltm/bn_mp_lshd.obj ltm/bn_mp_reduce_is_2k_l.obj ltm/bn_mp_prime_rabin_miller_trials.obj \
-ltm/bn_mp_n_root.obj ltm/bn_mp_tc_xor.obj ltm/bn_mp_tc_or.obj ltm/bn_mp_and.obj ltm/bn_mp_cmp_d.obj \
-ltm/bn_mp_exptmod_fast.obj ltm/bn_mp_to_signed_bin.obj ltm/bn_mp_get_long.obj ltm/bn_mp_lcm.obj \
-ltm/bn_mp_is_square.obj ltm/bn_mp_sqrt.obj ltm/bn_mp_signed_bin_size.obj ltm/bn_mp_mod_d.obj \
-ltm/bn_mp_sqrtmod_prime.obj ltm/bn_mp_init_multi.obj ltm/bn_mp_init_set_int.obj ltm/bn_mp_reduce_is_2k.obj \
-ltm/bn_mp_set_long.obj ltm/bn_mp_init_set.obj ltm/bn_mp_invmod.obj ltm/bn_mp_dr_reduce.obj \
-ltm/bn_mp_init_size.obj ltm/bn_mp_submod.obj ltm/bn_reverse.obj ltm/bn_mp_montgomery_reduce.obj \
-ltm/bn_mp_exteuclid.obj ltm/bn_mp_neg.obj ltm/bn_mp_clamp.obj ltm/bn_mp_dr_setup.obj \
-ltm/bn_mp_copy.obj ltm/bn_mp_karatsuba_mul.obj ltm/bn_mp_to_unsigned_bin_n.obj ltm/bn_mp_to_signed_bin_n.obj \
-ltm/bn_mp_init_copy.obj ltm/bn_fast_s_mp_mul_high_digs.obj ltm/bn_mp_div_d.obj ltm/bn_mp_toom_sqr.obj \
-ltm/bn_mp_toradix_n.obj ltm/bn_mp_fread.obj ltm/bn_mp_reduce.obj ltm/bn_mp_jacobi.obj \
-ltm/bn_mp_mod.obj ltm/bn_mp_montgomery_calc_normalization.obj ltm/bn_mp_prime_miller_rabin.obj \
-ltm/bn_mp_zero.obj ltm/bn_mp_sqr.obj ltm/bn_mp_addmod.obj ltm/bn_mp_init.obj ltm/bn_mp_prime_is_prime.obj \
-ltm/bn_mp_radix_smap.obj ltm/bn_mp_div.obj ltm/bn_mp_clear.obj ltm/bn_mp_xor.obj \
-ltm/bn_mp_exptmod.obj ltm/bn_mp_reduce_setup.obj ltm/bn_mp_or.obj ltm/bn_mp_read_radix.obj \
-ltm/bn_s_mp_sub.obj ltm/bn_mp_prime_frobenius_underwood.obj ltm/bn_mp_set.obj ltm/bn_mp_div_2d.obj \
-ltm/bn_mp_tc_and.obj ltm/bn_mp_reduce_2k_setup.obj ltm/bn_s_mp_add.obj ltm/bn_mp_exch.obj \
-ltm/bn_mp_prime_next_prime.obj ltm/bn_mp_sub_d.obj ltm/bn_fast_mp_montgomery_reduce.obj \
-ltm/bn_mp_gcd.obj ltm/bn_mp_mul.obj ltm/bn_mp_expt_d.obj ltm/bn_mp_rand.obj ltm/bn_mp_expt_d_ex.obj \
-ltm/bn_mp_mul_2d.obj ltm/bn_s_mp_exptmod.obj ltm/bn_mp_read_unsigned_bin.obj ltm/bn_mp_prime_strong_lucas_selfridge.obj \
-ltm/bn_mp_montgomery_setup.obj ltm/bn_mp_reduce_2k.obj ltm/bn_mp_add_d.obj ltm/bn_mp_karatsuba_sqr.obj \
-ltm/bn_mp_sqrmod.obj ltm/bn_mp_dr_is_modulus.obj ltm/bn_mp_complement.obj ltm/bncore.obj \
-ltm/bn_mp_mul_2.obj ltm/bn_mp_mulmod.obj ltm/bn_mp_toom_mul.obj ltm/bn_mp_import.obj \
-ltm/bn_mp_div_3.obj ltm/bn_mp_toradix.obj ltm/bn_mp_unsigned_bin_size.obj ltm/bn_mp_prime_random_ex.obj \
-ltm/bn_mp_read_signed_bin.obj
+ltc/pk/asn1/der/utctime/der_decode_utctime.obj ltc/pk/asn1/der/utctime/der_encode_utctime.obj \
+ltc/pk/asn1/der/utctime/der_length_utctime.obj ltc/pk/asn1/der/utf8/der_decode_utf8_string.obj \
+ltc/pk/asn1/der/utf8/der_encode_utf8_string.obj ltc/pk/asn1/der/utf8/der_length_utf8_string.obj \
+ltc/pk/asn1/oid/pk_get_oid.obj ltc/pk/asn1/oid/pk_oid_cmp.obj ltc/pk/asn1/oid/pk_oid_str.obj \
+ltc/pk/asn1/pkcs8/pkcs8_decode_flexi.obj ltc/pk/asn1/x509/x509_decode_public_key_from_certificate.obj \
+ltc/pk/asn1/x509/x509_decode_subject_public_key_info.obj ltc/pk/asn1/x509/x509_encode_subject_public_key_info.obj \
+ltc/pk/dh/dh.obj ltc/pk/dh/dh_check_pubkey.obj ltc/pk/dh/dh_export.obj ltc/pk/dh/dh_export_key.obj \
+ltc/pk/dh/dh_free.obj ltc/pk/dh/dh_generate_key.obj ltc/pk/dh/dh_import.obj ltc/pk/dh/dh_set.obj \
+ltc/pk/dh/dh_set_pg_dhparam.obj ltc/pk/dh/dh_shared_secret.obj ltc/pk/dsa/dsa_decrypt_key.obj \
+ltc/pk/dsa/dsa_encrypt_key.obj ltc/pk/dsa/dsa_export.obj ltc/pk/dsa/dsa_free.obj \
+ltc/pk/dsa/dsa_generate_key.obj ltc/pk/dsa/dsa_generate_pqg.obj ltc/pk/dsa/dsa_import.obj \
+ltc/pk/dsa/dsa_make_key.obj ltc/pk/dsa/dsa_set.obj ltc/pk/dsa/dsa_set_pqg_dsaparam.obj \
+ltc/pk/dsa/dsa_shared_secret.obj ltc/pk/dsa/dsa_sign_hash.obj ltc/pk/dsa/dsa_verify_hash.obj \
+ltc/pk/dsa/dsa_verify_key.obj ltc/pk/ec25519/ec25519_export.obj ltc/pk/ec25519/ec25519_import_pkcs8.obj \
+ltc/pk/ec25519/tweetnacl.obj ltc/pk/ecc/ecc.obj ltc/pk/ecc/ecc_ansi_x963_export.obj \
+ltc/pk/ecc/ecc_ansi_x963_import.obj ltc/pk/ecc/ecc_decrypt_key.obj ltc/pk/ecc/ecc_encrypt_key.obj \
+ltc/pk/ecc/ecc_export.obj ltc/pk/ecc/ecc_export_openssl.obj ltc/pk/ecc/ecc_find_curve.obj \
+ltc/pk/ecc/ecc_free.obj ltc/pk/ecc/ecc_get_key.obj ltc/pk/ecc/ecc_get_oid_str.obj \
+ltc/pk/ecc/ecc_get_size.obj ltc/pk/ecc/ecc_import.obj ltc/pk/ecc/ecc_import_openssl.obj \
+ltc/pk/ecc/ecc_import_pkcs8.obj ltc/pk/ecc/ecc_import_x509.obj ltc/pk/ecc/ecc_make_key.obj \
+ltc/pk/ecc/ecc_recover_key.obj ltc/pk/ecc/ecc_set_curve.obj ltc/pk/ecc/ecc_set_curve_internal.obj \
+ltc/pk/ecc/ecc_set_key.obj ltc/pk/ecc/ecc_shared_secret.obj ltc/pk/ecc/ecc_sign_hash.obj \
+ltc/pk/ecc/ecc_sizes.obj ltc/pk/ecc/ecc_ssh_ecdsa_encode_name.obj ltc/pk/ecc/ecc_verify_hash.obj \
+ltc/pk/ecc/ltc_ecc_export_point.obj ltc/pk/ecc/ltc_ecc_import_point.obj ltc/pk/ecc/ltc_ecc_is_point.obj \
+ltc/pk/ecc/ltc_ecc_is_point_at_infinity.obj ltc/pk/ecc/ltc_ecc_map.obj ltc/pk/ecc/ltc_ecc_mul2add.obj \
+ltc/pk/ecc/ltc_ecc_mulmod.obj ltc/pk/ecc/ltc_ecc_mulmod_timing.obj ltc/pk/ecc/ltc_ecc_points.obj \
+ltc/pk/ecc/ltc_ecc_projective_add_point.obj ltc/pk/ecc/ltc_ecc_projective_dbl_point.obj \
+ltc/pk/ecc/ltc_ecc_verify_key.obj ltc/pk/ed25519/ed25519_export.obj ltc/pk/ed25519/ed25519_import.obj \
+ltc/pk/ed25519/ed25519_import_pkcs8.obj ltc/pk/ed25519/ed25519_import_raw.obj ltc/pk/ed25519/ed25519_import_x509.obj \
+ltc/pk/ed25519/ed25519_make_key.obj ltc/pk/ed25519/ed25519_sign.obj ltc/pk/ed25519/ed25519_verify.obj \
+ltc/pk/pkcs1/pkcs_1_i2osp.obj ltc/pk/pkcs1/pkcs_1_mgf1.obj ltc/pk/pkcs1/pkcs_1_oaep_decode.obj \
+ltc/pk/pkcs1/pkcs_1_oaep_encode.obj ltc/pk/pkcs1/pkcs_1_os2ip.obj ltc/pk/pkcs1/pkcs_1_pss_decode.obj \
+ltc/pk/pkcs1/pkcs_1_pss_encode.obj ltc/pk/pkcs1/pkcs_1_v1_5_decode.obj ltc/pk/pkcs1/pkcs_1_v1_5_encode.obj \
+ltc/pk/rsa/rsa_decrypt_key.obj ltc/pk/rsa/rsa_encrypt_key.obj ltc/pk/rsa/rsa_export.obj \
+ltc/pk/rsa/rsa_exptmod.obj ltc/pk/rsa/rsa_get_size.obj ltc/pk/rsa/rsa_import.obj \
+ltc/pk/rsa/rsa_import_pkcs8.obj ltc/pk/rsa/rsa_import_x509.obj ltc/pk/rsa/rsa_key.obj \
+ltc/pk/rsa/rsa_make_key.obj ltc/pk/rsa/rsa_set.obj ltc/pk/rsa/rsa_sign_hash.obj ltc/pk/rsa/rsa_sign_saltlen_get.obj \
+ltc/pk/rsa/rsa_verify_hash.obj ltc/pk/x25519/x25519_export.obj ltc/pk/x25519/x25519_import.obj \
+ltc/pk/x25519/x25519_import_pkcs8.obj ltc/pk/x25519/x25519_import_raw.obj ltc/pk/x25519/x25519_import_x509.obj \
+ltc/pk/x25519/x25519_make_key.obj ltc/pk/x25519/x25519_shared_secret.obj ltc/prngs/chacha20.obj \
+ltc/prngs/fortuna.obj ltc/prngs/rc4.obj ltc/prngs/rng_get_bytes.obj ltc/prngs/rng_make_prng.obj \
+ltc/prngs/sober128.obj ltc/prngs/sprng.obj ltc/prngs/yarrow.obj ltc/stream/chacha/chacha_crypt.obj \
+ltc/stream/chacha/chacha_done.obj ltc/stream/chacha/chacha_ivctr32.obj ltc/stream/chacha/chacha_ivctr64.obj \
+ltc/stream/chacha/chacha_keystream.obj ltc/stream/chacha/chacha_memory.obj ltc/stream/chacha/chacha_setup.obj \
+ltc/stream/rabbit/rabbit.obj ltc/stream/rabbit/rabbit_memory.obj ltc/stream/rc4/rc4_stream.obj \
+ltc/stream/rc4/rc4_stream_memory.obj ltc/stream/salsa20/salsa20_crypt.obj ltc/stream/salsa20/salsa20_done.obj \
+ltc/stream/salsa20/salsa20_ivctr64.obj ltc/stream/salsa20/salsa20_keystream.obj ltc/stream/salsa20/salsa20_memory.obj \
+ltc/stream/salsa20/salsa20_setup.obj ltc/stream/salsa20/xsalsa20_memory.obj ltc/stream/salsa20/xsalsa20_setup.obj \
+ltc/stream/sober128/sober128_stream.obj ltc/stream/sober128/sober128_stream_memory.obj \
+ltc/stream/sosemanuk/sosemanuk.obj ltc/stream/sosemanuk/sosemanuk_memory.obj ltm/bn_error.obj \
+ltm/bn_fast_mp_invmod.obj ltm/bn_fast_mp_montgomery_reduce.obj ltm/bn_fast_s_mp_mul_digs.obj \
+ltm/bn_fast_s_mp_mul_high_digs.obj ltm/bn_fast_s_mp_sqr.obj ltm/bn_mp_2expt.obj ltm/bn_mp_abs.obj \
+ltm/bn_mp_add.obj ltm/bn_mp_add_d.obj ltm/bn_mp_addmod.obj ltm/bn_mp_and.obj ltm/bn_mp_clamp.obj \
+ltm/bn_mp_clear.obj ltm/bn_mp_clear_multi.obj ltm/bn_mp_cmp.obj ltm/bn_mp_cmp_d.obj \
+ltm/bn_mp_cmp_mag.obj ltm/bn_mp_cnt_lsb.obj ltm/bn_mp_complement.obj ltm/bn_mp_copy.obj \
+ltm/bn_mp_count_bits.obj ltm/bn_mp_div.obj ltm/bn_mp_div_2.obj ltm/bn_mp_div_2d.obj \
+ltm/bn_mp_div_3.obj ltm/bn_mp_div_d.obj ltm/bn_mp_dr_is_modulus.obj ltm/bn_mp_dr_reduce.obj \
+ltm/bn_mp_dr_setup.obj ltm/bn_mp_exch.obj ltm/bn_mp_export.obj ltm/bn_mp_expt_d.obj \
+ltm/bn_mp_expt_d_ex.obj ltm/bn_mp_exptmod.obj ltm/bn_mp_exptmod_fast.obj ltm/bn_mp_exteuclid.obj \
+ltm/bn_mp_fread.obj ltm/bn_mp_fwrite.obj ltm/bn_mp_gcd.obj ltm/bn_mp_get_bit.obj \
+ltm/bn_mp_get_int.obj ltm/bn_mp_get_long.obj ltm/bn_mp_grow.obj ltm/bn_mp_import.obj \
+ltm/bn_mp_init.obj ltm/bn_mp_init_copy.obj ltm/bn_mp_init_multi.obj ltm/bn_mp_init_set.obj \
+ltm/bn_mp_init_set_int.obj ltm/bn_mp_init_size.obj ltm/bn_mp_invmod.obj ltm/bn_mp_invmod_slow.obj \
+ltm/bn_mp_is_square.obj ltm/bn_mp_jacobi.obj ltm/bn_mp_karatsuba_mul.obj ltm/bn_mp_karatsuba_sqr.obj \
+ltm/bn_mp_kronecker.obj ltm/bn_mp_lcm.obj ltm/bn_mp_lshd.obj ltm/bn_mp_mod.obj ltm/bn_mp_mod_2d.obj \
+ltm/bn_mp_mod_d.obj ltm/bn_mp_montgomery_calc_normalization.obj ltm/bn_mp_montgomery_reduce.obj \
+ltm/bn_mp_montgomery_setup.obj ltm/bn_mp_mul.obj ltm/bn_mp_mul_2.obj ltm/bn_mp_mul_2d.obj \
+ltm/bn_mp_mul_d.obj ltm/bn_mp_mulmod.obj ltm/bn_mp_n_root.obj ltm/bn_mp_n_root_ex.obj \
+ltm/bn_mp_neg.obj ltm/bn_mp_or.obj ltm/bn_mp_prime_fermat.obj ltm/bn_mp_prime_frobenius_underwood.obj \
+ltm/bn_mp_prime_is_divisible.obj ltm/bn_mp_prime_is_prime.obj ltm/bn_mp_prime_miller_rabin.obj \
+ltm/bn_mp_prime_next_prime.obj ltm/bn_mp_prime_rabin_miller_trials.obj ltm/bn_mp_prime_random_ex.obj \
+ltm/bn_mp_prime_strong_lucas_selfridge.obj ltm/bn_mp_radix_size.obj ltm/bn_mp_radix_smap.obj \
+ltm/bn_mp_rand.obj ltm/bn_mp_read_radix.obj ltm/bn_mp_read_signed_bin.obj ltm/bn_mp_read_unsigned_bin.obj \
+ltm/bn_mp_reduce.obj ltm/bn_mp_reduce_2k.obj ltm/bn_mp_reduce_2k_l.obj ltm/bn_mp_reduce_2k_setup.obj \
+ltm/bn_mp_reduce_2k_setup_l.obj ltm/bn_mp_reduce_is_2k.obj ltm/bn_mp_reduce_is_2k_l.obj \
+ltm/bn_mp_reduce_setup.obj ltm/bn_mp_rshd.obj ltm/bn_mp_set.obj ltm/bn_mp_set_int.obj \
+ltm/bn_mp_set_long.obj ltm/bn_mp_shrink.obj ltm/bn_mp_signed_bin_size.obj ltm/bn_mp_sqr.obj \
+ltm/bn_mp_sqrmod.obj ltm/bn_mp_sqrt.obj ltm/bn_mp_sqrtmod_prime.obj ltm/bn_mp_sub.obj \
+ltm/bn_mp_sub_d.obj ltm/bn_mp_submod.obj ltm/bn_mp_tc_and.obj ltm/bn_mp_tc_div_2d.obj \
+ltm/bn_mp_tc_or.obj ltm/bn_mp_tc_xor.obj ltm/bn_mp_to_signed_bin.obj ltm/bn_mp_to_signed_bin_n.obj \
+ltm/bn_mp_to_unsigned_bin.obj ltm/bn_mp_to_unsigned_bin_n.obj ltm/bn_mp_toom_mul.obj \
+ltm/bn_mp_toom_sqr.obj ltm/bn_mp_toradix.obj ltm/bn_mp_toradix_n.obj ltm/bn_mp_unsigned_bin_size.obj \
+ltm/bn_mp_xor.obj ltm/bn_mp_zero.obj ltm/bn_prime_tab.obj ltm/bn_reverse.obj ltm/bn_s_mp_add.obj \
+ltm/bn_s_mp_exptmod.obj ltm/bn_s_mp_mul_digs.obj ltm/bn_s_mp_mul_high_digs.obj ltm/bn_s_mp_sqr.obj \
+ltm/bn_s_mp_sub.obj ltm/bncore.obj
PERL =perl
RM_F =$(PERL) -MExtUtils::Command -e rm_f --
diff --git a/src/update-libtom.pl b/src/update-libtom.pl
index 31cc351c..f3c77011 100755
--- a/src/update-libtom.pl
+++ b/src/update-libtom.pl
@@ -74,8 +74,8 @@ my @objs = ();
find({ wanted=>sub { push @objs, $_ if $_ =~ /\.c$/ && $_ !~ /tab\.c$/}, no_chdir=>1 }, "$FindBin::Bin/ltc");
find({ wanted=>sub { push @objs, $_ if $_ =~ /\.c$/ }, no_chdir=>1 }, "$FindBin::Bin/ltm");
-my $o = "OBJS=" . (join " ", map { s/\.c$/.o/r } map { s!^.*/(ltm|ltc)/!$1/!r } @objs) =~ s/(.{80}) /$1 \\\n/gr;
-my $obj = "OBJS=" . (join " ", map { s/\.c$/.obj/r } map { s!^.*/(ltm|ltc)/!$1/!r } @objs) =~ s/(.{80}) /$1 \\\n/gr;
+my $o = "OBJS=" . (join " ", map { s/\.c$/.o/r } map { s!^.*/(ltm|ltc)/!$1/!r } sort @objs) =~ s/(.{80}) /$1 \\\n/gr;
+my $obj = "OBJS=" . (join " ", map { s/\.c$/.obj/r } map { s!^.*/(ltm|ltc)/!$1/!r } sort @objs) =~ s/(.{80}) /$1 \\\n/gr;
write_text("$FindBin::Bin/Makefile", read_text("$FindBin::Bin/Makefile") =~ s/OBJS=.+?\.o\n/$o\n/sr);
write_text("$FindBin::Bin/Makefile.nmake", read_text("$FindBin::Bin/Makefile.nmake") =~ s/OBJS=.+?\.obj\n/$obj\n/sr);