aws-crt 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/aws-crt-ffi/crt/aws-c-auth/include/aws/auth/auth.h +1 -0
- data/aws-crt-ffi/crt/aws-c-auth/include/aws/auth/aws_imds_client.h +5 -0
- data/aws-crt-ffi/crt/aws-c-auth/include/aws/auth/credentials.h +5 -0
- data/aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/aws_signing.h +1 -0
- data/aws-crt-ffi/crt/aws-c-auth/include/aws/auth/private/credentials_utils.h +2 -0
- data/aws-crt-ffi/crt/aws-c-auth/include/aws/auth/signing_config.h +1 -0
- data/aws-crt-ffi/crt/aws-c-auth/source/auth.c +3 -1
- data/aws-crt-ffi/crt/aws-c-auth/source/aws_imds_client.c +146 -63
- data/aws-crt-ffi/crt/aws-c-auth/source/aws_signing.c +41 -19
- data/aws-crt-ffi/crt/aws-c-auth/source/credentials_provider_imds.c +1 -0
- data/aws-crt-ffi/crt/aws-c-auth/source/credentials_utils.c +1 -0
- data/aws-crt-ffi/crt/aws-c-auth/source/signable_http_request.c +2 -1
- data/aws-crt-ffi/crt/aws-c-auth/source/signing_config.c +25 -0
- data/aws-crt-ffi/crt/aws-c-auth/tests/CMakeLists.txt +3 -0
- data/aws-crt-ffi/crt/aws-c-auth/tests/aws_imds_client_test.c +197 -31
- data/aws-crt-ffi/crt/aws-c-auth/tests/credentials_provider_imds_tests.c +16 -18
- data/aws-crt-ffi/crt/aws-c-auth/tests/sigv4_signing_tests.c +3 -1
- data/aws-crt-ffi/crt/aws-c-cal/include/aws/cal/private/opensslcrypto_common.h +22 -0
- data/aws-crt-ffi/crt/aws-c-cal/source/darwin/commoncrypto_aes.c +46 -17
- data/aws-crt-ffi/crt/aws-c-cal/source/unix/openssl_aes.c +1 -0
- data/aws-crt-ffi/crt/aws-c-cal/source/unix/openssl_platform_init.c +7 -0
- data/aws-crt-ffi/crt/aws-c-cal/source/unix/openssl_rsa.c +59 -2
- data/aws-crt-ffi/crt/aws-c-cal/source/unix/opensslcrypto_ecc.c +1 -0
- data/aws-crt-ffi/crt/aws-c-common/CMakeLists.txt +13 -1
- data/aws-crt-ffi/crt/aws-c-common/THIRD-PARTY-LICENSES.txt +28 -7
- data/aws-crt-ffi/crt/aws-c-common/bin/system_info/CMakeLists.txt +18 -0
- data/aws-crt-ffi/crt/aws-c-common/bin/system_info/print_system_info.c +48 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/allocator.h +23 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/byte_buf.h +12 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/cross_process_lock.h +35 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/hash_table.h +1 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/priority_queue.h +24 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/private/system_info_priv.h +37 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/system_info.h +47 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/common/system_resource_util.h +30 -0
- data/aws-crt-ffi/crt/aws-c-common/include/aws/testing/aws_test_harness.h +3 -2
- data/aws-crt-ffi/crt/aws-c-common/source/allocator.c +64 -13
- data/aws-crt-ffi/crt/aws-c-common/source/android/logging.c +14 -0
- data/aws-crt-ffi/crt/aws-c-common/source/common.c +3 -3
- data/aws-crt-ffi/crt/aws-c-common/source/file.c +96 -35
- data/aws-crt-ffi/crt/aws-c-common/source/linux/system_info.c +24 -0
- data/aws-crt-ffi/crt/aws-c-common/source/memtrace.c +10 -3
- data/aws-crt-ffi/crt/aws-c-common/source/platform_fallback_stubs/system_info.c +21 -0
- data/aws-crt-ffi/crt/aws-c-common/source/posix/cross_process_lock.c +141 -0
- data/aws-crt-ffi/crt/aws-c-common/source/posix/system_info.c +1 -1
- data/aws-crt-ffi/crt/aws-c-common/source/posix/system_resource_utils.c +32 -0
- data/aws-crt-ffi/crt/aws-c-common/source/priority_queue.c +24 -0
- data/aws-crt-ffi/crt/aws-c-common/source/system_info.c +80 -0
- data/aws-crt-ffi/crt/aws-c-common/source/task_scheduler.c +2 -2
- data/aws-crt-ffi/crt/aws-c-common/source/windows/cross_process_lock.c +93 -0
- data/aws-crt-ffi/crt/aws-c-common/source/windows/system_resource_utils.c +31 -0
- data/aws-crt-ffi/crt/aws-c-common/tests/CMakeLists.txt +16 -0
- data/aws-crt-ffi/crt/aws-c-common/tests/alloc_test.c +83 -22
- data/aws-crt-ffi/crt/aws-c-common/tests/cross_process_lock_tests.c +116 -0
- data/aws-crt-ffi/crt/aws-c-common/tests/file_test.c +103 -0
- data/aws-crt-ffi/crt/aws-c-common/tests/priority_queue_test.c +36 -0
- data/aws-crt-ffi/crt/aws-c-common/tests/system_info_tests.c +19 -0
- data/aws-crt-ffi/crt/aws-c-common/tests/system_resource_util_test.c +37 -0
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/connection.h +9 -0
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/http.h +1 -0
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/private/connection_impl.h +5 -4
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/private/connection_manager_system_vtable.h +10 -18
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/private/proxy_impl.h +5 -1
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/private/request_response_impl.h +5 -0
- data/aws-crt-ffi/crt/aws-c-http/include/aws/http/request_response.h +10 -0
- data/aws-crt-ffi/crt/aws-c-http/source/connection.c +5 -2
- data/aws-crt-ffi/crt/aws-c-http/source/connection_manager.c +22 -21
- data/aws-crt-ffi/crt/aws-c-http/source/h1_connection.c +102 -17
- data/aws-crt-ffi/crt/aws-c-http/source/h1_stream.c +1 -0
- data/aws-crt-ffi/crt/aws-c-http/source/http.c +3 -0
- data/aws-crt-ffi/crt/aws-c-http/source/proxy_connection.c +2 -2
- data/aws-crt-ffi/crt/aws-c-http/tests/CMakeLists.txt +2 -0
- data/aws-crt-ffi/crt/aws-c-http/tests/test_connection_manager.c +18 -18
- data/aws-crt-ffi/crt/aws-c-http/tests/test_h1_client.c +111 -1
- data/aws-crt-ffi/crt/aws-c-http/tests/test_proxy.c +2 -2
- data/aws-crt-ffi/crt/aws-c-http/tests/test_stream_manager.c +2 -2
- data/aws-crt-ffi/crt/aws-c-io/include/aws/io/retry_strategy.h +1 -1
- data/aws-crt-ffi/crt/aws-c-io/source/exponential_backoff_retry_strategy.c +1 -1
- data/aws-crt-ffi/crt/aws-c-io/source/pkcs11_tls_op_handler.c +2 -4
- data/aws-crt-ffi/crt/aws-lc/CMakeLists.txt +16 -8
- data/aws-crt-ffi/crt/aws-lc/cmake/go.cmake +6 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/CMakeLists.txt +6 -9
- data/aws-crt-ffi/crt/aws-lc/crypto/asn1/a_time.c +34 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/asn1/a_utctm.c +4 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/asn1/asn1_test.cc +41 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/bio_mem.c +6 -7
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/bio_test.cc +152 -16
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/connect.c +6 -12
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/fd.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/file.c +20 -8
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/socket.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/bio/socket_helper.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/blake2/blake2.c +11 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/bytestring/cbb.c +13 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/bytestring/cbs.c +9 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/chacha/asm/chacha-armv8.pl +1 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/chacha/chacha.c +49 -8
- data/aws-crt-ffi/crt/aws-lc/crypto/chacha/chacha_test.cc +110 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/chacha/internal.h +8 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/compiler_test.cc +4 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/conf/conf_test.cc +1 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/crypto_test.cc +9 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/curve25519/curve25519.c +189 -108
- data/aws-crt-ffi/crt/aws-lc/crypto/curve25519/curve25519_nohw.c +78 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/curve25519/ed25519_test.cc +9 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/curve25519/internal.h +24 -10
- data/aws-crt-ffi/crt/aws-lc/crypto/curve25519/spake25519.c +4 -4
- data/aws-crt-ffi/crt/aws-lc/crypto/curve25519/x25519_test.cc +80 -11
- data/aws-crt-ffi/crt/aws-lc/crypto/decrepit/evp/evp_do_all.c +2 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/digest_extra/digest_extra.c +8 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/digest_extra/digest_test.cc +110 -45
- data/aws-crt-ffi/crt/aws-lc/crypto/dsa/dsa_test.cc +8 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/dsa/internal.h +18 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/dynamic_loading_test.c +8 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/ec_extra/ec_derive.c +4 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/ec_extra/hash_to_curve.c +6 -18
- data/aws-crt-ffi/crt/aws-lc/crypto/endian_test.cc +308 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/err/ssl.errordata +2 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/evp_extra_test.cc +2 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/evp_test.cc +11 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/evp_tests.txt +25 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/p_ec_asn1.c +1 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/p_kem.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/p_rsa_asn1.c +1 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/print.c +7 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/evp_extra/scrypt.c +13 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/CMakeLists.txt +13 -4
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/aes/aes_nohw.c +18 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bcm.c +12 -4
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/bn_assert_test.cc +77 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/bn_test.cc +30 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/bytes.c +112 -22
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/div.c +12 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/exponentiation.c +54 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/gcd.c +5 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/internal.h +37 -15
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/montgomery.c +4 -11
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/cipher/aead.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/digest/digest.c +29 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/digest/digests.c +89 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/digest/internal.h +4 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/ec.c +19 -36
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/ec_key.c +3 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/ec_montgomery.c +9 -7
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/ec_test.cc +33 -9
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/internal.h +17 -12
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/p224-64.c +5 -8
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/p256-nistz.c +8 -8
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/p256.c +9 -8
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/p384.c +33 -16
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/p521.c +14 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/scalar.c +26 -24
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/simple_mul.c +8 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ec/wnaf.c +3 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/evp/evp.c +43 -12
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/evp/p_ec.c +4 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/hmac/hmac.c +3 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/modes/xts.c +26 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rand/cpu_jitter_test.cc +1 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rand/internal.h +20 -11
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rand/rand.c +10 -10
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rand/urandom.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rsa/internal.h +59 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rsa/padding.c +9 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rsa/rsa.c +7 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/rsa/rsa_impl.c +51 -60
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/service_indicator/service_indicator.c +5 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/service_indicator/service_indicator_test.cc +205 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sha/asm/sha1-armv8.pl +1 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sha/asm/sha512-armv8.pl +1 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sha/internal.h +8 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sha/sha3.c +37 -15
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sha/sha3_test.cc +115 -110
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sha/sha512.c +55 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/fipsmodule/sshkdf/sshkdf.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/hmac_extra/hmac_test.cc +12 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/hmac_extra/hmac_tests.txt +10 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/hrss/asm/poly_rq_mul.S +2 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/impl_dispatch_test.cc +9 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/internal.h +90 -8
- data/aws-crt-ffi/crt/aws-lc/crypto/kem/kem.c +28 -27
- data/aws-crt-ffi/crt/aws-lc/crypto/kyber/kem_kyber.h +14 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/obj/obj_dat.h +52 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/obj/obj_mac.num +5 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/obj/objects.txt +7 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/perlasm/arm-xlate.pl +3 -14
- data/aws-crt-ffi/crt/aws-lc/crypto/perlasm/ppc-xlate.pl +1 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/perlasm/x86_64-xlate.pl +4 -15
- data/aws-crt-ffi/crt/aws-lc/crypto/perlasm/x86asm.pl +4 -13
- data/aws-crt-ffi/crt/aws-lc/crypto/poly1305/poly1305_arm_asm.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/crypto/rand_extra/deterministic.c +4 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/rand_extra/fuchsia.c +4 -4
- data/aws-crt-ffi/crt/aws-lc/crypto/rand_extra/rand_test.cc +0 -63
- data/aws-crt-ffi/crt/aws-lc/crypto/rand_extra/windows.c +41 -19
- data/aws-crt-ffi/crt/aws-lc/crypto/rsa_extra/rsa_test.cc +3 -3
- data/aws-crt-ffi/crt/aws-lc/crypto/siphash/siphash.c +12 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/siphash/siphash_test.cc +5 -5
- data/aws-crt-ffi/crt/aws-lc/crypto/stack/stack.c +68 -46
- data/aws-crt-ffi/crt/aws-lc/crypto/trust_token/pmbtoken.c +4 -4
- data/aws-crt-ffi/crt/aws-lc/crypto/trust_token/voprf.c +2 -2
- data/aws-crt-ffi/crt/aws-lc/crypto/x509/by_dir.c +0 -6
- data/aws-crt-ffi/crt/aws-lc/crypto/x509/internal.h +4 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/x509/x509_lu.c +33 -9
- data/aws-crt-ffi/crt/aws-lc/crypto/x509/x509_test.cc +87 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/x509/x509_trs.c +1 -1
- data/aws-crt-ffi/crt/aws-lc/crypto/x509/x509_vfy.c +35 -13
- data/aws-crt-ffi/crt/aws-lc/crypto/x509v3/v3_lib.c +2 -0
- data/aws-crt-ffi/crt/aws-lc/crypto/x509v3/v3_purp.c +4 -6
- data/aws-crt-ffi/crt/aws-lc/generated-src/crypto_test_data.cc +179 -151
- data/aws-crt-ffi/crt/aws-lc/generated-src/err_data.c +353 -349
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/chacha/chacha-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/aesv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-unroll8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/armv8-mont.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/bn-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/ghash-neon-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/ghashv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/keccak1600-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/md5-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/p256-armv8-asm.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/sha1-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/sha256-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/sha512-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/fipsmodule/vpaes-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-aarch64/crypto/test/trampoline-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/chacha/chacha-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/aesv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/armv4-mont.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/bsaes-armv7.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/ghash-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/ghashv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/sha1-armv4-large.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/sha256-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/sha512-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/fipsmodule/vpaes-armv7.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/ios-arm/crypto/test/trampoline-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/chacha/chacha-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/aesv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-unroll8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/armv8-mont.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/bn-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/ghash-neon-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/ghashv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/keccak1600-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/md5-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/p256-armv8-asm.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/sha1-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/sha256-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/sha512-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/fipsmodule/vpaes-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-aarch64/crypto/test/trampoline-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/chacha/chacha-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/aesv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/armv4-mont.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/bsaes-armv7.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/ghash-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/ghashv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/sha1-armv4-large.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/sha256-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/sha512-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/fipsmodule/vpaes-armv7.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-arm/crypto/test/trampoline-armv4.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-ppc64le/crypto/fipsmodule/aesp8-ppc.S +1 -5
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-ppc64le/crypto/fipsmodule/ghashp8-ppc.S +1 -5
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-ppc64le/crypto/test/trampoline-ppc.S +1 -5
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/chacha/chacha-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/aesni-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/bn-586.S +4 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/co-586.S +4 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/ghash-ssse3-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/ghash-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/md5-586.S +4 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/sha1-586.S +4 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/sha256-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/sha512-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/vpaes-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/fipsmodule/x86-mont.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86/crypto/test/trampoline-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/chacha/chacha-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/cipher_extra/aesni-sha1-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/cipher_extra/aesni-sha256-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/aesni-gcm-avx512.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/aesni-xts-avx512.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/md5-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/x86_64-mont.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/linux-x86_64/crypto/test/trampoline-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/chacha/chacha-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/aesni-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/bn-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/co-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/ghash-ssse3-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/ghash-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/md5-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/sha1-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/sha256-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/sha512-586.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/vpaes-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/fipsmodule/x86-mont.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86/crypto/test/trampoline-x86.S +3 -12
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/chacha/chacha-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/cipher_extra/aesni-sha1-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/cipher_extra/aesni-sha256-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/aesni-gcm-avx512.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/aesni-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/aesni-xts-avx512.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/ghash-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/md5-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/p256-x86_64-asm.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/rdrand-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/rsaz-avx2.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/sha1-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/sha256-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/sha512-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/vpaes-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/x86_64-mont.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/fipsmodule/x86_64-mont5.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/mac-x86_64/crypto/test/trampoline-x86_64.S +2 -11
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/chacha/chacha-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/cipher_extra/chacha20_poly1305_armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/aesv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/aesv8-gcm-armv8-unroll8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/armv8-mont.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/bn-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/ghash-neon-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/ghashv8-armx.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/keccak1600-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/md5-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/p256-armv8-asm.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/p256_beeu-armv8-asm.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/sha1-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/sha256-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/sha512-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/fipsmodule/vpaes-armv8.S +3 -13
- data/aws-crt-ffi/crt/aws-lc/generated-src/win-aarch64/crypto/test/trampoline-armv8.S +4 -14
- data/aws-crt-ffi/crt/aws-lc/go.mod +4 -4
- data/aws-crt-ffi/crt/aws-lc/go.sum +8 -10
- data/aws-crt-ffi/crt/aws-lc/include/openssl/aead.h +2 -2
- data/aws-crt-ffi/crt/aws-lc/include/openssl/arm_arch.h +4 -119
- data/aws-crt-ffi/crt/aws-lc/include/openssl/asm_base.h +185 -0
- data/aws-crt-ffi/crt/aws-lc/include/openssl/asn1.h +5 -0
- data/aws-crt-ffi/crt/aws-lc/include/openssl/base.h +31 -134
- data/aws-crt-ffi/crt/aws-lc/include/openssl/bio.h +30 -18
- data/aws-crt-ffi/crt/aws-lc/include/openssl/bn.h +0 -2
- data/aws-crt-ffi/crt/aws-lc/include/openssl/chacha.h +6 -0
- data/aws-crt-ffi/crt/aws-lc/include/openssl/cipher.h +2 -2
- data/aws-crt-ffi/crt/aws-lc/include/openssl/digest.h +9 -6
- data/aws-crt-ffi/crt/aws-lc/include/openssl/dsa.h +0 -21
- data/aws-crt-ffi/crt/aws-lc/include/openssl/ec.h +1 -1
- data/aws-crt-ffi/crt/aws-lc/include/openssl/err.h +1 -1
- data/aws-crt-ffi/crt/aws-lc/include/openssl/evp.h +8 -5
- data/aws-crt-ffi/crt/aws-lc/include/openssl/nid.h +21 -0
- data/aws-crt-ffi/crt/aws-lc/include/openssl/rsa.h +1 -65
- data/aws-crt-ffi/crt/aws-lc/include/openssl/sha.h +22 -1
- data/aws-crt-ffi/crt/aws-lc/include/openssl/ssl.h +121 -13
- data/aws-crt-ffi/crt/aws-lc/include/openssl/stack.h +229 -208
- data/aws-crt-ffi/crt/aws-lc/include/openssl/target.h +166 -0
- data/aws-crt-ffi/crt/aws-lc/include/openssl/x509.h +30 -10
- data/aws-crt-ffi/crt/aws-lc/include/openssl/x509v3.h +6 -4
- data/aws-crt-ffi/crt/aws-lc/sources.cmake +2 -0
- data/aws-crt-ffi/crt/aws-lc/ssl/extensions.cc +12 -7
- data/aws-crt-ffi/crt/aws-lc/ssl/handshake_server.cc +28 -18
- data/aws-crt-ffi/crt/aws-lc/ssl/internal.h +41 -6
- data/aws-crt-ffi/crt/aws-lc/ssl/s3_both.cc +9 -17
- data/aws-crt-ffi/crt/aws-lc/ssl/ssl_cipher.cc +13 -5
- data/aws-crt-ffi/crt/aws-lc/ssl/ssl_key_share.cc +542 -2
- data/aws-crt-ffi/crt/aws-lc/ssl/ssl_lib.cc +35 -0
- data/aws-crt-ffi/crt/aws-lc/ssl/ssl_test.cc +1847 -14
- data/aws-crt-ffi/crt/aws-lc/ssl/ssl_x509.cc +128 -0
- data/aws-crt-ffi/crt/aws-lc/ssl/test/PORTING.md +10 -7
- data/aws-crt-ffi/crt/aws-lc/ssl/test/bssl_shim.cc +133 -77
- data/aws-crt-ffi/crt/aws-lc/ssl/test/handshake_util.cc +3 -3
- data/aws-crt-ffi/crt/aws-lc/ssl/test/handshaker.cc +4 -0
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/handshake_client.go +6 -2
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/handshake_messages.go +894 -1042
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/handshake_server.go +24 -23
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/prf.go +6 -5
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/runner.go +56 -55
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/shim_dispatcher.go +188 -0
- data/aws-crt-ffi/crt/aws-lc/ssl/test/runner/ticket.go +37 -39
- data/aws-crt-ffi/crt/aws-lc/ssl/test/test_config.cc +59 -24
- data/aws-crt-ffi/crt/aws-lc/ssl/test/test_config.h +3 -2
- data/aws-crt-ffi/crt/aws-lc/ssl/tls13_server.cc +10 -11
- data/aws-crt-ffi/crt/aws-lc/tests/ci/cdk/app.py +4 -4
- data/aws-crt-ffi/crt/aws-lc/tests/ci/cdk/cdk/{aws_lc_mac_arm_ci_stack.py → aws_lc_ec2_test_framework_ci_stack.py} +13 -29
- data/aws-crt-ffi/crt/aws-lc/tests/ci/cdk/cdk/ssm/general_test_run_ssm_document.yaml +43 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/common_posix_setup.sh +10 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-aarch/amazonlinux-2023_base/Dockerfile +5 -1
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-aarch/ubuntu-22.04_base/Dockerfile +19 -3
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-x86/amazonlinux-2_gcc-7x-intel-sde/Dockerfile +5 -4
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-x86/build_images.sh +1 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-x86/push_images.sh +2 -1
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-x86/ubuntu-20.04_clang-10x_formal-verification/create_image.sh +1 -1
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-x86/ubuntu-22.04_base/Dockerfile +1 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/linux-x86/ubuntu-22.04_clang-14x-sde/Dockerfile +42 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/windows/vs2017/Dockerfile +14 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/docker_images/windows/windows_base/Dockerfile +3 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/integration/README.md +12 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/integration/nginx_patch/aws-lc-nginx.patch +68 -23
- data/aws-crt-ffi/crt/aws-lc/tests/ci/integration/run_crt_integration.sh +27 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/integration/run_monit_integration.sh +56 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/integration/sslproxy_patch/aws-lc-sslproxy.patch +2 -2
- data/aws-crt-ffi/crt/aws-lc/tests/ci/run_ec2_test_framework.sh +135 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/run_fips_tests.sh +14 -2
- data/aws-crt-ffi/crt/aws-lc/tests/ci/run_tests_with_sde.sh +4 -1
- data/aws-crt-ffi/crt/aws-lc/tests/ci/run_tests_with_sde_asan.sh +14 -0
- data/aws-crt-ffi/crt/aws-lc/tests/ci/run_windows_tests.bat +39 -3
- data/aws-crt-ffi/crt/aws-lc/third_party/fiat/README.md +21 -6
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/bignum_madd_n25519.S +284 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/bignum_madd_n25519_alt.S +210 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/bignum_mod_n25519.S +186 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/bignum_neg_p25519.S +65 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519.S +1043 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519_alt.S +1043 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519_byte.S +1043 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519_byte_alt.S +1043 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519base.S +1042 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519base_alt.S +1042 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519base_byte.S +1042 -352
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/curve25519_x25519base_byte_alt.S +1043 -354
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_decode.S +700 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_decode_alt.S +563 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_encode.S +131 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_scalarmulbase.S +9626 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_scalarmulbase_alt.S +9468 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_scalarmuldouble.S +3157 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/curve25519/edwards25519_scalarmuldouble_alt.S +2941 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/p384/Makefile +1 -1
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/arm/p521/Makefile +1 -1
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/include/s2n-bignum_aws-lc.h +34 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/bignum_madd_n25519.S +219 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/bignum_madd_n25519_alt.S +245 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/bignum_mod_n25519.S +228 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/bignum_neg_p25519.S +86 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/curve25519_x25519.S +1350 -407
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/curve25519_x25519_alt.S +1350 -407
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/curve25519_x25519base.S +1344 -400
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/curve25519_x25519base_alt.S +1348 -402
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_decode.S +670 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_decode_alt.S +751 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_encode.S +81 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_scalarmulbase.S +9910 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_scalarmulbase_alt.S +9986 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_scalarmuldouble.S +3619 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/s2n-bignum/x86_att/curve25519/edwards25519_scalarmuldouble_alt.S +3736 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/wycheproof_testvectors/hmac_sha512_224_test.json +1978 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/wycheproof_testvectors/hmac_sha512_224_test.txt +1403 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/wycheproof_testvectors/hmac_sha512_256_test.json +1993 -0
- data/aws-crt-ffi/crt/aws-lc/third_party/wycheproof_testvectors/hmac_sha512_256_test.txt +1416 -0
- data/aws-crt-ffi/crt/aws-lc/tool/digest.cc +4 -0
- data/aws-crt-ffi/crt/aws-lc/tool/internal.h +1 -0
- data/aws-crt-ffi/crt/aws-lc/tool/speed.cc +53 -6
- data/aws-crt-ffi/crt/aws-lc/util/all_tests.go +43 -12
- data/aws-crt-ffi/crt/aws-lc/util/all_tests.json +13 -5
- data/aws-crt-ffi/crt/aws-lc/util/bot/DEPS +4 -4
- data/aws-crt-ffi/crt/aws-lc/util/bot/update_clang.py +8 -2
- data/aws-crt-ffi/crt/aws-lc/util/codecov-ci.sh +82 -0
- data/aws-crt-ffi/crt/aws-lc/util/convert_wycheproof/convert_wycheproof.go +7 -5
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/ACVP.md +7 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/subprocess/hash.go +24 -9
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/subprocess/rsa.go +3 -4
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/subprocess/subprocess.go +15 -10
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA2-512-224.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/expected/SHA2-512-224.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/expected/SHAKE-128.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/expected/SHAKE-256.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/sha-tests/sha512-224-tests.json +1 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/sha-tests/shake-128-tests.json +1 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/sha-tests/shake-256-tests.json +1 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/tests.json +1 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA2-512-224.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/vectors/SHA2-512-224.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/vectors/SHAKE-128.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/acvptool/test/vectors/SHAKE-256.bz2 +0 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/modulewrapper/main.cc +4 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/acvp/modulewrapper/modulewrapper.cc +144 -1
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/delocate/delocate.go +9 -3
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/delocate/testdata/aarch64-Basic/in.s +4 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/delocate/testdata/aarch64-Basic/out.s +11 -0
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/inject_hash/inject_hash.go +13 -4
- data/aws-crt-ffi/crt/aws-lc/util/fipstools/test-break-kat.sh +2 -0
- data/aws-crt-ffi/crt/aws-lc/util/testconfig/testconfig.go +2 -1
- data/aws-crt-ffi/crt/s2n/api/s2n.h +9 -5
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/benches/handshake.rs +9 -6
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/benches/resumption.rs +14 -14
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/benches/throughput.rs +9 -6
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/src/harness.rs +106 -102
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/src/openssl.rs +24 -20
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/src/rustls.rs +28 -24
- data/aws-crt-ffi/crt/s2n/bindings/rust/bench/src/s2n_tls.rs +52 -50
- data/aws-crt-ffi/crt/s2n/bindings/rust/generate/Cargo.toml +1 -0
- data/aws-crt-ffi/crt/s2n/bindings/rust/integration/Cargo.toml +3 -0
- data/aws-crt-ffi/crt/s2n/bindings/rust/s2n-tls/Cargo.toml +2 -2
- data/aws-crt-ffi/crt/s2n/bindings/rust/s2n-tls/src/connection.rs +9 -0
- data/aws-crt-ffi/crt/s2n/bindings/rust/s2n-tls-sys/templates/Cargo.template +2 -1
- data/aws-crt-ffi/crt/s2n/bindings/rust/s2n-tls-tokio/Cargo.toml +2 -2
- data/aws-crt-ffi/crt/s2n/tests/cbmc/sources/make_common_datastructures.c +9 -2
- data/aws-crt-ffi/crt/s2n/tests/fuzz/s2n_client_cert_verify_recv_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/fuzz/s2n_hybrid_ecdhe_kyber_r3_fuzz_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/fuzz/s2n_tls13_cert_verify_recv_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/integrationv2/test_version_negotiation.py +4 -4
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_auth_selection_test.c +19 -9
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_client_auth_handshake_test.c +3 -3
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_client_cert_verify_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_client_hello_recv_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_client_hello_test.c +4 -4
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_client_signature_algorithms_extension_test.c +4 -5
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_connection_protocol_versions_test.c +390 -0
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_connection_test.c +8 -4
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_handshake_test.c +2 -1
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_quic_support_io_test.c +106 -0
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_security_policies_test.c +6 -2
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_self_talk_offload_signing_test.c +3 -3
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_self_talk_session_resumption_test.c +135 -0
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_server_new_session_ticket_test.c +32 -0
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_server_signature_algorithms_extension_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_signature_algorithms_test.c +307 -283
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_tls13_cert_request_test.c +1 -1
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_tls13_cert_verify_test.c +18 -17
- data/aws-crt-ffi/crt/s2n/tests/unit/s2n_x509_validator_test.c +125 -0
- data/aws-crt-ffi/crt/s2n/tls/extensions/s2n_client_signature_algorithms.c +8 -1
- data/aws-crt-ffi/crt/s2n/tls/extensions/s2n_client_supported_versions.c +43 -11
- data/aws-crt-ffi/crt/s2n/tls/extensions/s2n_client_supported_versions.h +3 -0
- data/aws-crt-ffi/crt/s2n/tls/extensions/s2n_server_signature_algorithms.c +8 -1
- data/aws-crt-ffi/crt/s2n/tls/s2n_auth_selection.c +4 -2
- data/aws-crt-ffi/crt/s2n/tls/s2n_client_cert_verify.c +7 -10
- data/aws-crt-ffi/crt/s2n/tls/s2n_client_hello.c +2 -2
- data/aws-crt-ffi/crt/s2n/tls/s2n_connection.c +75 -14
- data/aws-crt-ffi/crt/s2n/tls/s2n_handshake.h +2 -2
- data/aws-crt-ffi/crt/s2n/tls/s2n_post_handshake.c +1 -1
- data/aws-crt-ffi/crt/s2n/tls/s2n_post_handshake.h +1 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_quic_support.c +29 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_quic_support.h +5 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_security_policies.c +40 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_security_policies.h +4 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_server_cert_request.c +1 -1
- data/aws-crt-ffi/crt/s2n/tls/s2n_server_hello.c +0 -3
- data/aws-crt-ffi/crt/s2n/tls/s2n_server_key_exchange.c +8 -9
- data/aws-crt-ffi/crt/s2n/tls/s2n_server_new_session_ticket.c +8 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_signature_algorithms.c +111 -72
- data/aws-crt-ffi/crt/s2n/tls/s2n_signature_algorithms.h +11 -9
- data/aws-crt-ffi/crt/s2n/tls/s2n_signature_scheme.c +9 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_signature_scheme.h +2 -0
- data/aws-crt-ffi/crt/s2n/tls/s2n_tls13_certificate_verify.c +12 -18
- data/aws-crt-ffi/crt/s2n/tls/s2n_x509_validator.c +7 -7
- data/aws-crt-ffi/src/api.h +1 -0
- data/lib/aws-crt/native.rb +1 -1
- metadata +68 -5
- data/aws-crt-ffi/crt/aws-lc/tests/ci/cdk/cdk/ssm/m1_tests_ssm_document.yaml +0 -34
- data/aws-crt-ffi/crt/aws-lc/tests/ci/run_m1_ec2_instance.sh +0 -96
@@ -13,7 +13,8 @@
|
|
13
13
|
// this returns the X coordinate of n * P = (X, Y), or 0 when n * P is the
|
14
14
|
// point at infinity. Both n and X inputs are first slightly modified/mangled
|
15
15
|
// as specified in the relevant RFC (https://www.rfc-editor.org/rfc/rfc7748);
|
16
|
-
// in particular the lower three bits of n are set to zero.
|
16
|
+
// in particular the lower three bits of n are set to zero. Does not implement
|
17
|
+
// the zero-check specified in Section 6.1.
|
17
18
|
//
|
18
19
|
// Standard ARM ABI: X0 = res, X1 = scalar, X2 = point
|
19
20
|
// ----------------------------------------------------------------------------
|
@@ -633,356 +634,1046 @@ curve25519_x25519_alt_scalarloop:
|
|
633
634
|
mul_p25519(zn,p,e)
|
634
635
|
|
635
636
|
// The projective result of the scalar multiplication is now (xn,zn).
|
636
|
-
//
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
//
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
mov
|
693
|
-
mov
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
cmp
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
add
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
ldr
|
763
|
-
|
764
|
-
mul
|
765
|
-
|
766
|
-
|
767
|
-
adc
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
adc
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
adds
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
umulh
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
mul
|
794
|
-
umulh
|
795
|
-
adds
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
mul
|
803
|
-
|
804
|
-
|
805
|
-
adc
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
ldr
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
mul
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
mul
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
mul
|
893
|
-
|
894
|
-
adds
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
add
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
adcs
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
mov
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
637
|
+
// Prepare to call the modular inverse function to get xm = 1/zn
|
638
|
+
|
639
|
+
add x0, xm
|
640
|
+
add x1, zn
|
641
|
+
|
642
|
+
// Inline copy of bignum_inv_p25519, identical except for stripping out
|
643
|
+
// the prologue and epilogue saving and restoring registers and making
|
644
|
+
// and reclaiming room on the stack. For more details and explanations see
|
645
|
+
// "arm/curve25519/bignum_inv_p25519.S". Note that the stack it uses for
|
646
|
+
// its own temporaries is 128 bytes, so it has no effect on variables
|
647
|
+
// that are needed in the rest of our computation here: res, xm and zn.
|
648
|
+
|
649
|
+
mov x20, x0
|
650
|
+
mov x10, #0xffffffffffffffed
|
651
|
+
mov x11, #0xffffffffffffffff
|
652
|
+
stp x10, x11, [sp]
|
653
|
+
mov x12, #0x7fffffffffffffff
|
654
|
+
stp x11, x12, [sp, #16]
|
655
|
+
ldp x2, x3, [x1]
|
656
|
+
ldp x4, x5, [x1, #16]
|
657
|
+
mov x7, #0x13
|
658
|
+
lsr x6, x5, #63
|
659
|
+
madd x6, x7, x6, x7
|
660
|
+
adds x2, x2, x6
|
661
|
+
adcs x3, x3, xzr
|
662
|
+
adcs x4, x4, xzr
|
663
|
+
orr x5, x5, #0x8000000000000000
|
664
|
+
adcs x5, x5, xzr
|
665
|
+
csel x6, x7, xzr, cc
|
666
|
+
subs x2, x2, x6
|
667
|
+
sbcs x3, x3, xzr
|
668
|
+
sbcs x4, x4, xzr
|
669
|
+
sbc x5, x5, xzr
|
670
|
+
and x5, x5, #0x7fffffffffffffff
|
671
|
+
stp x2, x3, [sp, #32]
|
672
|
+
stp x4, x5, [sp, #48]
|
673
|
+
stp xzr, xzr, [sp, #64]
|
674
|
+
stp xzr, xzr, [sp, #80]
|
675
|
+
mov x10, #0x2099
|
676
|
+
movk x10, #0x7502, lsl #16
|
677
|
+
movk x10, #0x9e23, lsl #32
|
678
|
+
movk x10, #0xa0f9, lsl #48
|
679
|
+
mov x11, #0x2595
|
680
|
+
movk x11, #0x1d13, lsl #16
|
681
|
+
movk x11, #0x8f3f, lsl #32
|
682
|
+
movk x11, #0xa8c6, lsl #48
|
683
|
+
mov x12, #0x5242
|
684
|
+
movk x12, #0x5ac, lsl #16
|
685
|
+
movk x12, #0x8938, lsl #32
|
686
|
+
movk x12, #0x6c6c, lsl #48
|
687
|
+
mov x13, #0x615
|
688
|
+
movk x13, #0x4177, lsl #16
|
689
|
+
movk x13, #0x8b2, lsl #32
|
690
|
+
movk x13, #0x2765, lsl #48
|
691
|
+
stp x10, x11, [sp, #96]
|
692
|
+
stp x12, x13, [sp, #112]
|
693
|
+
mov x21, #0xa
|
694
|
+
mov x22, #0x1
|
695
|
+
b curve25519_x25519_alt_invmidloop
|
696
|
+
curve25519_x25519_alt_invloop:
|
697
|
+
cmp x10, xzr
|
698
|
+
csetm x14, mi
|
699
|
+
cneg x10, x10, mi
|
700
|
+
cmp x11, xzr
|
701
|
+
csetm x15, mi
|
702
|
+
cneg x11, x11, mi
|
703
|
+
cmp x12, xzr
|
704
|
+
csetm x16, mi
|
705
|
+
cneg x12, x12, mi
|
706
|
+
cmp x13, xzr
|
707
|
+
csetm x17, mi
|
708
|
+
cneg x13, x13, mi
|
709
|
+
and x0, x10, x14
|
710
|
+
and x1, x11, x15
|
711
|
+
add x9, x0, x1
|
712
|
+
and x0, x12, x16
|
713
|
+
and x1, x13, x17
|
714
|
+
add x19, x0, x1
|
715
|
+
ldr x7, [sp]
|
716
|
+
eor x1, x7, x14
|
717
|
+
mul x0, x1, x10
|
718
|
+
umulh x1, x1, x10
|
719
|
+
adds x4, x9, x0
|
720
|
+
adc x2, xzr, x1
|
721
|
+
ldr x8, [sp, #32]
|
722
|
+
eor x1, x8, x15
|
723
|
+
mul x0, x1, x11
|
724
|
+
umulh x1, x1, x11
|
725
|
+
adds x4, x4, x0
|
726
|
+
adc x2, x2, x1
|
727
|
+
eor x1, x7, x16
|
728
|
+
mul x0, x1, x12
|
729
|
+
umulh x1, x1, x12
|
730
|
+
adds x5, x19, x0
|
731
|
+
adc x3, xzr, x1
|
732
|
+
eor x1, x8, x17
|
733
|
+
mul x0, x1, x13
|
734
|
+
umulh x1, x1, x13
|
735
|
+
adds x5, x5, x0
|
736
|
+
adc x3, x3, x1
|
737
|
+
ldr x7, [sp, #8]
|
738
|
+
eor x1, x7, x14
|
739
|
+
mul x0, x1, x10
|
740
|
+
umulh x1, x1, x10
|
741
|
+
adds x2, x2, x0
|
742
|
+
adc x6, xzr, x1
|
743
|
+
ldr x8, [sp, #40]
|
744
|
+
eor x1, x8, x15
|
745
|
+
mul x0, x1, x11
|
746
|
+
umulh x1, x1, x11
|
747
|
+
adds x2, x2, x0
|
748
|
+
adc x6, x6, x1
|
749
|
+
extr x4, x2, x4, #59
|
750
|
+
str x4, [sp]
|
751
|
+
eor x1, x7, x16
|
752
|
+
mul x0, x1, x12
|
753
|
+
umulh x1, x1, x12
|
754
|
+
adds x3, x3, x0
|
755
|
+
adc x4, xzr, x1
|
756
|
+
eor x1, x8, x17
|
757
|
+
mul x0, x1, x13
|
758
|
+
umulh x1, x1, x13
|
759
|
+
adds x3, x3, x0
|
760
|
+
adc x4, x4, x1
|
761
|
+
extr x5, x3, x5, #59
|
762
|
+
str x5, [sp, #32]
|
763
|
+
ldr x7, [sp, #16]
|
764
|
+
eor x1, x7, x14
|
765
|
+
mul x0, x1, x10
|
766
|
+
umulh x1, x1, x10
|
767
|
+
adds x6, x6, x0
|
768
|
+
adc x5, xzr, x1
|
769
|
+
ldr x8, [sp, #48]
|
770
|
+
eor x1, x8, x15
|
771
|
+
mul x0, x1, x11
|
772
|
+
umulh x1, x1, x11
|
773
|
+
adds x6, x6, x0
|
774
|
+
adc x5, x5, x1
|
775
|
+
extr x2, x6, x2, #59
|
776
|
+
str x2, [sp, #8]
|
777
|
+
eor x1, x7, x16
|
778
|
+
mul x0, x1, x12
|
779
|
+
umulh x1, x1, x12
|
780
|
+
adds x4, x4, x0
|
781
|
+
adc x2, xzr, x1
|
782
|
+
eor x1, x8, x17
|
783
|
+
mul x0, x1, x13
|
784
|
+
umulh x1, x1, x13
|
785
|
+
adds x4, x4, x0
|
786
|
+
adc x2, x2, x1
|
787
|
+
extr x3, x4, x3, #59
|
788
|
+
str x3, [sp, #40]
|
789
|
+
ldr x7, [sp, #24]
|
790
|
+
eor x1, x7, x14
|
791
|
+
asr x3, x1, #63
|
792
|
+
and x3, x3, x10
|
793
|
+
neg x3, x3
|
794
|
+
mul x0, x1, x10
|
795
|
+
umulh x1, x1, x10
|
796
|
+
adds x5, x5, x0
|
797
|
+
adc x3, x3, x1
|
798
|
+
ldr x8, [sp, #56]
|
799
|
+
eor x1, x8, x15
|
800
|
+
asr x0, x1, #63
|
801
|
+
and x0, x0, x11
|
802
|
+
sub x3, x3, x0
|
803
|
+
mul x0, x1, x11
|
804
|
+
umulh x1, x1, x11
|
805
|
+
adds x5, x5, x0
|
806
|
+
adc x3, x3, x1
|
807
|
+
extr x6, x5, x6, #59
|
808
|
+
str x6, [sp, #16]
|
809
|
+
extr x5, x3, x5, #59
|
810
|
+
str x5, [sp, #24]
|
811
|
+
eor x1, x7, x16
|
812
|
+
asr x5, x1, #63
|
813
|
+
and x5, x5, x12
|
814
|
+
neg x5, x5
|
815
|
+
mul x0, x1, x12
|
816
|
+
umulh x1, x1, x12
|
817
|
+
adds x2, x2, x0
|
818
|
+
adc x5, x5, x1
|
819
|
+
eor x1, x8, x17
|
820
|
+
asr x0, x1, #63
|
821
|
+
and x0, x0, x13
|
822
|
+
sub x5, x5, x0
|
823
|
+
mul x0, x1, x13
|
824
|
+
umulh x1, x1, x13
|
825
|
+
adds x2, x2, x0
|
826
|
+
adc x5, x5, x1
|
827
|
+
extr x4, x2, x4, #59
|
828
|
+
str x4, [sp, #48]
|
829
|
+
extr x2, x5, x2, #59
|
830
|
+
str x2, [sp, #56]
|
831
|
+
ldr x7, [sp, #64]
|
832
|
+
eor x1, x7, x14
|
833
|
+
mul x0, x1, x10
|
834
|
+
umulh x1, x1, x10
|
835
|
+
adds x4, x9, x0
|
836
|
+
adc x2, xzr, x1
|
837
|
+
ldr x8, [sp, #96]
|
838
|
+
eor x1, x8, x15
|
839
|
+
mul x0, x1, x11
|
840
|
+
umulh x1, x1, x11
|
841
|
+
adds x4, x4, x0
|
842
|
+
str x4, [sp, #64]
|
843
|
+
adc x2, x2, x1
|
844
|
+
eor x1, x7, x16
|
845
|
+
mul x0, x1, x12
|
846
|
+
umulh x1, x1, x12
|
847
|
+
adds x5, x19, x0
|
848
|
+
adc x3, xzr, x1
|
849
|
+
eor x1, x8, x17
|
850
|
+
mul x0, x1, x13
|
851
|
+
umulh x1, x1, x13
|
852
|
+
adds x5, x5, x0
|
853
|
+
str x5, [sp, #96]
|
854
|
+
adc x3, x3, x1
|
855
|
+
ldr x7, [sp, #72]
|
856
|
+
eor x1, x7, x14
|
857
|
+
mul x0, x1, x10
|
858
|
+
umulh x1, x1, x10
|
859
|
+
adds x2, x2, x0
|
860
|
+
adc x6, xzr, x1
|
861
|
+
ldr x8, [sp, #104]
|
862
|
+
eor x1, x8, x15
|
863
|
+
mul x0, x1, x11
|
864
|
+
umulh x1, x1, x11
|
865
|
+
adds x2, x2, x0
|
866
|
+
str x2, [sp, #72]
|
867
|
+
adc x6, x6, x1
|
868
|
+
eor x1, x7, x16
|
869
|
+
mul x0, x1, x12
|
870
|
+
umulh x1, x1, x12
|
871
|
+
adds x3, x3, x0
|
872
|
+
adc x4, xzr, x1
|
873
|
+
eor x1, x8, x17
|
874
|
+
mul x0, x1, x13
|
875
|
+
umulh x1, x1, x13
|
876
|
+
adds x3, x3, x0
|
877
|
+
str x3, [sp, #104]
|
878
|
+
adc x4, x4, x1
|
879
|
+
ldr x7, [sp, #80]
|
880
|
+
eor x1, x7, x14
|
881
|
+
mul x0, x1, x10
|
882
|
+
umulh x1, x1, x10
|
883
|
+
adds x6, x6, x0
|
884
|
+
adc x5, xzr, x1
|
885
|
+
ldr x8, [sp, #112]
|
886
|
+
eor x1, x8, x15
|
887
|
+
mul x0, x1, x11
|
888
|
+
umulh x1, x1, x11
|
889
|
+
adds x6, x6, x0
|
890
|
+
str x6, [sp, #80]
|
891
|
+
adc x5, x5, x1
|
892
|
+
eor x1, x7, x16
|
893
|
+
mul x0, x1, x12
|
894
|
+
umulh x1, x1, x12
|
895
|
+
adds x4, x4, x0
|
896
|
+
adc x2, xzr, x1
|
897
|
+
eor x1, x8, x17
|
898
|
+
mul x0, x1, x13
|
899
|
+
umulh x1, x1, x13
|
900
|
+
adds x4, x4, x0
|
901
|
+
str x4, [sp, #112]
|
902
|
+
adc x2, x2, x1
|
903
|
+
ldr x7, [sp, #88]
|
904
|
+
eor x1, x7, x14
|
905
|
+
and x3, x14, x10
|
906
|
+
neg x3, x3
|
907
|
+
mul x0, x1, x10
|
908
|
+
umulh x1, x1, x10
|
909
|
+
adds x5, x5, x0
|
910
|
+
adc x3, x3, x1
|
911
|
+
ldr x8, [sp, #120]
|
912
|
+
eor x1, x8, x15
|
913
|
+
and x0, x15, x11
|
914
|
+
sub x3, x3, x0
|
915
|
+
mul x0, x1, x11
|
916
|
+
umulh x1, x1, x11
|
917
|
+
adds x5, x5, x0
|
918
|
+
adc x3, x3, x1
|
919
|
+
extr x6, x3, x5, #63
|
920
|
+
ldp x0, x1, [sp, #64]
|
921
|
+
add x6, x6, x3, asr #63
|
922
|
+
mov x3, #0x13
|
923
|
+
mul x4, x6, x3
|
924
|
+
add x5, x5, x6, lsl #63
|
925
|
+
smulh x3, x6, x3
|
926
|
+
ldr x6, [sp, #80]
|
927
|
+
adds x0, x0, x4
|
928
|
+
adcs x1, x1, x3
|
929
|
+
asr x3, x3, #63
|
930
|
+
adcs x6, x6, x3
|
931
|
+
adc x5, x5, x3
|
932
|
+
stp x0, x1, [sp, #64]
|
933
|
+
stp x6, x5, [sp, #80]
|
934
|
+
eor x1, x7, x16
|
935
|
+
and x5, x16, x12
|
936
|
+
neg x5, x5
|
937
|
+
mul x0, x1, x12
|
938
|
+
umulh x1, x1, x12
|
939
|
+
adds x2, x2, x0
|
940
|
+
adc x5, x5, x1
|
941
|
+
eor x1, x8, x17
|
942
|
+
and x0, x17, x13
|
943
|
+
sub x5, x5, x0
|
944
|
+
mul x0, x1, x13
|
945
|
+
umulh x1, x1, x13
|
946
|
+
adds x2, x2, x0
|
947
|
+
adc x5, x5, x1
|
948
|
+
extr x6, x5, x2, #63
|
949
|
+
ldp x0, x1, [sp, #96]
|
950
|
+
add x6, x6, x5, asr #63
|
951
|
+
mov x5, #0x13
|
952
|
+
mul x4, x6, x5
|
953
|
+
add x2, x2, x6, lsl #63
|
954
|
+
smulh x5, x6, x5
|
955
|
+
ldr x3, [sp, #112]
|
956
|
+
adds x0, x0, x4
|
957
|
+
adcs x1, x1, x5
|
958
|
+
asr x5, x5, #63
|
959
|
+
adcs x3, x3, x5
|
960
|
+
adc x2, x2, x5
|
961
|
+
stp x0, x1, [sp, #96]
|
962
|
+
stp x3, x2, [sp, #112]
|
963
|
+
curve25519_x25519_alt_invmidloop:
|
964
|
+
mov x1, x22
|
965
|
+
ldr x2, [sp]
|
966
|
+
ldr x3, [sp, #32]
|
967
|
+
and x4, x2, #0xfffff
|
968
|
+
orr x4, x4, #0xfffffe0000000000
|
969
|
+
and x5, x3, #0xfffff
|
970
|
+
orr x5, x5, #0xc000000000000000
|
971
|
+
tst x5, #0x1
|
972
|
+
csel x6, x4, xzr, ne
|
973
|
+
ccmp x1, xzr, #0x8, ne
|
974
|
+
cneg x1, x1, ge
|
975
|
+
cneg x6, x6, ge
|
976
|
+
csel x4, x5, x4, ge
|
977
|
+
add x5, x5, x6
|
978
|
+
add x1, x1, #0x2
|
979
|
+
tst x5, #0x2
|
980
|
+
asr x5, x5, #1
|
981
|
+
csel x6, x4, xzr, ne
|
982
|
+
ccmp x1, xzr, #0x8, ne
|
983
|
+
cneg x1, x1, ge
|
984
|
+
cneg x6, x6, ge
|
985
|
+
csel x4, x5, x4, ge
|
986
|
+
add x5, x5, x6
|
987
|
+
add x1, x1, #0x2
|
988
|
+
tst x5, #0x2
|
989
|
+
asr x5, x5, #1
|
990
|
+
csel x6, x4, xzr, ne
|
991
|
+
ccmp x1, xzr, #0x8, ne
|
992
|
+
cneg x1, x1, ge
|
993
|
+
cneg x6, x6, ge
|
994
|
+
csel x4, x5, x4, ge
|
995
|
+
add x5, x5, x6
|
996
|
+
add x1, x1, #0x2
|
997
|
+
tst x5, #0x2
|
998
|
+
asr x5, x5, #1
|
999
|
+
csel x6, x4, xzr, ne
|
1000
|
+
ccmp x1, xzr, #0x8, ne
|
1001
|
+
cneg x1, x1, ge
|
1002
|
+
cneg x6, x6, ge
|
1003
|
+
csel x4, x5, x4, ge
|
1004
|
+
add x5, x5, x6
|
1005
|
+
add x1, x1, #0x2
|
1006
|
+
tst x5, #0x2
|
1007
|
+
asr x5, x5, #1
|
1008
|
+
csel x6, x4, xzr, ne
|
1009
|
+
ccmp x1, xzr, #0x8, ne
|
1010
|
+
cneg x1, x1, ge
|
1011
|
+
cneg x6, x6, ge
|
1012
|
+
csel x4, x5, x4, ge
|
1013
|
+
add x5, x5, x6
|
1014
|
+
add x1, x1, #0x2
|
1015
|
+
tst x5, #0x2
|
1016
|
+
asr x5, x5, #1
|
1017
|
+
csel x6, x4, xzr, ne
|
1018
|
+
ccmp x1, xzr, #0x8, ne
|
1019
|
+
cneg x1, x1, ge
|
1020
|
+
cneg x6, x6, ge
|
1021
|
+
csel x4, x5, x4, ge
|
1022
|
+
add x5, x5, x6
|
1023
|
+
add x1, x1, #0x2
|
1024
|
+
tst x5, #0x2
|
1025
|
+
asr x5, x5, #1
|
1026
|
+
csel x6, x4, xzr, ne
|
1027
|
+
ccmp x1, xzr, #0x8, ne
|
1028
|
+
cneg x1, x1, ge
|
1029
|
+
cneg x6, x6, ge
|
1030
|
+
csel x4, x5, x4, ge
|
1031
|
+
add x5, x5, x6
|
1032
|
+
add x1, x1, #0x2
|
1033
|
+
tst x5, #0x2
|
1034
|
+
asr x5, x5, #1
|
1035
|
+
csel x6, x4, xzr, ne
|
1036
|
+
ccmp x1, xzr, #0x8, ne
|
1037
|
+
cneg x1, x1, ge
|
1038
|
+
cneg x6, x6, ge
|
1039
|
+
csel x4, x5, x4, ge
|
1040
|
+
add x5, x5, x6
|
1041
|
+
add x1, x1, #0x2
|
1042
|
+
tst x5, #0x2
|
1043
|
+
asr x5, x5, #1
|
1044
|
+
csel x6, x4, xzr, ne
|
1045
|
+
ccmp x1, xzr, #0x8, ne
|
1046
|
+
cneg x1, x1, ge
|
1047
|
+
cneg x6, x6, ge
|
1048
|
+
csel x4, x5, x4, ge
|
1049
|
+
add x5, x5, x6
|
1050
|
+
add x1, x1, #0x2
|
1051
|
+
tst x5, #0x2
|
1052
|
+
asr x5, x5, #1
|
1053
|
+
csel x6, x4, xzr, ne
|
1054
|
+
ccmp x1, xzr, #0x8, ne
|
1055
|
+
cneg x1, x1, ge
|
1056
|
+
cneg x6, x6, ge
|
1057
|
+
csel x4, x5, x4, ge
|
1058
|
+
add x5, x5, x6
|
1059
|
+
add x1, x1, #0x2
|
1060
|
+
tst x5, #0x2
|
1061
|
+
asr x5, x5, #1
|
1062
|
+
csel x6, x4, xzr, ne
|
1063
|
+
ccmp x1, xzr, #0x8, ne
|
1064
|
+
cneg x1, x1, ge
|
1065
|
+
cneg x6, x6, ge
|
1066
|
+
csel x4, x5, x4, ge
|
1067
|
+
add x5, x5, x6
|
1068
|
+
add x1, x1, #0x2
|
1069
|
+
tst x5, #0x2
|
1070
|
+
asr x5, x5, #1
|
1071
|
+
csel x6, x4, xzr, ne
|
1072
|
+
ccmp x1, xzr, #0x8, ne
|
1073
|
+
cneg x1, x1, ge
|
1074
|
+
cneg x6, x6, ge
|
1075
|
+
csel x4, x5, x4, ge
|
1076
|
+
add x5, x5, x6
|
1077
|
+
add x1, x1, #0x2
|
1078
|
+
tst x5, #0x2
|
1079
|
+
asr x5, x5, #1
|
1080
|
+
csel x6, x4, xzr, ne
|
1081
|
+
ccmp x1, xzr, #0x8, ne
|
1082
|
+
cneg x1, x1, ge
|
1083
|
+
cneg x6, x6, ge
|
1084
|
+
csel x4, x5, x4, ge
|
1085
|
+
add x5, x5, x6
|
1086
|
+
add x1, x1, #0x2
|
1087
|
+
tst x5, #0x2
|
1088
|
+
asr x5, x5, #1
|
1089
|
+
csel x6, x4, xzr, ne
|
1090
|
+
ccmp x1, xzr, #0x8, ne
|
1091
|
+
cneg x1, x1, ge
|
1092
|
+
cneg x6, x6, ge
|
1093
|
+
csel x4, x5, x4, ge
|
1094
|
+
add x5, x5, x6
|
1095
|
+
add x1, x1, #0x2
|
1096
|
+
tst x5, #0x2
|
1097
|
+
asr x5, x5, #1
|
1098
|
+
csel x6, x4, xzr, ne
|
1099
|
+
ccmp x1, xzr, #0x8, ne
|
1100
|
+
cneg x1, x1, ge
|
1101
|
+
cneg x6, x6, ge
|
1102
|
+
csel x4, x5, x4, ge
|
1103
|
+
add x5, x5, x6
|
1104
|
+
add x1, x1, #0x2
|
1105
|
+
tst x5, #0x2
|
1106
|
+
asr x5, x5, #1
|
1107
|
+
csel x6, x4, xzr, ne
|
1108
|
+
ccmp x1, xzr, #0x8, ne
|
1109
|
+
cneg x1, x1, ge
|
1110
|
+
cneg x6, x6, ge
|
1111
|
+
csel x4, x5, x4, ge
|
1112
|
+
add x5, x5, x6
|
1113
|
+
add x1, x1, #0x2
|
1114
|
+
tst x5, #0x2
|
1115
|
+
asr x5, x5, #1
|
1116
|
+
csel x6, x4, xzr, ne
|
1117
|
+
ccmp x1, xzr, #0x8, ne
|
1118
|
+
cneg x1, x1, ge
|
1119
|
+
cneg x6, x6, ge
|
1120
|
+
csel x4, x5, x4, ge
|
1121
|
+
add x5, x5, x6
|
1122
|
+
add x1, x1, #0x2
|
1123
|
+
tst x5, #0x2
|
1124
|
+
asr x5, x5, #1
|
1125
|
+
csel x6, x4, xzr, ne
|
1126
|
+
ccmp x1, xzr, #0x8, ne
|
1127
|
+
cneg x1, x1, ge
|
1128
|
+
cneg x6, x6, ge
|
1129
|
+
csel x4, x5, x4, ge
|
1130
|
+
add x5, x5, x6
|
1131
|
+
add x1, x1, #0x2
|
1132
|
+
tst x5, #0x2
|
1133
|
+
asr x5, x5, #1
|
1134
|
+
csel x6, x4, xzr, ne
|
1135
|
+
ccmp x1, xzr, #0x8, ne
|
1136
|
+
cneg x1, x1, ge
|
1137
|
+
cneg x6, x6, ge
|
1138
|
+
csel x4, x5, x4, ge
|
1139
|
+
add x5, x5, x6
|
1140
|
+
add x1, x1, #0x2
|
1141
|
+
tst x5, #0x2
|
1142
|
+
asr x5, x5, #1
|
1143
|
+
csel x6, x4, xzr, ne
|
1144
|
+
ccmp x1, xzr, #0x8, ne
|
1145
|
+
cneg x1, x1, ge
|
1146
|
+
cneg x6, x6, ge
|
1147
|
+
csel x4, x5, x4, ge
|
1148
|
+
add x5, x5, x6
|
1149
|
+
add x1, x1, #0x2
|
1150
|
+
asr x5, x5, #1
|
1151
|
+
add x8, x4, #0x100, lsl #12
|
1152
|
+
sbfx x8, x8, #21, #21
|
1153
|
+
mov x11, #0x100000
|
1154
|
+
add x11, x11, x11, lsl #21
|
1155
|
+
add x9, x4, x11
|
1156
|
+
asr x9, x9, #42
|
1157
|
+
add x10, x5, #0x100, lsl #12
|
1158
|
+
sbfx x10, x10, #21, #21
|
1159
|
+
add x11, x5, x11
|
1160
|
+
asr x11, x11, #42
|
1161
|
+
mul x6, x8, x2
|
1162
|
+
mul x7, x9, x3
|
1163
|
+
mul x2, x10, x2
|
1164
|
+
mul x3, x11, x3
|
1165
|
+
add x4, x6, x7
|
1166
|
+
add x5, x2, x3
|
1167
|
+
asr x2, x4, #20
|
1168
|
+
asr x3, x5, #20
|
1169
|
+
and x4, x2, #0xfffff
|
1170
|
+
orr x4, x4, #0xfffffe0000000000
|
1171
|
+
and x5, x3, #0xfffff
|
1172
|
+
orr x5, x5, #0xc000000000000000
|
1173
|
+
tst x5, #0x1
|
1174
|
+
csel x6, x4, xzr, ne
|
1175
|
+
ccmp x1, xzr, #0x8, ne
|
1176
|
+
cneg x1, x1, ge
|
1177
|
+
cneg x6, x6, ge
|
1178
|
+
csel x4, x5, x4, ge
|
1179
|
+
add x5, x5, x6
|
1180
|
+
add x1, x1, #0x2
|
1181
|
+
tst x5, #0x2
|
1182
|
+
asr x5, x5, #1
|
1183
|
+
csel x6, x4, xzr, ne
|
1184
|
+
ccmp x1, xzr, #0x8, ne
|
1185
|
+
cneg x1, x1, ge
|
1186
|
+
cneg x6, x6, ge
|
1187
|
+
csel x4, x5, x4, ge
|
1188
|
+
add x5, x5, x6
|
1189
|
+
add x1, x1, #0x2
|
1190
|
+
tst x5, #0x2
|
1191
|
+
asr x5, x5, #1
|
1192
|
+
csel x6, x4, xzr, ne
|
1193
|
+
ccmp x1, xzr, #0x8, ne
|
1194
|
+
cneg x1, x1, ge
|
1195
|
+
cneg x6, x6, ge
|
1196
|
+
csel x4, x5, x4, ge
|
1197
|
+
add x5, x5, x6
|
1198
|
+
add x1, x1, #0x2
|
1199
|
+
tst x5, #0x2
|
1200
|
+
asr x5, x5, #1
|
1201
|
+
csel x6, x4, xzr, ne
|
1202
|
+
ccmp x1, xzr, #0x8, ne
|
1203
|
+
cneg x1, x1, ge
|
1204
|
+
cneg x6, x6, ge
|
1205
|
+
csel x4, x5, x4, ge
|
1206
|
+
add x5, x5, x6
|
1207
|
+
add x1, x1, #0x2
|
1208
|
+
tst x5, #0x2
|
1209
|
+
asr x5, x5, #1
|
1210
|
+
csel x6, x4, xzr, ne
|
1211
|
+
ccmp x1, xzr, #0x8, ne
|
1212
|
+
cneg x1, x1, ge
|
1213
|
+
cneg x6, x6, ge
|
1214
|
+
csel x4, x5, x4, ge
|
1215
|
+
add x5, x5, x6
|
1216
|
+
add x1, x1, #0x2
|
1217
|
+
tst x5, #0x2
|
1218
|
+
asr x5, x5, #1
|
1219
|
+
csel x6, x4, xzr, ne
|
1220
|
+
ccmp x1, xzr, #0x8, ne
|
1221
|
+
cneg x1, x1, ge
|
1222
|
+
cneg x6, x6, ge
|
1223
|
+
csel x4, x5, x4, ge
|
1224
|
+
add x5, x5, x6
|
1225
|
+
add x1, x1, #0x2
|
1226
|
+
tst x5, #0x2
|
1227
|
+
asr x5, x5, #1
|
1228
|
+
csel x6, x4, xzr, ne
|
1229
|
+
ccmp x1, xzr, #0x8, ne
|
1230
|
+
cneg x1, x1, ge
|
1231
|
+
cneg x6, x6, ge
|
1232
|
+
csel x4, x5, x4, ge
|
1233
|
+
add x5, x5, x6
|
1234
|
+
add x1, x1, #0x2
|
1235
|
+
tst x5, #0x2
|
1236
|
+
asr x5, x5, #1
|
1237
|
+
csel x6, x4, xzr, ne
|
1238
|
+
ccmp x1, xzr, #0x8, ne
|
1239
|
+
cneg x1, x1, ge
|
1240
|
+
cneg x6, x6, ge
|
1241
|
+
csel x4, x5, x4, ge
|
1242
|
+
add x5, x5, x6
|
1243
|
+
add x1, x1, #0x2
|
1244
|
+
tst x5, #0x2
|
1245
|
+
asr x5, x5, #1
|
1246
|
+
csel x6, x4, xzr, ne
|
1247
|
+
ccmp x1, xzr, #0x8, ne
|
1248
|
+
cneg x1, x1, ge
|
1249
|
+
cneg x6, x6, ge
|
1250
|
+
csel x4, x5, x4, ge
|
1251
|
+
add x5, x5, x6
|
1252
|
+
add x1, x1, #0x2
|
1253
|
+
tst x5, #0x2
|
1254
|
+
asr x5, x5, #1
|
1255
|
+
csel x6, x4, xzr, ne
|
1256
|
+
ccmp x1, xzr, #0x8, ne
|
1257
|
+
cneg x1, x1, ge
|
1258
|
+
cneg x6, x6, ge
|
1259
|
+
csel x4, x5, x4, ge
|
1260
|
+
add x5, x5, x6
|
1261
|
+
add x1, x1, #0x2
|
1262
|
+
tst x5, #0x2
|
1263
|
+
asr x5, x5, #1
|
1264
|
+
csel x6, x4, xzr, ne
|
1265
|
+
ccmp x1, xzr, #0x8, ne
|
1266
|
+
cneg x1, x1, ge
|
1267
|
+
cneg x6, x6, ge
|
1268
|
+
csel x4, x5, x4, ge
|
1269
|
+
add x5, x5, x6
|
1270
|
+
add x1, x1, #0x2
|
1271
|
+
tst x5, #0x2
|
1272
|
+
asr x5, x5, #1
|
1273
|
+
csel x6, x4, xzr, ne
|
1274
|
+
ccmp x1, xzr, #0x8, ne
|
1275
|
+
cneg x1, x1, ge
|
1276
|
+
cneg x6, x6, ge
|
1277
|
+
csel x4, x5, x4, ge
|
1278
|
+
add x5, x5, x6
|
1279
|
+
add x1, x1, #0x2
|
1280
|
+
tst x5, #0x2
|
1281
|
+
asr x5, x5, #1
|
1282
|
+
csel x6, x4, xzr, ne
|
1283
|
+
ccmp x1, xzr, #0x8, ne
|
1284
|
+
cneg x1, x1, ge
|
1285
|
+
cneg x6, x6, ge
|
1286
|
+
csel x4, x5, x4, ge
|
1287
|
+
add x5, x5, x6
|
1288
|
+
add x1, x1, #0x2
|
1289
|
+
tst x5, #0x2
|
1290
|
+
asr x5, x5, #1
|
1291
|
+
csel x6, x4, xzr, ne
|
1292
|
+
ccmp x1, xzr, #0x8, ne
|
1293
|
+
cneg x1, x1, ge
|
1294
|
+
cneg x6, x6, ge
|
1295
|
+
csel x4, x5, x4, ge
|
1296
|
+
add x5, x5, x6
|
1297
|
+
add x1, x1, #0x2
|
1298
|
+
tst x5, #0x2
|
1299
|
+
asr x5, x5, #1
|
1300
|
+
csel x6, x4, xzr, ne
|
1301
|
+
ccmp x1, xzr, #0x8, ne
|
1302
|
+
cneg x1, x1, ge
|
1303
|
+
cneg x6, x6, ge
|
1304
|
+
csel x4, x5, x4, ge
|
1305
|
+
add x5, x5, x6
|
1306
|
+
add x1, x1, #0x2
|
1307
|
+
tst x5, #0x2
|
1308
|
+
asr x5, x5, #1
|
1309
|
+
csel x6, x4, xzr, ne
|
1310
|
+
ccmp x1, xzr, #0x8, ne
|
1311
|
+
cneg x1, x1, ge
|
1312
|
+
cneg x6, x6, ge
|
1313
|
+
csel x4, x5, x4, ge
|
1314
|
+
add x5, x5, x6
|
1315
|
+
add x1, x1, #0x2
|
1316
|
+
tst x5, #0x2
|
1317
|
+
asr x5, x5, #1
|
1318
|
+
csel x6, x4, xzr, ne
|
1319
|
+
ccmp x1, xzr, #0x8, ne
|
1320
|
+
cneg x1, x1, ge
|
1321
|
+
cneg x6, x6, ge
|
1322
|
+
csel x4, x5, x4, ge
|
1323
|
+
add x5, x5, x6
|
1324
|
+
add x1, x1, #0x2
|
1325
|
+
tst x5, #0x2
|
1326
|
+
asr x5, x5, #1
|
1327
|
+
csel x6, x4, xzr, ne
|
1328
|
+
ccmp x1, xzr, #0x8, ne
|
1329
|
+
cneg x1, x1, ge
|
1330
|
+
cneg x6, x6, ge
|
1331
|
+
csel x4, x5, x4, ge
|
1332
|
+
add x5, x5, x6
|
1333
|
+
add x1, x1, #0x2
|
1334
|
+
tst x5, #0x2
|
1335
|
+
asr x5, x5, #1
|
1336
|
+
csel x6, x4, xzr, ne
|
1337
|
+
ccmp x1, xzr, #0x8, ne
|
1338
|
+
cneg x1, x1, ge
|
1339
|
+
cneg x6, x6, ge
|
1340
|
+
csel x4, x5, x4, ge
|
1341
|
+
add x5, x5, x6
|
1342
|
+
add x1, x1, #0x2
|
1343
|
+
tst x5, #0x2
|
1344
|
+
asr x5, x5, #1
|
1345
|
+
csel x6, x4, xzr, ne
|
1346
|
+
ccmp x1, xzr, #0x8, ne
|
1347
|
+
cneg x1, x1, ge
|
1348
|
+
cneg x6, x6, ge
|
1349
|
+
csel x4, x5, x4, ge
|
1350
|
+
add x5, x5, x6
|
1351
|
+
add x1, x1, #0x2
|
1352
|
+
asr x5, x5, #1
|
1353
|
+
add x12, x4, #0x100, lsl #12
|
1354
|
+
sbfx x12, x12, #21, #21
|
1355
|
+
mov x15, #0x100000
|
1356
|
+
add x15, x15, x15, lsl #21
|
1357
|
+
add x13, x4, x15
|
1358
|
+
asr x13, x13, #42
|
1359
|
+
add x14, x5, #0x100, lsl #12
|
1360
|
+
sbfx x14, x14, #21, #21
|
1361
|
+
add x15, x5, x15
|
1362
|
+
asr x15, x15, #42
|
1363
|
+
mul x6, x12, x2
|
1364
|
+
mul x7, x13, x3
|
1365
|
+
mul x2, x14, x2
|
1366
|
+
mul x3, x15, x3
|
1367
|
+
add x4, x6, x7
|
1368
|
+
add x5, x2, x3
|
1369
|
+
asr x2, x4, #20
|
1370
|
+
asr x3, x5, #20
|
1371
|
+
and x4, x2, #0xfffff
|
1372
|
+
orr x4, x4, #0xfffffe0000000000
|
1373
|
+
and x5, x3, #0xfffff
|
1374
|
+
orr x5, x5, #0xc000000000000000
|
1375
|
+
tst x5, #0x1
|
1376
|
+
csel x6, x4, xzr, ne
|
1377
|
+
ccmp x1, xzr, #0x8, ne
|
1378
|
+
cneg x1, x1, ge
|
1379
|
+
cneg x6, x6, ge
|
1380
|
+
csel x4, x5, x4, ge
|
1381
|
+
add x5, x5, x6
|
1382
|
+
add x1, x1, #0x2
|
1383
|
+
tst x5, #0x2
|
1384
|
+
asr x5, x5, #1
|
1385
|
+
csel x6, x4, xzr, ne
|
1386
|
+
ccmp x1, xzr, #0x8, ne
|
1387
|
+
cneg x1, x1, ge
|
1388
|
+
cneg x6, x6, ge
|
1389
|
+
csel x4, x5, x4, ge
|
1390
|
+
add x5, x5, x6
|
1391
|
+
add x1, x1, #0x2
|
1392
|
+
tst x5, #0x2
|
1393
|
+
asr x5, x5, #1
|
1394
|
+
csel x6, x4, xzr, ne
|
1395
|
+
ccmp x1, xzr, #0x8, ne
|
1396
|
+
cneg x1, x1, ge
|
1397
|
+
cneg x6, x6, ge
|
1398
|
+
csel x4, x5, x4, ge
|
1399
|
+
add x5, x5, x6
|
1400
|
+
add x1, x1, #0x2
|
1401
|
+
tst x5, #0x2
|
1402
|
+
asr x5, x5, #1
|
1403
|
+
csel x6, x4, xzr, ne
|
1404
|
+
ccmp x1, xzr, #0x8, ne
|
1405
|
+
cneg x1, x1, ge
|
1406
|
+
cneg x6, x6, ge
|
1407
|
+
csel x4, x5, x4, ge
|
1408
|
+
add x5, x5, x6
|
1409
|
+
add x1, x1, #0x2
|
1410
|
+
tst x5, #0x2
|
1411
|
+
asr x5, x5, #1
|
1412
|
+
csel x6, x4, xzr, ne
|
1413
|
+
ccmp x1, xzr, #0x8, ne
|
1414
|
+
cneg x1, x1, ge
|
1415
|
+
cneg x6, x6, ge
|
1416
|
+
csel x4, x5, x4, ge
|
1417
|
+
add x5, x5, x6
|
1418
|
+
add x1, x1, #0x2
|
1419
|
+
tst x5, #0x2
|
1420
|
+
asr x5, x5, #1
|
1421
|
+
csel x6, x4, xzr, ne
|
1422
|
+
ccmp x1, xzr, #0x8, ne
|
1423
|
+
cneg x1, x1, ge
|
1424
|
+
cneg x6, x6, ge
|
1425
|
+
csel x4, x5, x4, ge
|
1426
|
+
add x5, x5, x6
|
1427
|
+
add x1, x1, #0x2
|
1428
|
+
tst x5, #0x2
|
1429
|
+
asr x5, x5, #1
|
1430
|
+
csel x6, x4, xzr, ne
|
1431
|
+
ccmp x1, xzr, #0x8, ne
|
1432
|
+
cneg x1, x1, ge
|
1433
|
+
cneg x6, x6, ge
|
1434
|
+
csel x4, x5, x4, ge
|
1435
|
+
add x5, x5, x6
|
1436
|
+
add x1, x1, #0x2
|
1437
|
+
tst x5, #0x2
|
1438
|
+
asr x5, x5, #1
|
1439
|
+
csel x6, x4, xzr, ne
|
1440
|
+
ccmp x1, xzr, #0x8, ne
|
1441
|
+
cneg x1, x1, ge
|
1442
|
+
cneg x6, x6, ge
|
1443
|
+
csel x4, x5, x4, ge
|
1444
|
+
add x5, x5, x6
|
1445
|
+
add x1, x1, #0x2
|
1446
|
+
tst x5, #0x2
|
1447
|
+
asr x5, x5, #1
|
1448
|
+
csel x6, x4, xzr, ne
|
1449
|
+
ccmp x1, xzr, #0x8, ne
|
1450
|
+
cneg x1, x1, ge
|
1451
|
+
cneg x6, x6, ge
|
1452
|
+
csel x4, x5, x4, ge
|
1453
|
+
add x5, x5, x6
|
1454
|
+
add x1, x1, #0x2
|
1455
|
+
tst x5, #0x2
|
1456
|
+
asr x5, x5, #1
|
1457
|
+
csel x6, x4, xzr, ne
|
1458
|
+
ccmp x1, xzr, #0x8, ne
|
1459
|
+
cneg x1, x1, ge
|
1460
|
+
cneg x6, x6, ge
|
1461
|
+
csel x4, x5, x4, ge
|
1462
|
+
add x5, x5, x6
|
1463
|
+
add x1, x1, #0x2
|
1464
|
+
tst x5, #0x2
|
1465
|
+
asr x5, x5, #1
|
1466
|
+
mul x2, x12, x8
|
1467
|
+
mul x3, x12, x9
|
1468
|
+
mul x6, x14, x8
|
1469
|
+
mul x7, x14, x9
|
1470
|
+
madd x8, x13, x10, x2
|
1471
|
+
madd x9, x13, x11, x3
|
1472
|
+
madd x16, x15, x10, x6
|
1473
|
+
madd x17, x15, x11, x7
|
1474
|
+
csel x6, x4, xzr, ne
|
1475
|
+
ccmp x1, xzr, #0x8, ne
|
1476
|
+
cneg x1, x1, ge
|
1477
|
+
cneg x6, x6, ge
|
1478
|
+
csel x4, x5, x4, ge
|
1479
|
+
add x5, x5, x6
|
1480
|
+
add x1, x1, #0x2
|
1481
|
+
tst x5, #0x2
|
1482
|
+
asr x5, x5, #1
|
1483
|
+
csel x6, x4, xzr, ne
|
1484
|
+
ccmp x1, xzr, #0x8, ne
|
1485
|
+
cneg x1, x1, ge
|
1486
|
+
cneg x6, x6, ge
|
1487
|
+
csel x4, x5, x4, ge
|
1488
|
+
add x5, x5, x6
|
1489
|
+
add x1, x1, #0x2
|
1490
|
+
tst x5, #0x2
|
1491
|
+
asr x5, x5, #1
|
1492
|
+
csel x6, x4, xzr, ne
|
1493
|
+
ccmp x1, xzr, #0x8, ne
|
1494
|
+
cneg x1, x1, ge
|
1495
|
+
cneg x6, x6, ge
|
1496
|
+
csel x4, x5, x4, ge
|
1497
|
+
add x5, x5, x6
|
1498
|
+
add x1, x1, #0x2
|
1499
|
+
tst x5, #0x2
|
1500
|
+
asr x5, x5, #1
|
1501
|
+
csel x6, x4, xzr, ne
|
1502
|
+
ccmp x1, xzr, #0x8, ne
|
1503
|
+
cneg x1, x1, ge
|
1504
|
+
cneg x6, x6, ge
|
1505
|
+
csel x4, x5, x4, ge
|
1506
|
+
add x5, x5, x6
|
1507
|
+
add x1, x1, #0x2
|
1508
|
+
tst x5, #0x2
|
1509
|
+
asr x5, x5, #1
|
1510
|
+
csel x6, x4, xzr, ne
|
1511
|
+
ccmp x1, xzr, #0x8, ne
|
1512
|
+
cneg x1, x1, ge
|
1513
|
+
cneg x6, x6, ge
|
1514
|
+
csel x4, x5, x4, ge
|
1515
|
+
add x5, x5, x6
|
1516
|
+
add x1, x1, #0x2
|
1517
|
+
tst x5, #0x2
|
1518
|
+
asr x5, x5, #1
|
1519
|
+
csel x6, x4, xzr, ne
|
1520
|
+
ccmp x1, xzr, #0x8, ne
|
1521
|
+
cneg x1, x1, ge
|
1522
|
+
cneg x6, x6, ge
|
1523
|
+
csel x4, x5, x4, ge
|
1524
|
+
add x5, x5, x6
|
1525
|
+
add x1, x1, #0x2
|
1526
|
+
tst x5, #0x2
|
1527
|
+
asr x5, x5, #1
|
1528
|
+
csel x6, x4, xzr, ne
|
1529
|
+
ccmp x1, xzr, #0x8, ne
|
1530
|
+
cneg x1, x1, ge
|
1531
|
+
cneg x6, x6, ge
|
1532
|
+
csel x4, x5, x4, ge
|
1533
|
+
add x5, x5, x6
|
1534
|
+
add x1, x1, #0x2
|
1535
|
+
tst x5, #0x2
|
1536
|
+
asr x5, x5, #1
|
1537
|
+
csel x6, x4, xzr, ne
|
1538
|
+
ccmp x1, xzr, #0x8, ne
|
1539
|
+
cneg x1, x1, ge
|
1540
|
+
cneg x6, x6, ge
|
1541
|
+
csel x4, x5, x4, ge
|
1542
|
+
add x5, x5, x6
|
1543
|
+
add x1, x1, #0x2
|
1544
|
+
tst x5, #0x2
|
1545
|
+
asr x5, x5, #1
|
1546
|
+
csel x6, x4, xzr, ne
|
1547
|
+
ccmp x1, xzr, #0x8, ne
|
1548
|
+
cneg x1, x1, ge
|
1549
|
+
cneg x6, x6, ge
|
1550
|
+
csel x4, x5, x4, ge
|
1551
|
+
add x5, x5, x6
|
1552
|
+
add x1, x1, #0x2
|
1553
|
+
asr x5, x5, #1
|
1554
|
+
add x12, x4, #0x100, lsl #12
|
1555
|
+
sbfx x12, x12, #22, #21
|
1556
|
+
mov x15, #0x100000
|
1557
|
+
add x15, x15, x15, lsl #21
|
1558
|
+
add x13, x4, x15
|
1559
|
+
asr x13, x13, #43
|
1560
|
+
add x14, x5, #0x100, lsl #12
|
1561
|
+
sbfx x14, x14, #22, #21
|
1562
|
+
add x15, x5, x15
|
1563
|
+
asr x15, x15, #43
|
1564
|
+
mneg x2, x12, x8
|
1565
|
+
mneg x3, x12, x9
|
1566
|
+
mneg x4, x14, x8
|
1567
|
+
mneg x5, x14, x9
|
1568
|
+
msub x10, x13, x16, x2
|
1569
|
+
msub x11, x13, x17, x3
|
1570
|
+
msub x12, x15, x16, x4
|
1571
|
+
msub x13, x15, x17, x5
|
1572
|
+
mov x22, x1
|
1573
|
+
subs x21, x21, #0x1
|
1574
|
+
b.ne curve25519_x25519_alt_invloop
|
1575
|
+
ldr x0, [sp]
|
1576
|
+
ldr x1, [sp, #32]
|
1577
|
+
mul x0, x0, x10
|
1578
|
+
madd x1, x1, x11, x0
|
1579
|
+
asr x0, x1, #63
|
1580
|
+
cmp x10, xzr
|
1581
|
+
csetm x14, mi
|
1582
|
+
cneg x10, x10, mi
|
1583
|
+
eor x14, x14, x0
|
1584
|
+
cmp x11, xzr
|
1585
|
+
csetm x15, mi
|
1586
|
+
cneg x11, x11, mi
|
1587
|
+
eor x15, x15, x0
|
1588
|
+
cmp x12, xzr
|
1589
|
+
csetm x16, mi
|
1590
|
+
cneg x12, x12, mi
|
1591
|
+
eor x16, x16, x0
|
1592
|
+
cmp x13, xzr
|
1593
|
+
csetm x17, mi
|
1594
|
+
cneg x13, x13, mi
|
1595
|
+
eor x17, x17, x0
|
1596
|
+
and x0, x10, x14
|
1597
|
+
and x1, x11, x15
|
1598
|
+
add x9, x0, x1
|
1599
|
+
ldr x7, [sp, #64]
|
1600
|
+
eor x1, x7, x14
|
1601
|
+
mul x0, x1, x10
|
1602
|
+
umulh x1, x1, x10
|
1603
|
+
adds x4, x9, x0
|
1604
|
+
adc x2, xzr, x1
|
1605
|
+
ldr x8, [sp, #96]
|
1606
|
+
eor x1, x8, x15
|
1607
|
+
mul x0, x1, x11
|
1608
|
+
umulh x1, x1, x11
|
1609
|
+
adds x4, x4, x0
|
1610
|
+
str x4, [sp, #64]
|
1611
|
+
adc x2, x2, x1
|
1612
|
+
ldr x7, [sp, #72]
|
1613
|
+
eor x1, x7, x14
|
1614
|
+
mul x0, x1, x10
|
1615
|
+
umulh x1, x1, x10
|
1616
|
+
adds x2, x2, x0
|
1617
|
+
adc x6, xzr, x1
|
1618
|
+
ldr x8, [sp, #104]
|
1619
|
+
eor x1, x8, x15
|
1620
|
+
mul x0, x1, x11
|
1621
|
+
umulh x1, x1, x11
|
1622
|
+
adds x2, x2, x0
|
1623
|
+
str x2, [sp, #72]
|
1624
|
+
adc x6, x6, x1
|
1625
|
+
ldr x7, [sp, #80]
|
1626
|
+
eor x1, x7, x14
|
1627
|
+
mul x0, x1, x10
|
1628
|
+
umulh x1, x1, x10
|
1629
|
+
adds x6, x6, x0
|
1630
|
+
adc x5, xzr, x1
|
1631
|
+
ldr x8, [sp, #112]
|
1632
|
+
eor x1, x8, x15
|
1633
|
+
mul x0, x1, x11
|
1634
|
+
umulh x1, x1, x11
|
1635
|
+
adds x6, x6, x0
|
1636
|
+
str x6, [sp, #80]
|
1637
|
+
adc x5, x5, x1
|
1638
|
+
ldr x7, [sp, #88]
|
1639
|
+
eor x1, x7, x14
|
1640
|
+
and x3, x14, x10
|
1641
|
+
neg x3, x3
|
1642
|
+
mul x0, x1, x10
|
1643
|
+
umulh x1, x1, x10
|
1644
|
+
adds x5, x5, x0
|
1645
|
+
adc x3, x3, x1
|
1646
|
+
ldr x8, [sp, #120]
|
1647
|
+
eor x1, x8, x15
|
1648
|
+
and x0, x15, x11
|
1649
|
+
sub x3, x3, x0
|
1650
|
+
mul x0, x1, x11
|
1651
|
+
umulh x1, x1, x11
|
1652
|
+
adds x5, x5, x0
|
1653
|
+
adc x3, x3, x1
|
1654
|
+
extr x6, x3, x5, #63
|
1655
|
+
ldp x0, x1, [sp, #64]
|
1656
|
+
tst x3, x3
|
1657
|
+
cinc x6, x6, pl
|
1658
|
+
mov x3, #0x13
|
1659
|
+
mul x4, x6, x3
|
1660
|
+
add x5, x5, x6, lsl #63
|
1661
|
+
smulh x6, x6, x3
|
1662
|
+
ldr x2, [sp, #80]
|
1663
|
+
adds x0, x0, x4
|
1664
|
+
adcs x1, x1, x6
|
1665
|
+
asr x6, x6, #63
|
1666
|
+
adcs x2, x2, x6
|
1667
|
+
adcs x5, x5, x6
|
1668
|
+
csel x3, x3, xzr, mi
|
1669
|
+
subs x0, x0, x3
|
1670
|
+
sbcs x1, x1, xzr
|
1671
|
+
sbcs x2, x2, xzr
|
1672
|
+
sbc x5, x5, xzr
|
1673
|
+
and x5, x5, #0x7fffffffffffffff
|
1674
|
+
mov x4, x20
|
1675
|
+
stp x0, x1, [x4]
|
1676
|
+
stp x2, x5, [x4, #16]
|
986
1677
|
|
987
1678
|
// Since we eventually want to return 0 when the result is the point at
|
988
1679
|
// infinity, we force xn = 0 whenever zn = 0. This avoids building in a
|
@@ -1005,7 +1696,7 @@ curve25519_x25519_alt_zfliploop:
|
|
1005
1696
|
|
1006
1697
|
// Now the result is xn * (1/zn), fully reduced modulo p.
|
1007
1698
|
|
1008
|
-
mul_p25519(resx,xn,
|
1699
|
+
mul_p25519(resx,xn,xm)
|
1009
1700
|
|
1010
1701
|
// Restore stack and registers
|
1011
1702
|
|