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
@@ -0,0 +1,1416 @@
|
|
1
|
+
# Imported from Wycheproof's third_party/wycheproof_testvectors/hmac_sha512_256_test.json.
|
2
|
+
# This file is generated by convert_wycheproof.go. Do not edit by hand.
|
3
|
+
#
|
4
|
+
# Algorithm: HMACSHA512/256
|
5
|
+
# Generator version: 0.9
|
6
|
+
|
7
|
+
[keySize = 256]
|
8
|
+
[tagSize = 256]
|
9
|
+
|
10
|
+
# tcId = 1
|
11
|
+
# using SHA-512 instead of SHA-512/256
|
12
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
13
|
+
msg = 313233343030
|
14
|
+
result = invalid
|
15
|
+
tag = 61d2fbea647212738aeb15d76ef078c3b66b0daa3bfdd55ce600145d7c910753
|
16
|
+
flags = TruncatedHmac
|
17
|
+
|
18
|
+
# tcId = 2
|
19
|
+
# empty message
|
20
|
+
key = 1e225cafb90339bba1b24076d4206c3e79c355805d851682bc818baa4f5a7779
|
21
|
+
msg =
|
22
|
+
result = valid
|
23
|
+
tag = baae6ac18c37dbf3a71b22741ced96e1e2dbe6e7a737142e14bd93fda144dad0
|
24
|
+
flags = Pseudorandom
|
25
|
+
|
26
|
+
# tcId = 3
|
27
|
+
# short message
|
28
|
+
key = 8159fd15133cd964c9a6964c94f0ea269a806fd9f43f0da58b6cd1b33d189b2a
|
29
|
+
msg = 77
|
30
|
+
result = valid
|
31
|
+
tag = aee7a277e0f36a042368ae52b1337ba13f1c00fdb2dfb1d5f0c304e485c3a7dc
|
32
|
+
flags = Pseudorandom
|
33
|
+
|
34
|
+
# tcId = 4
|
35
|
+
# short message
|
36
|
+
key = 85a7cbaae825bb82c9b6f6c5c2af5ac03d1f6daa63d2a93c189948ec41b9ded9
|
37
|
+
msg = a59b
|
38
|
+
result = valid
|
39
|
+
tag = 10e53513a8a4749d977ab7ed4a718727b9e2346fc735e4ee202de37a5fadb2f7
|
40
|
+
flags = Pseudorandom
|
41
|
+
|
42
|
+
# tcId = 5
|
43
|
+
# short message
|
44
|
+
key = 48f3029334e55cfbd574ccc765fb2c3685aab1f4837d23370874a3e634c3a76d
|
45
|
+
msg = c7b8b2
|
46
|
+
result = valid
|
47
|
+
tag = 238bff443bf9c439227f2b1e2e7298c576909ff8ee618d0f74f0ec63629b4df7
|
48
|
+
flags = Pseudorandom
|
49
|
+
|
50
|
+
# tcId = 6
|
51
|
+
# short message
|
52
|
+
key = de8b5b5b2f09645be47ecb6407a4e1d9c6b33ae3c2d22517d3357da0357a3139
|
53
|
+
msg = cc021d65
|
54
|
+
result = valid
|
55
|
+
tag = df7cf9e3cbc2770d2ca7f91f8c3acb7f7d1c8d549706cd54c6cd14725b268468
|
56
|
+
flags = Pseudorandom
|
57
|
+
|
58
|
+
# tcId = 7
|
59
|
+
# short message
|
60
|
+
key = b7938910f518f13205ca1492c669001a14ff913c8ab4a0dc3564e7418e91297c
|
61
|
+
msg = a4a6ef6ebd
|
62
|
+
result = valid
|
63
|
+
tag = 89ebd94af4d3d963f29d7b443ddb023f230208e371daa586629fe407f2d1bcd2
|
64
|
+
flags = Pseudorandom
|
65
|
+
|
66
|
+
# tcId = 8
|
67
|
+
# short message
|
68
|
+
key = 1bb997ff4de8a5a391de5c08a33bc2c7c2891e47ad5b9c63110192f78b98fe78
|
69
|
+
msg = 667e015df7fc
|
70
|
+
result = valid
|
71
|
+
tag = ae7a29fd949066b682b6efda53aedfaea2afb217460825085d76ba05c3146676
|
72
|
+
flags = Pseudorandom
|
73
|
+
|
74
|
+
# tcId = 9
|
75
|
+
# short message
|
76
|
+
key = 32fdeda39f98b4f4426c2d2ac00ab5dd4bfabb68f311447256ed6d3d3a51b154
|
77
|
+
msg = 4163a9f77e41f5
|
78
|
+
result = valid
|
79
|
+
tag = a5e439420fa9dedc9db6c2479305fe66d462499f05c383f628fb0f51b5ff11b1
|
80
|
+
flags = Pseudorandom
|
81
|
+
|
82
|
+
# tcId = 10
|
83
|
+
# short message
|
84
|
+
key = 233e4fdee70bcc20235b6977ddfc05b0df66f5635d827c66e5a63cdb16a24938
|
85
|
+
msg = fdb2ee4b6d1a0ac2
|
86
|
+
result = valid
|
87
|
+
tag = 37597f0aeba2c247c3bf3ecc6ec5e6beb0efe1c08499daa98428c03c5f8e8504
|
88
|
+
flags = Pseudorandom
|
89
|
+
|
90
|
+
# tcId = 11
|
91
|
+
# short message
|
92
|
+
key = b984c6734e0bd12b1737b2fc7a1b3803b4dfec402140a57b9eccc35414ae661b
|
93
|
+
msg = dea584d0e2a14ad5fd
|
94
|
+
result = valid
|
95
|
+
tag = 8e323512445ad61949af45242f01ed91162617812e827b79508008f5c5ba5d0b
|
96
|
+
flags = Pseudorandom
|
97
|
+
|
98
|
+
# tcId = 12
|
99
|
+
# short message
|
100
|
+
key = d0caf1456ac5e255fa6afd61a79dc8c716f5358a298a508271363fe1ff983561
|
101
|
+
msg = 18261dc806913c534666
|
102
|
+
result = valid
|
103
|
+
tag = d6d5d3d7522af212cf539dfa3d25652aafb93881739db248a4fcd0fc48c66e4e
|
104
|
+
flags = Pseudorandom
|
105
|
+
|
106
|
+
# tcId = 13
|
107
|
+
# short message
|
108
|
+
key = 835bc8241ed817735ec9d3d0e2df4c173ee4dded4a8ef0c04a96c48f11820463
|
109
|
+
msg = 26f8083e944bacf04e9a4d
|
110
|
+
result = valid
|
111
|
+
tag = 0866e924b0ea366795c0ce78d0217b0d6308285b1be4effbd9ac075b1ee54c0b
|
112
|
+
flags = Pseudorandom
|
113
|
+
|
114
|
+
# tcId = 14
|
115
|
+
# short message
|
116
|
+
key = 055f95c9461b0809575eccdfa5cdd06275f25d30915c4eb8db40e1acd3ab7591
|
117
|
+
msg = bfb7d6a08dbaa5225f320887
|
118
|
+
result = valid
|
119
|
+
tag = 8901caf87509a9ad50907be7ed64786440da6e12900236989a30449ebe13aa5a
|
120
|
+
flags = Pseudorandom
|
121
|
+
|
122
|
+
# tcId = 15
|
123
|
+
# short message
|
124
|
+
key = e40f7a3eb88ddec4c6347ea4d67610756c82c8ebcc237629bf873ccabc32984a
|
125
|
+
msg = 7fe43febc78474649e45bf99b2
|
126
|
+
result = valid
|
127
|
+
tag = 993d5ae37dd031c74a5ee1514ae152ddb24283b03bc2fa7fdfee6b164ca06c1d
|
128
|
+
flags = Pseudorandom
|
129
|
+
|
130
|
+
# tcId = 16
|
131
|
+
# short message
|
132
|
+
key = b020ad1de1c141f7ec615ee5701521773f9b232e4d06376c382894ce51a61f48
|
133
|
+
msg = 81c7581a194b5e71b41146a582c1
|
134
|
+
result = valid
|
135
|
+
tag = f1f15fd253c0e1abe524643c6830422420243c71267de7ea7b5fab173f8d528a
|
136
|
+
flags = Pseudorandom
|
137
|
+
|
138
|
+
# tcId = 17
|
139
|
+
# short message
|
140
|
+
key = 9f3fd61a105202648ecff6074c95e502c1c51acd32ec538a5cce89ef841f7989
|
141
|
+
msg = 2a76f2acdace42e3b779724946912c
|
142
|
+
result = valid
|
143
|
+
tag = d75cafdafc0711855db378b5b525fc77df150c6b3cb9bbc21627dc56d17d6a32
|
144
|
+
flags = Pseudorandom
|
145
|
+
|
146
|
+
# tcId = 18
|
147
|
+
key = 6fa353868c82e5deeedac7f09471a61bf749ab5498239e947e012eee3c82d7c4
|
148
|
+
msg = aeed3e4d4cb9bbb60d482e98c126c0f5
|
149
|
+
result = valid
|
150
|
+
tag = f2503f147ad7cc3d411e25211491914b658a6676dfd45ed54f6b279ffeb939c1
|
151
|
+
flags = Pseudorandom
|
152
|
+
|
153
|
+
# tcId = 19
|
154
|
+
key = 5300489494ca86221c91d6d953952ae1a5e097139dc9cf1179c2f56433753824
|
155
|
+
msg = 90fea6cf2bd811b449f333ee9233e57697
|
156
|
+
result = valid
|
157
|
+
tag = 7f0470eb227de250cfac8e690767b4ff49ee3f8e68a7d03716921e5c018ca3ce
|
158
|
+
flags = Pseudorandom
|
159
|
+
|
160
|
+
# tcId = 20
|
161
|
+
key = 383e7c5c13476a62268423ef0500479f9e86e236c5a081c6449189e6afdf2af5
|
162
|
+
msg = 3202705af89f9555c540b0e1276911d01971abb2c35c78b2
|
163
|
+
result = valid
|
164
|
+
tag = fa928790bde88ad98ef3ac926097368eb6cdac1ca9b2b0b101c501171478a176
|
165
|
+
flags = Pseudorandom
|
166
|
+
|
167
|
+
# tcId = 21
|
168
|
+
key = 186e248ad824e1eb93329a7fdcd565b6cb4eaf3f85b90b910777128d8c538d27
|
169
|
+
msg = 92ef9ff52f46eccc7e38b9ee19fd2de3b37726c8e6ce9e1b96db5dda4c317902
|
170
|
+
result = valid
|
171
|
+
tag = 3fc7a4a6677c1b0b5b90555847d16819d285a5cff63ea21c98253e58031d4ff5
|
172
|
+
flags = Pseudorandom
|
173
|
+
|
174
|
+
# tcId = 22
|
175
|
+
# long message
|
176
|
+
key = 28855c7efc8532d92567300933cc1ca2d0586f55dcc9f054fcca2f05254fbf7f
|
177
|
+
msg = 9c09207ff0e6e582cb3747dca954c94d45c05e93f1e6f21179cf0e25b4cede74b5479d32f5166935c86f0441905865
|
178
|
+
result = valid
|
179
|
+
tag = fc8a7726fd9ffcf936e554e984732750dac592d6ee86fc81839e24f18c3afd31
|
180
|
+
flags = Pseudorandom
|
181
|
+
|
182
|
+
# tcId = 23
|
183
|
+
# long message
|
184
|
+
key = 8e540cb30c94836ae2a5950f355d482a7002e255207e94fda3f7ef1a099013a0
|
185
|
+
msg = d6500f95e11262e308bf3df4df4b855f33e857563d4543f195639a0a17b442eb9fdcc1367d2eee75c8f805730b89290f
|
186
|
+
result = valid
|
187
|
+
tag = 46b170a647cb6bc3ca975195e62f54e1f1f966cf42ce553546f4d43269131d14
|
188
|
+
flags = Pseudorandom
|
189
|
+
|
190
|
+
# tcId = 24
|
191
|
+
# long message
|
192
|
+
key = 69c50d5274358188cff4c0fae742243d4e8a5e5ba55d94ff40edd90f6a43dd10
|
193
|
+
msg = 1ac5255aff052828d8ea21b376f1ebdd4bb879949913900405aebce83e48feb6813b5e9c89f94501a8ade41b26b815c521
|
194
|
+
result = valid
|
195
|
+
tag = 24902a3e64c863f137d9dc84ebb629a071a9ac266bd583625225cef98f278c45
|
196
|
+
flags = Pseudorandom
|
197
|
+
|
198
|
+
# tcId = 25
|
199
|
+
# long message
|
200
|
+
key = 23209b7c5aadcbd13f7279af1a86d3c7ae8f179d1bcaaad0dff9a15302e78dbf
|
201
|
+
msg = 84bdac37e1af35d9356404e2787d47ece58348dea76a4a46e8aade3463d4db8c94a051be3733b38d756984865d56c60e8025f15e3f968f093e7fb7ebc7e31189c5692d15ed4256737b9b1894e5809503aaa1c9983fb096aa21916361eeb6ef455b129723a1a1ddf9deddea208529a648
|
202
|
+
result = valid
|
203
|
+
tag = 141c849ca20286c73f95c674cd15886bf48443bf71deae36935762d553c9685f
|
204
|
+
flags = Pseudorandom
|
205
|
+
|
206
|
+
# tcId = 26
|
207
|
+
# long message
|
208
|
+
key = 7c9cc667cae175f448faa96647319633b2d48531373ae7d316c44ddd8b9f69cf
|
209
|
+
msg = 9233c1d73b498c5106ff88951e07b9652cb0ddae740737ec205c9876d094978bfc947f7dc937119fd6a93915b19b625958a7a22363aa2ac33fb869ed16b303336ab740a0498a2df66a6599da710094481a7b544bd955b6f97135ba4673401db2db144a6e287041e47a51ed9b6ba956c13508c1c0c25310105239ab73629e30
|
210
|
+
result = valid
|
211
|
+
tag = 40b2235a0ebf00b7e5f89059114cf37d28b7da2201be2a8502a9eeb61be15f30
|
212
|
+
flags = Pseudorandom
|
213
|
+
|
214
|
+
# tcId = 27
|
215
|
+
# long message
|
216
|
+
key = 82314540564ea3ce30591e97f68b2602de40fa29f773c2508327471b8348e8c4
|
217
|
+
msg = 6a6d2f45cebf2757ae16ea33c68617671d77f8fdf80bed8fc5cdc5c8b7086bd28e7eb3eecc7163491104e5309455e67f836579b82a1da3bf5991a8e2b2f189a49e05700e46c409ed5de77780a5f389e3f13dad406c9d55675329c5c921f07034180937c0f6ef34a2308b6ff3e1a0e9dc1ea65f5632730e8744d1db2c40a6595b
|
218
|
+
result = valid
|
219
|
+
tag = bd2ae0fd279df94ee8366ddb78a38431e48975780c8d2820ca68c66453e771c4
|
220
|
+
flags = Pseudorandom
|
221
|
+
|
222
|
+
# tcId = 28
|
223
|
+
# long message
|
224
|
+
key = d115acc9a636915241795f48852052e07b51273ae2448251ec1d0d0f9807f3db
|
225
|
+
msg = 696d2456de853fa028f486fef437b6b6d1b530a8475e299db3a9005ae9cef8401985b7d31e172e8f439ccd1ad1ec44c9b86b78f3f243c1305b53bc21abad7a8fc5256311bfd34c98e37dfdc649e7ae4bda08cf2994b063c0c7106ed0b02a1f48af9191cbfb0d6a953b7e04327dfe8c93779cb574ba9cba575d01674e83621aa0c5f400d6e6cd24b301e33c9f3303e73bf357408c1be86c2489c09de998ff2ef32df554f1247d9313ce1a7160115d06f4c18d6556ff7986ef8a55e2adcfa27e4c69c71cc2ff01639e9d49bd9ed0687f530ffeb0890132457df2088081bc4a2f7f0a9f4dcea2c80d991db7f3747a1803d7619aaf3dd382c69536a0bcdb931cbe
|
226
|
+
result = valid
|
227
|
+
tag = 33dae4d519d63031654e93f3bc8a319e8946723793487b6c3185c10a6ccbd872
|
228
|
+
flags = Pseudorandom
|
229
|
+
|
230
|
+
# tcId = 29
|
231
|
+
# Flipped bit 0 in tag
|
232
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
233
|
+
msg =
|
234
|
+
result = invalid
|
235
|
+
tag = 63d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
236
|
+
flags = ModifiedTag
|
237
|
+
|
238
|
+
# tcId = 30
|
239
|
+
# Flipped bit 0 in tag
|
240
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
241
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
242
|
+
result = invalid
|
243
|
+
tag = 8bd41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
244
|
+
flags = ModifiedTag
|
245
|
+
|
246
|
+
# tcId = 31
|
247
|
+
# Flipped bit 1 in tag
|
248
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
249
|
+
msg =
|
250
|
+
result = invalid
|
251
|
+
tag = 60d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
252
|
+
flags = ModifiedTag
|
253
|
+
|
254
|
+
# tcId = 32
|
255
|
+
# Flipped bit 1 in tag
|
256
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
257
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
258
|
+
result = invalid
|
259
|
+
tag = 88d41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
260
|
+
flags = ModifiedTag
|
261
|
+
|
262
|
+
# tcId = 33
|
263
|
+
# Flipped bit 7 in tag
|
264
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
265
|
+
msg =
|
266
|
+
result = invalid
|
267
|
+
tag = e2d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
268
|
+
flags = ModifiedTag
|
269
|
+
|
270
|
+
# tcId = 34
|
271
|
+
# Flipped bit 7 in tag
|
272
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
273
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
274
|
+
result = invalid
|
275
|
+
tag = 0ad41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
276
|
+
flags = ModifiedTag
|
277
|
+
|
278
|
+
# tcId = 35
|
279
|
+
# Flipped bit 8 in tag
|
280
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
281
|
+
msg =
|
282
|
+
result = invalid
|
283
|
+
tag = 62d16962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
284
|
+
flags = ModifiedTag
|
285
|
+
|
286
|
+
# tcId = 36
|
287
|
+
# Flipped bit 8 in tag
|
288
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
289
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
290
|
+
result = invalid
|
291
|
+
tag = 8ad51561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
292
|
+
flags = ModifiedTag
|
293
|
+
|
294
|
+
# tcId = 37
|
295
|
+
# Flipped bit 31 in tag
|
296
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
297
|
+
msg =
|
298
|
+
result = invalid
|
299
|
+
tag = 62d069e2dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
300
|
+
flags = ModifiedTag
|
301
|
+
|
302
|
+
# tcId = 38
|
303
|
+
# Flipped bit 31 in tag
|
304
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
305
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
306
|
+
result = invalid
|
307
|
+
tag = 8ad415e1cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
308
|
+
flags = ModifiedTag
|
309
|
+
|
310
|
+
# tcId = 39
|
311
|
+
# Flipped bit 32 in tag
|
312
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
313
|
+
msg =
|
314
|
+
result = invalid
|
315
|
+
tag = 62d06962dc2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
316
|
+
flags = ModifiedTag
|
317
|
+
|
318
|
+
# tcId = 40
|
319
|
+
# Flipped bit 32 in tag
|
320
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
321
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
322
|
+
result = invalid
|
323
|
+
tag = 8ad41561cbda5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
324
|
+
flags = ModifiedTag
|
325
|
+
|
326
|
+
# tcId = 41
|
327
|
+
# Flipped bit 33 in tag
|
328
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
329
|
+
msg =
|
330
|
+
result = invalid
|
331
|
+
tag = 62d06962df2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
332
|
+
flags = ModifiedTag
|
333
|
+
|
334
|
+
# tcId = 42
|
335
|
+
# Flipped bit 33 in tag
|
336
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
337
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
338
|
+
result = invalid
|
339
|
+
tag = 8ad41561c8da5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
340
|
+
flags = ModifiedTag
|
341
|
+
|
342
|
+
# tcId = 43
|
343
|
+
# Flipped bit 63 in tag
|
344
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
345
|
+
msg =
|
346
|
+
result = invalid
|
347
|
+
tag = 62d06962dd2c4194a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
348
|
+
flags = ModifiedTag
|
349
|
+
|
350
|
+
# tcId = 44
|
351
|
+
# Flipped bit 63 in tag
|
352
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
353
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
354
|
+
result = invalid
|
355
|
+
tag = 8ad41561cada5a3ccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
356
|
+
flags = ModifiedTag
|
357
|
+
|
358
|
+
# tcId = 45
|
359
|
+
# Flipped bit 64 in tag
|
360
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
361
|
+
msg =
|
362
|
+
result = invalid
|
363
|
+
tag = 62d06962dd2c4114a17d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
364
|
+
flags = ModifiedTag
|
365
|
+
|
366
|
+
# tcId = 46
|
367
|
+
# Flipped bit 64 in tag
|
368
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
369
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
370
|
+
result = invalid
|
371
|
+
tag = 8ad41561cada5abccd606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
372
|
+
flags = ModifiedTag
|
373
|
+
|
374
|
+
# tcId = 47
|
375
|
+
# Flipped bit 71 in tag
|
376
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
377
|
+
msg =
|
378
|
+
result = invalid
|
379
|
+
tag = 62d06962dd2c4114207d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
380
|
+
flags = ModifiedTag
|
381
|
+
|
382
|
+
# tcId = 48
|
383
|
+
# Flipped bit 71 in tag
|
384
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
385
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
386
|
+
result = invalid
|
387
|
+
tag = 8ad41561cada5abc4c606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
388
|
+
flags = ModifiedTag
|
389
|
+
|
390
|
+
# tcId = 49
|
391
|
+
# Flipped bit 77 in tag
|
392
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
393
|
+
msg =
|
394
|
+
result = invalid
|
395
|
+
tag = 62d06962dd2c4114a05d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
396
|
+
flags = ModifiedTag
|
397
|
+
|
398
|
+
# tcId = 50
|
399
|
+
# Flipped bit 77 in tag
|
400
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
401
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
402
|
+
result = invalid
|
403
|
+
tag = 8ad41561cada5abccc406f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
404
|
+
flags = ModifiedTag
|
405
|
+
|
406
|
+
# tcId = 51
|
407
|
+
# Flipped bit 80 in tag
|
408
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
409
|
+
msg =
|
410
|
+
result = invalid
|
411
|
+
tag = 62d06962dd2c4114a07d0a1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
412
|
+
flags = ModifiedTag
|
413
|
+
|
414
|
+
# tcId = 52
|
415
|
+
# Flipped bit 80 in tag
|
416
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
417
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
418
|
+
result = invalid
|
419
|
+
tag = 8ad41561cada5abccc606e00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
420
|
+
flags = ModifiedTag
|
421
|
+
|
422
|
+
# tcId = 53
|
423
|
+
# Flipped bit 96 in tag
|
424
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
425
|
+
msg =
|
426
|
+
result = invalid
|
427
|
+
tag = 62d06962dd2c4114a07d0b1ef06df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
428
|
+
flags = ModifiedTag
|
429
|
+
|
430
|
+
# tcId = 54
|
431
|
+
# Flipped bit 96 in tag
|
432
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
433
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
434
|
+
result = invalid
|
435
|
+
tag = 8ad41561cada5abccc606f00c5a35931794eb51a2709dd667de3c6c2e684e3ea
|
436
|
+
flags = ModifiedTag
|
437
|
+
|
438
|
+
# tcId = 55
|
439
|
+
# Flipped bit 97 in tag
|
440
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
441
|
+
msg =
|
442
|
+
result = invalid
|
443
|
+
tag = 62d06962dd2c4114a07d0b1ef36df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
444
|
+
flags = ModifiedTag
|
445
|
+
|
446
|
+
# tcId = 56
|
447
|
+
# Flipped bit 97 in tag
|
448
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
449
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
450
|
+
result = invalid
|
451
|
+
tag = 8ad41561cada5abccc606f00c6a35931794eb51a2709dd667de3c6c2e684e3ea
|
452
|
+
flags = ModifiedTag
|
453
|
+
|
454
|
+
# tcId = 57
|
455
|
+
# Flipped bit 103 in tag
|
456
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
457
|
+
msg =
|
458
|
+
result = invalid
|
459
|
+
tag = 62d06962dd2c4114a07d0b1e716df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
460
|
+
flags = ModifiedTag
|
461
|
+
|
462
|
+
# tcId = 58
|
463
|
+
# Flipped bit 103 in tag
|
464
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
465
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
466
|
+
result = invalid
|
467
|
+
tag = 8ad41561cada5abccc606f0044a35931794eb51a2709dd667de3c6c2e684e3ea
|
468
|
+
flags = ModifiedTag
|
469
|
+
|
470
|
+
# tcId = 59
|
471
|
+
# Flipped bit 248 in tag
|
472
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
473
|
+
msg =
|
474
|
+
result = invalid
|
475
|
+
tag = 62d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacd
|
476
|
+
flags = ModifiedTag
|
477
|
+
|
478
|
+
# tcId = 60
|
479
|
+
# Flipped bit 248 in tag
|
480
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
481
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
482
|
+
result = invalid
|
483
|
+
tag = 8ad41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3eb
|
484
|
+
flags = ModifiedTag
|
485
|
+
|
486
|
+
# tcId = 61
|
487
|
+
# Flipped bit 249 in tag
|
488
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
489
|
+
msg =
|
490
|
+
result = invalid
|
491
|
+
tag = 62d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aace
|
492
|
+
flags = ModifiedTag
|
493
|
+
|
494
|
+
# tcId = 62
|
495
|
+
# Flipped bit 249 in tag
|
496
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
497
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
498
|
+
result = invalid
|
499
|
+
tag = 8ad41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3e8
|
500
|
+
flags = ModifiedTag
|
501
|
+
|
502
|
+
# tcId = 63
|
503
|
+
# Flipped bit 254 in tag
|
504
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
505
|
+
msg =
|
506
|
+
result = invalid
|
507
|
+
tag = 62d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aa8c
|
508
|
+
flags = ModifiedTag
|
509
|
+
|
510
|
+
# tcId = 64
|
511
|
+
# Flipped bit 254 in tag
|
512
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
513
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
514
|
+
result = invalid
|
515
|
+
tag = 8ad41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3aa
|
516
|
+
flags = ModifiedTag
|
517
|
+
|
518
|
+
# tcId = 65
|
519
|
+
# Flipped bit 255 in tag
|
520
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
521
|
+
msg =
|
522
|
+
result = invalid
|
523
|
+
tag = 62d06962dd2c4114a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aa4c
|
524
|
+
flags = ModifiedTag
|
525
|
+
|
526
|
+
# tcId = 66
|
527
|
+
# Flipped bit 255 in tag
|
528
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
529
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
530
|
+
result = invalid
|
531
|
+
tag = 8ad41561cada5abccc606f00c4a35931794eb51a2709dd667de3c6c2e684e36a
|
532
|
+
flags = ModifiedTag
|
533
|
+
|
534
|
+
# tcId = 67
|
535
|
+
# Flipped bits 0 and 64 in tag
|
536
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
537
|
+
msg =
|
538
|
+
result = invalid
|
539
|
+
tag = 63d06962dd2c4114a17d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
540
|
+
flags = ModifiedTag
|
541
|
+
|
542
|
+
# tcId = 68
|
543
|
+
# Flipped bits 0 and 64 in tag
|
544
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
545
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
546
|
+
result = invalid
|
547
|
+
tag = 8bd41561cada5abccd606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
548
|
+
flags = ModifiedTag
|
549
|
+
|
550
|
+
# tcId = 69
|
551
|
+
# Flipped bits 31 and 63 in tag
|
552
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
553
|
+
msg =
|
554
|
+
result = invalid
|
555
|
+
tag = 62d069e2dd2c4194a07d0b1ef16df27cc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
556
|
+
flags = ModifiedTag
|
557
|
+
|
558
|
+
# tcId = 70
|
559
|
+
# Flipped bits 31 and 63 in tag
|
560
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
561
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
562
|
+
result = invalid
|
563
|
+
tag = 8ad415e1cada5a3ccc606f00c4a35931794eb51a2709dd667de3c6c2e684e3ea
|
564
|
+
flags = ModifiedTag
|
565
|
+
|
566
|
+
# tcId = 71
|
567
|
+
# Flipped bits 63 and 127 in tag
|
568
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
569
|
+
msg =
|
570
|
+
result = invalid
|
571
|
+
tag = 62d06962dd2c4194a07d0b1ef16df2fcc5f2d9c80fc246e8a9ef7b9b7c59aacc
|
572
|
+
flags = ModifiedTag
|
573
|
+
|
574
|
+
# tcId = 72
|
575
|
+
# Flipped bits 63 and 127 in tag
|
576
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
577
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
578
|
+
result = invalid
|
579
|
+
tag = 8ad41561cada5a3ccc606f00c4a359b1794eb51a2709dd667de3c6c2e684e3ea
|
580
|
+
flags = ModifiedTag
|
581
|
+
|
582
|
+
# tcId = 73
|
583
|
+
# all bits of tag flipped
|
584
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
585
|
+
msg =
|
586
|
+
result = invalid
|
587
|
+
tag = 9d2f969d22d3beeb5f82f4e10e920d833a0d2637f03db9175610846483a65533
|
588
|
+
flags = ModifiedTag
|
589
|
+
|
590
|
+
# tcId = 74
|
591
|
+
# all bits of tag flipped
|
592
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
593
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
594
|
+
result = invalid
|
595
|
+
tag = 752bea9e3525a543339f90ff3b5ca6ce86b14ae5d8f62299821c393d197b1c15
|
596
|
+
flags = ModifiedTag
|
597
|
+
|
598
|
+
# tcId = 75
|
599
|
+
# Tag changed to all zero
|
600
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
601
|
+
msg =
|
602
|
+
result = invalid
|
603
|
+
tag = 0000000000000000000000000000000000000000000000000000000000000000
|
604
|
+
flags = ModifiedTag
|
605
|
+
|
606
|
+
# tcId = 76
|
607
|
+
# Tag changed to all zero
|
608
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
609
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
610
|
+
result = invalid
|
611
|
+
tag = 0000000000000000000000000000000000000000000000000000000000000000
|
612
|
+
flags = ModifiedTag
|
613
|
+
|
614
|
+
# tcId = 77
|
615
|
+
# tag changed to all 1
|
616
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
617
|
+
msg =
|
618
|
+
result = invalid
|
619
|
+
tag = ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
620
|
+
flags = ModifiedTag
|
621
|
+
|
622
|
+
# tcId = 78
|
623
|
+
# tag changed to all 1
|
624
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
625
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
626
|
+
result = invalid
|
627
|
+
tag = ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
628
|
+
flags = ModifiedTag
|
629
|
+
|
630
|
+
# tcId = 79
|
631
|
+
# msbs changed in tag
|
632
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
633
|
+
msg =
|
634
|
+
result = invalid
|
635
|
+
tag = e250e9e25dacc19420fd8b9e71ed72fc457259488f42c668296ffb1bfcd92a4c
|
636
|
+
flags = ModifiedTag
|
637
|
+
|
638
|
+
# tcId = 80
|
639
|
+
# msbs changed in tag
|
640
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
641
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
642
|
+
result = invalid
|
643
|
+
tag = 0a5495e14a5ada3c4ce0ef804423d9b1f9ce359aa7895de6fd6346426604636a
|
644
|
+
flags = ModifiedTag
|
645
|
+
|
646
|
+
# tcId = 81
|
647
|
+
# lsbs changed in tag
|
648
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
649
|
+
msg =
|
650
|
+
result = invalid
|
651
|
+
tag = 63d16863dc2d4015a17c0a1ff06cf37dc4f3d8c90ec347e9a8ee7a9a7d58abcd
|
652
|
+
flags = ModifiedTag
|
653
|
+
|
654
|
+
# tcId = 82
|
655
|
+
# lsbs changed in tag
|
656
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
657
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
658
|
+
result = invalid
|
659
|
+
tag = 8bd51460cbdb5bbdcd616e01c5a25830784fb41b2608dc677ce2c7c3e785e2eb
|
660
|
+
flags = ModifiedTag
|
661
|
+
|
662
|
+
[keySize = 256]
|
663
|
+
[tagSize = 128]
|
664
|
+
|
665
|
+
# tcId = 83
|
666
|
+
# empty message
|
667
|
+
key = 7bf9e536b66a215c22233fe2daaa743a898b9acb9f7802de70b40e3d6e43ef97
|
668
|
+
msg =
|
669
|
+
result = valid
|
670
|
+
tag = c155ff4bc0bf8c1436b23cb9c16591e0
|
671
|
+
flags = Pseudorandom
|
672
|
+
|
673
|
+
# tcId = 84
|
674
|
+
# short message
|
675
|
+
key = e754076ceab3fdaf4f9bcab7d4f0df0cbbafbc87731b8f9b7cd2166472e8eebc
|
676
|
+
msg = 40
|
677
|
+
result = valid
|
678
|
+
tag = ecde21a991aa09dd7f42836d97e3e7d2
|
679
|
+
flags = Pseudorandom
|
680
|
+
|
681
|
+
# tcId = 85
|
682
|
+
# short message
|
683
|
+
key = ea3b016bdd387dd64d837c71683808f335dbdc53598a4ea8c5f952473fafaf5f
|
684
|
+
msg = 6601
|
685
|
+
result = valid
|
686
|
+
tag = d8890a46022eea99fc958d93b3c7eeb7
|
687
|
+
flags = Pseudorandom
|
688
|
+
|
689
|
+
# tcId = 86
|
690
|
+
# short message
|
691
|
+
key = 73d4709637857dafab6ad8b2b0a51b06524717fedf100296644f7cfdaae1805b
|
692
|
+
msg = f1d300
|
693
|
+
result = valid
|
694
|
+
tag = 2ec85a2a3867f613184ce3493c250964
|
695
|
+
flags = Pseudorandom
|
696
|
+
|
697
|
+
# tcId = 87
|
698
|
+
# short message
|
699
|
+
key = d5c81b399d4c0d1583a13da56de6d2dc45a66e7b47c24ab1192e246dc961dd77
|
700
|
+
msg = 2ae63cbf
|
701
|
+
result = valid
|
702
|
+
tag = fad84b8631a89b9cafac065d788ffcfe
|
703
|
+
flags = Pseudorandom
|
704
|
+
|
705
|
+
# tcId = 88
|
706
|
+
# short message
|
707
|
+
key = 2521203fa0dddf59d837b2830f87b1aa61f958155df3ca4d1df2457cb4284dc8
|
708
|
+
msg = af3a015ea1
|
709
|
+
result = valid
|
710
|
+
tag = 35e5ceaf32b221534ac6d9ab786ac3f1
|
711
|
+
flags = Pseudorandom
|
712
|
+
|
713
|
+
# tcId = 89
|
714
|
+
# short message
|
715
|
+
key = 665a02bc265a66d01775091da56726b6668bfd903cb7af66fb1b78a8a062e43c
|
716
|
+
msg = 3f56935def3f
|
717
|
+
result = valid
|
718
|
+
tag = 08151bc441cf73348a79576e79392737
|
719
|
+
flags = Pseudorandom
|
720
|
+
|
721
|
+
# tcId = 90
|
722
|
+
# short message
|
723
|
+
key = facd75b22221380047305bc981f570e2a1af38928ea7e2059e3af5fc6b82b493
|
724
|
+
msg = 57bb86beed156f
|
725
|
+
result = valid
|
726
|
+
tag = b905064ddd9b6e626cc9c6342ff2f315
|
727
|
+
flags = Pseudorandom
|
728
|
+
|
729
|
+
# tcId = 91
|
730
|
+
# short message
|
731
|
+
key = 505aa98819809ef63b9a368a1e8bc2e922da45b03ce02d9a7966b15006dba2d5
|
732
|
+
msg = 2e4e7ef728fe11af
|
733
|
+
result = valid
|
734
|
+
tag = 8e510fd967f69f9cc49e834ddf624399
|
735
|
+
flags = Pseudorandom
|
736
|
+
|
737
|
+
# tcId = 92
|
738
|
+
# short message
|
739
|
+
key = f942093842808ba47f64e427f7351dde6b9546e66de4e7d60aa6f328182712cf
|
740
|
+
msg = 852a21d92848e627c7
|
741
|
+
result = valid
|
742
|
+
tag = 09fe45cf3d0003c306886904474fc698
|
743
|
+
flags = Pseudorandom
|
744
|
+
|
745
|
+
# tcId = 93
|
746
|
+
# short message
|
747
|
+
key = 64be162b39c6e5f1fed9c32d9f674d9a8cde6eaa2443214d86bd4a1fb53b81b4
|
748
|
+
msg = 195a3b292f93baff0a2c
|
749
|
+
result = valid
|
750
|
+
tag = 142da85605caa57a667415e62b0e420f
|
751
|
+
flags = Pseudorandom
|
752
|
+
|
753
|
+
# tcId = 94
|
754
|
+
# short message
|
755
|
+
key = b259a555d44b8a20c5489e2f38392ddaa6be9e35b9833b67e1b5fdf6cb3e4c6c
|
756
|
+
msg = afd73117330c6e8528a6e4
|
757
|
+
result = valid
|
758
|
+
tag = 9623f00ec64c2d49863972a90ff7c517
|
759
|
+
flags = Pseudorandom
|
760
|
+
|
761
|
+
# tcId = 95
|
762
|
+
# short message
|
763
|
+
key = 2c6fc62daa77ba8c6881b3dd6989898fef646663cc7b0a3db8228a707b85f2dc
|
764
|
+
msg = 0ff54d6b6759120c2e8a51e3
|
765
|
+
result = valid
|
766
|
+
tag = b368cf82ae3b0b853a7bc56383030576
|
767
|
+
flags = Pseudorandom
|
768
|
+
|
769
|
+
# tcId = 96
|
770
|
+
# short message
|
771
|
+
key = abab815d51df29f740e4e2079fb798e0152836e6ab57d1536ae8929e52c06eb8
|
772
|
+
msg = f0058d412a104e53d820b95a7f
|
773
|
+
result = valid
|
774
|
+
tag = 1ee4ee38698299221682e64fd6d34469
|
775
|
+
flags = Pseudorandom
|
776
|
+
|
777
|
+
# tcId = 97
|
778
|
+
# short message
|
779
|
+
key = 3d5da1af83f7287458bff7a7651ea5d8db72259401333f6b82096996dd7eaf19
|
780
|
+
msg = aacc36972f183057919ff57b49e1
|
781
|
+
result = valid
|
782
|
+
tag = a8c810be7051080126f502a98aa32b68
|
783
|
+
flags = Pseudorandom
|
784
|
+
|
785
|
+
# tcId = 98
|
786
|
+
# short message
|
787
|
+
key = c19bdf314c6cf64381425467f42aefa17c1cc9358be16ce31b1d214859ce86aa
|
788
|
+
msg = 5d066a92c300e9b6ddd63a7c13ae33
|
789
|
+
result = valid
|
790
|
+
tag = 1a38156d8b622cbf2436c3dffdf279ac
|
791
|
+
flags = Pseudorandom
|
792
|
+
|
793
|
+
# tcId = 99
|
794
|
+
key = 612e837843ceae7f61d49625faa7e7494f9253e20cb3adcea686512b043936cd
|
795
|
+
msg = cc37fae15f745a2f40e2c8b192f2b38d
|
796
|
+
result = valid
|
797
|
+
tag = 705c80da3c3166dbec0a3ae959f598f8
|
798
|
+
flags = Pseudorandom
|
799
|
+
|
800
|
+
# tcId = 100
|
801
|
+
key = 73216fafd0022d0d6ee27198b2272578fa8f04dd9f44467fbb6437aa45641bf7
|
802
|
+
msg = d5247b8f6c3edcbfb1d591d13ece23d2f5
|
803
|
+
result = valid
|
804
|
+
tag = afdb30a48f80e415ca75f8b2d3358df1
|
805
|
+
flags = Pseudorandom
|
806
|
+
|
807
|
+
# tcId = 101
|
808
|
+
key = 0427a70e257528f3ab70640bba1a5de12cf3885dd4c8e284fbbb55feb35294a5
|
809
|
+
msg = 13937f8544f44270d01175a011f7670e93fa6ba7ef02336e
|
810
|
+
result = valid
|
811
|
+
tag = 263dc73eb64add7a9019b64255f2a8f8
|
812
|
+
flags = Pseudorandom
|
813
|
+
|
814
|
+
# tcId = 102
|
815
|
+
key = 96e1e4896fb2cd05f133a6a100bc5609a7ac3ca6d81721e922dadd69ad07a892
|
816
|
+
msg = 91a17e4dfcc3166a1add26ff0e7c12056e8a654f28a6de24f4ba739ceb5b5b18
|
817
|
+
result = valid
|
818
|
+
tag = 8c294a89504ef2f79971a4ff70bb79ee
|
819
|
+
flags = Pseudorandom
|
820
|
+
|
821
|
+
# tcId = 103
|
822
|
+
# long message
|
823
|
+
key = 41201567be4e6ea06de2295fd0e6e8a7d862bb57311894f525d8adeabba4a3e4
|
824
|
+
msg = 58c8c73bdd3f350c97477816eae4d0789c9369c0e99c248902c700bc29ed986425985eb3fa55709b73bf620cd9b1cb
|
825
|
+
result = valid
|
826
|
+
tag = 5019c69ebfa62356726f4543446758f0
|
827
|
+
flags = Pseudorandom
|
828
|
+
|
829
|
+
# tcId = 104
|
830
|
+
# long message
|
831
|
+
key = 649e373e681ef52e3c10ac265484750932a9918f28fb824f7cb50adab39781fe
|
832
|
+
msg = 39b447bd3a01983c1cb761b456d69000948ceb870562a536126a0d18a8e7e49b16de8fe672f13d0808d8b7d957899917
|
833
|
+
result = valid
|
834
|
+
tag = 55f23db259bc635115aeef59258c838b
|
835
|
+
flags = Pseudorandom
|
836
|
+
|
837
|
+
# tcId = 105
|
838
|
+
# long message
|
839
|
+
key = 7b0d237f7b536e2c6950990e61b361b384333dda690045c591321a4e3f79747f
|
840
|
+
msg = 3d6283d11c0219b525620e9bf5b9fd887d3f0f707acb1fbdffab0d97a5c6d07fc547762e0e7dd7c43ad35fab1c790f8047
|
841
|
+
result = valid
|
842
|
+
tag = bab79ecf91bad0ac1badbf9aab2137ab
|
843
|
+
flags = Pseudorandom
|
844
|
+
|
845
|
+
# tcId = 106
|
846
|
+
# long message
|
847
|
+
key = 17c92663741f012e5bb6714e614c2d155948617f10936269d954c58aba2ae62d
|
848
|
+
msg = 7fdd6a15c861d0313f6635d77dc55e115ff18c8ab063b5d03eab472eeca87a378188f25813515cf90b6cffa94a8ff36b29d65603eab3fbd2aa9500b261e184049893dc6ca2010becac163053f211070bdda621b8bd8af77e450268603b52db34c90be836dfebddef42303f724e63bf0f
|
849
|
+
result = valid
|
850
|
+
tag = 4b87f61c68360dbf845039b15e0c5dde
|
851
|
+
flags = Pseudorandom
|
852
|
+
|
853
|
+
# tcId = 107
|
854
|
+
# long message
|
855
|
+
key = 424c6b22606fcc094ae82fc5d3cbe484174c2211b3ec778091cac34a8e38a152
|
856
|
+
msg = d96ff062e2490e8e0c54c5a8b89e85b25a66d93d7c2b93bdfef846b70d38672746a4b988d08f15a5c527ca4f2c80e53f7c6ac0521bc57ebe38209180cbf934e0bbeb58cfb63d75da64af41d09ce174af1896f42522910fced35ea000402e95fd3ac7aa6d5e0a6b533b0879bc466019b3a5e6b16e4bd1ea6cdfc9ccc1d6f0f0
|
857
|
+
result = valid
|
858
|
+
tag = 10e5402f82acc86e3d200ca36e69c191
|
859
|
+
flags = Pseudorandom
|
860
|
+
|
861
|
+
# tcId = 108
|
862
|
+
# long message
|
863
|
+
key = 15d553c8da433d53cdc7f15087a70349caab57b379a4078928ce9b99302e31a6
|
864
|
+
msg = d6c0c53b73f74fb426adfdc143d70db7f7a8f8ed32a2faef263cf9ab117537b6b9d1728bd1000c1f28906c6ce6ad21862bfa4d689c1a8ebe3868b992098b7f981b2af5189a6adedff53a6c70c83693f5c8d6385a9a8a4dca017c5716ac4d5b9765c5ca2ab5f9867e02795198c0b9527e07d08af52dbcb91ceb3d8b412a2b2402
|
865
|
+
result = valid
|
866
|
+
tag = 8c95675eab75e627c5a55db4c09a4a62
|
867
|
+
flags = Pseudorandom
|
868
|
+
|
869
|
+
# tcId = 109
|
870
|
+
# long message
|
871
|
+
key = ffe559468a1031dfb3ced2e381e74b5821a36d9abf5f2e59895a7fdca0fa56a0
|
872
|
+
msg = 238899a84a3cf15202a1fbef4741e133fb24c009a0cd83854c6d1d7c9266d4c3eafe6d1dfc18f13845ccdad7fe277627b5fd5ff2555ce6dfde1ee078540a0a3590c6d9bf2fb63ba9afbe9380e797be7cd017645c5a3613eef38ef89e3b7461e6e700ff2b4deef5636c9d2198b143f797ca1820a3dcc5d462ebf4a8c4c09eb202a23592eb9524082c79adda8fcd56d256041a26bf8f523962ba911ce5a5786570d65be3c4df722ed8830302065febdf944715298a1fbb7d10b68d7da2bf889324314ce51e815c7fbf03aa0a8358aff3a86eb7a33f9a4923660db3047e793bebb0c6918f4395d400381723fdae2832c36efc8e368a68f30f6351c3bc942cd560
|
873
|
+
result = valid
|
874
|
+
tag = 98cdd47d3bfdb3ecdabe5e3abaed2058
|
875
|
+
flags = Pseudorandom
|
876
|
+
|
877
|
+
# tcId = 110
|
878
|
+
# Flipped bit 0 in tag
|
879
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
880
|
+
msg =
|
881
|
+
result = invalid
|
882
|
+
tag = 63d06962dd2c4114a07d0b1ef16df27c
|
883
|
+
flags = ModifiedTag
|
884
|
+
|
885
|
+
# tcId = 111
|
886
|
+
# Flipped bit 0 in tag
|
887
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
888
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
889
|
+
result = invalid
|
890
|
+
tag = 8bd41561cada5abccc606f00c4a35931
|
891
|
+
flags = ModifiedTag
|
892
|
+
|
893
|
+
# tcId = 112
|
894
|
+
# Flipped bit 1 in tag
|
895
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
896
|
+
msg =
|
897
|
+
result = invalid
|
898
|
+
tag = 60d06962dd2c4114a07d0b1ef16df27c
|
899
|
+
flags = ModifiedTag
|
900
|
+
|
901
|
+
# tcId = 113
|
902
|
+
# Flipped bit 1 in tag
|
903
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
904
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
905
|
+
result = invalid
|
906
|
+
tag = 88d41561cada5abccc606f00c4a35931
|
907
|
+
flags = ModifiedTag
|
908
|
+
|
909
|
+
# tcId = 114
|
910
|
+
# Flipped bit 7 in tag
|
911
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
912
|
+
msg =
|
913
|
+
result = invalid
|
914
|
+
tag = e2d06962dd2c4114a07d0b1ef16df27c
|
915
|
+
flags = ModifiedTag
|
916
|
+
|
917
|
+
# tcId = 115
|
918
|
+
# Flipped bit 7 in tag
|
919
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
920
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
921
|
+
result = invalid
|
922
|
+
tag = 0ad41561cada5abccc606f00c4a35931
|
923
|
+
flags = ModifiedTag
|
924
|
+
|
925
|
+
# tcId = 116
|
926
|
+
# Flipped bit 8 in tag
|
927
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
928
|
+
msg =
|
929
|
+
result = invalid
|
930
|
+
tag = 62d16962dd2c4114a07d0b1ef16df27c
|
931
|
+
flags = ModifiedTag
|
932
|
+
|
933
|
+
# tcId = 117
|
934
|
+
# Flipped bit 8 in tag
|
935
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
936
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
937
|
+
result = invalid
|
938
|
+
tag = 8ad51561cada5abccc606f00c4a35931
|
939
|
+
flags = ModifiedTag
|
940
|
+
|
941
|
+
# tcId = 118
|
942
|
+
# Flipped bit 31 in tag
|
943
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
944
|
+
msg =
|
945
|
+
result = invalid
|
946
|
+
tag = 62d069e2dd2c4114a07d0b1ef16df27c
|
947
|
+
flags = ModifiedTag
|
948
|
+
|
949
|
+
# tcId = 119
|
950
|
+
# Flipped bit 31 in tag
|
951
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
952
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
953
|
+
result = invalid
|
954
|
+
tag = 8ad415e1cada5abccc606f00c4a35931
|
955
|
+
flags = ModifiedTag
|
956
|
+
|
957
|
+
# tcId = 120
|
958
|
+
# Flipped bit 32 in tag
|
959
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
960
|
+
msg =
|
961
|
+
result = invalid
|
962
|
+
tag = 62d06962dc2c4114a07d0b1ef16df27c
|
963
|
+
flags = ModifiedTag
|
964
|
+
|
965
|
+
# tcId = 121
|
966
|
+
# Flipped bit 32 in tag
|
967
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
968
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
969
|
+
result = invalid
|
970
|
+
tag = 8ad41561cbda5abccc606f00c4a35931
|
971
|
+
flags = ModifiedTag
|
972
|
+
|
973
|
+
# tcId = 122
|
974
|
+
# Flipped bit 33 in tag
|
975
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
976
|
+
msg =
|
977
|
+
result = invalid
|
978
|
+
tag = 62d06962df2c4114a07d0b1ef16df27c
|
979
|
+
flags = ModifiedTag
|
980
|
+
|
981
|
+
# tcId = 123
|
982
|
+
# Flipped bit 33 in tag
|
983
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
984
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
985
|
+
result = invalid
|
986
|
+
tag = 8ad41561c8da5abccc606f00c4a35931
|
987
|
+
flags = ModifiedTag
|
988
|
+
|
989
|
+
# tcId = 124
|
990
|
+
# Flipped bit 63 in tag
|
991
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
992
|
+
msg =
|
993
|
+
result = invalid
|
994
|
+
tag = 62d06962dd2c4194a07d0b1ef16df27c
|
995
|
+
flags = ModifiedTag
|
996
|
+
|
997
|
+
# tcId = 125
|
998
|
+
# Flipped bit 63 in tag
|
999
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1000
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1001
|
+
result = invalid
|
1002
|
+
tag = 8ad41561cada5a3ccc606f00c4a35931
|
1003
|
+
flags = ModifiedTag
|
1004
|
+
|
1005
|
+
# tcId = 126
|
1006
|
+
# Flipped bit 64 in tag
|
1007
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1008
|
+
msg =
|
1009
|
+
result = invalid
|
1010
|
+
tag = 62d06962dd2c4114a17d0b1ef16df27c
|
1011
|
+
flags = ModifiedTag
|
1012
|
+
|
1013
|
+
# tcId = 127
|
1014
|
+
# Flipped bit 64 in tag
|
1015
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1016
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1017
|
+
result = invalid
|
1018
|
+
tag = 8ad41561cada5abccd606f00c4a35931
|
1019
|
+
flags = ModifiedTag
|
1020
|
+
|
1021
|
+
# tcId = 128
|
1022
|
+
# Flipped bit 71 in tag
|
1023
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1024
|
+
msg =
|
1025
|
+
result = invalid
|
1026
|
+
tag = 62d06962dd2c4114207d0b1ef16df27c
|
1027
|
+
flags = ModifiedTag
|
1028
|
+
|
1029
|
+
# tcId = 129
|
1030
|
+
# Flipped bit 71 in tag
|
1031
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1032
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1033
|
+
result = invalid
|
1034
|
+
tag = 8ad41561cada5abc4c606f00c4a35931
|
1035
|
+
flags = ModifiedTag
|
1036
|
+
|
1037
|
+
# tcId = 130
|
1038
|
+
# Flipped bit 77 in tag
|
1039
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1040
|
+
msg =
|
1041
|
+
result = invalid
|
1042
|
+
tag = 62d06962dd2c4114a05d0b1ef16df27c
|
1043
|
+
flags = ModifiedTag
|
1044
|
+
|
1045
|
+
# tcId = 131
|
1046
|
+
# Flipped bit 77 in tag
|
1047
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1048
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1049
|
+
result = invalid
|
1050
|
+
tag = 8ad41561cada5abccc406f00c4a35931
|
1051
|
+
flags = ModifiedTag
|
1052
|
+
|
1053
|
+
# tcId = 132
|
1054
|
+
# Flipped bit 80 in tag
|
1055
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1056
|
+
msg =
|
1057
|
+
result = invalid
|
1058
|
+
tag = 62d06962dd2c4114a07d0a1ef16df27c
|
1059
|
+
flags = ModifiedTag
|
1060
|
+
|
1061
|
+
# tcId = 133
|
1062
|
+
# Flipped bit 80 in tag
|
1063
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1064
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1065
|
+
result = invalid
|
1066
|
+
tag = 8ad41561cada5abccc606e00c4a35931
|
1067
|
+
flags = ModifiedTag
|
1068
|
+
|
1069
|
+
# tcId = 134
|
1070
|
+
# Flipped bit 96 in tag
|
1071
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1072
|
+
msg =
|
1073
|
+
result = invalid
|
1074
|
+
tag = 62d06962dd2c4114a07d0b1ef06df27c
|
1075
|
+
flags = ModifiedTag
|
1076
|
+
|
1077
|
+
# tcId = 135
|
1078
|
+
# Flipped bit 96 in tag
|
1079
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1080
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1081
|
+
result = invalid
|
1082
|
+
tag = 8ad41561cada5abccc606f00c5a35931
|
1083
|
+
flags = ModifiedTag
|
1084
|
+
|
1085
|
+
# tcId = 136
|
1086
|
+
# Flipped bit 97 in tag
|
1087
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1088
|
+
msg =
|
1089
|
+
result = invalid
|
1090
|
+
tag = 62d06962dd2c4114a07d0b1ef36df27c
|
1091
|
+
flags = ModifiedTag
|
1092
|
+
|
1093
|
+
# tcId = 137
|
1094
|
+
# Flipped bit 97 in tag
|
1095
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1096
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1097
|
+
result = invalid
|
1098
|
+
tag = 8ad41561cada5abccc606f00c6a35931
|
1099
|
+
flags = ModifiedTag
|
1100
|
+
|
1101
|
+
# tcId = 138
|
1102
|
+
# Flipped bit 103 in tag
|
1103
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1104
|
+
msg =
|
1105
|
+
result = invalid
|
1106
|
+
tag = 62d06962dd2c4114a07d0b1e716df27c
|
1107
|
+
flags = ModifiedTag
|
1108
|
+
|
1109
|
+
# tcId = 139
|
1110
|
+
# Flipped bit 103 in tag
|
1111
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1112
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1113
|
+
result = invalid
|
1114
|
+
tag = 8ad41561cada5abccc606f0044a35931
|
1115
|
+
flags = ModifiedTag
|
1116
|
+
|
1117
|
+
# tcId = 140
|
1118
|
+
# Flipped bit 120 in tag
|
1119
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1120
|
+
msg =
|
1121
|
+
result = invalid
|
1122
|
+
tag = 62d06962dd2c4114a07d0b1ef16df27d
|
1123
|
+
flags = ModifiedTag
|
1124
|
+
|
1125
|
+
# tcId = 141
|
1126
|
+
# Flipped bit 120 in tag
|
1127
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1128
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1129
|
+
result = invalid
|
1130
|
+
tag = 8ad41561cada5abccc606f00c4a35930
|
1131
|
+
flags = ModifiedTag
|
1132
|
+
|
1133
|
+
# tcId = 142
|
1134
|
+
# Flipped bit 121 in tag
|
1135
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1136
|
+
msg =
|
1137
|
+
result = invalid
|
1138
|
+
tag = 62d06962dd2c4114a07d0b1ef16df27e
|
1139
|
+
flags = ModifiedTag
|
1140
|
+
|
1141
|
+
# tcId = 143
|
1142
|
+
# Flipped bit 121 in tag
|
1143
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1144
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1145
|
+
result = invalid
|
1146
|
+
tag = 8ad41561cada5abccc606f00c4a35933
|
1147
|
+
flags = ModifiedTag
|
1148
|
+
|
1149
|
+
# tcId = 144
|
1150
|
+
# Flipped bit 126 in tag
|
1151
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1152
|
+
msg =
|
1153
|
+
result = invalid
|
1154
|
+
tag = 62d06962dd2c4114a07d0b1ef16df23c
|
1155
|
+
flags = ModifiedTag
|
1156
|
+
|
1157
|
+
# tcId = 145
|
1158
|
+
# Flipped bit 126 in tag
|
1159
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1160
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1161
|
+
result = invalid
|
1162
|
+
tag = 8ad41561cada5abccc606f00c4a35971
|
1163
|
+
flags = ModifiedTag
|
1164
|
+
|
1165
|
+
# tcId = 146
|
1166
|
+
# Flipped bit 127 in tag
|
1167
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1168
|
+
msg =
|
1169
|
+
result = invalid
|
1170
|
+
tag = 62d06962dd2c4114a07d0b1ef16df2fc
|
1171
|
+
flags = ModifiedTag
|
1172
|
+
|
1173
|
+
# tcId = 147
|
1174
|
+
# Flipped bit 127 in tag
|
1175
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1176
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1177
|
+
result = invalid
|
1178
|
+
tag = 8ad41561cada5abccc606f00c4a359b1
|
1179
|
+
flags = ModifiedTag
|
1180
|
+
|
1181
|
+
# tcId = 148
|
1182
|
+
# Flipped bits 0 and 64 in tag
|
1183
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1184
|
+
msg =
|
1185
|
+
result = invalid
|
1186
|
+
tag = 63d06962dd2c4114a17d0b1ef16df27c
|
1187
|
+
flags = ModifiedTag
|
1188
|
+
|
1189
|
+
# tcId = 149
|
1190
|
+
# Flipped bits 0 and 64 in tag
|
1191
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1192
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1193
|
+
result = invalid
|
1194
|
+
tag = 8bd41561cada5abccd606f00c4a35931
|
1195
|
+
flags = ModifiedTag
|
1196
|
+
|
1197
|
+
# tcId = 150
|
1198
|
+
# Flipped bits 31 and 63 in tag
|
1199
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1200
|
+
msg =
|
1201
|
+
result = invalid
|
1202
|
+
tag = 62d069e2dd2c4194a07d0b1ef16df27c
|
1203
|
+
flags = ModifiedTag
|
1204
|
+
|
1205
|
+
# tcId = 151
|
1206
|
+
# Flipped bits 31 and 63 in tag
|
1207
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1208
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1209
|
+
result = invalid
|
1210
|
+
tag = 8ad415e1cada5a3ccc606f00c4a35931
|
1211
|
+
flags = ModifiedTag
|
1212
|
+
|
1213
|
+
# tcId = 152
|
1214
|
+
# Flipped bits 63 and 127 in tag
|
1215
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1216
|
+
msg =
|
1217
|
+
result = invalid
|
1218
|
+
tag = 62d06962dd2c4194a07d0b1ef16df2fc
|
1219
|
+
flags = ModifiedTag
|
1220
|
+
|
1221
|
+
# tcId = 153
|
1222
|
+
# Flipped bits 63 and 127 in tag
|
1223
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1224
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1225
|
+
result = invalid
|
1226
|
+
tag = 8ad41561cada5a3ccc606f00c4a359b1
|
1227
|
+
flags = ModifiedTag
|
1228
|
+
|
1229
|
+
# tcId = 154
|
1230
|
+
# all bits of tag flipped
|
1231
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1232
|
+
msg =
|
1233
|
+
result = invalid
|
1234
|
+
tag = 9d2f969d22d3beeb5f82f4e10e920d83
|
1235
|
+
flags = ModifiedTag
|
1236
|
+
|
1237
|
+
# tcId = 155
|
1238
|
+
# all bits of tag flipped
|
1239
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1240
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1241
|
+
result = invalid
|
1242
|
+
tag = 752bea9e3525a543339f90ff3b5ca6ce
|
1243
|
+
flags = ModifiedTag
|
1244
|
+
|
1245
|
+
# tcId = 156
|
1246
|
+
# Tag changed to all zero
|
1247
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1248
|
+
msg =
|
1249
|
+
result = invalid
|
1250
|
+
tag = 00000000000000000000000000000000
|
1251
|
+
flags = ModifiedTag
|
1252
|
+
|
1253
|
+
# tcId = 157
|
1254
|
+
# Tag changed to all zero
|
1255
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1256
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1257
|
+
result = invalid
|
1258
|
+
tag = 00000000000000000000000000000000
|
1259
|
+
flags = ModifiedTag
|
1260
|
+
|
1261
|
+
# tcId = 158
|
1262
|
+
# tag changed to all 1
|
1263
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1264
|
+
msg =
|
1265
|
+
result = invalid
|
1266
|
+
tag = ffffffffffffffffffffffffffffffff
|
1267
|
+
flags = ModifiedTag
|
1268
|
+
|
1269
|
+
# tcId = 159
|
1270
|
+
# tag changed to all 1
|
1271
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1272
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1273
|
+
result = invalid
|
1274
|
+
tag = ffffffffffffffffffffffffffffffff
|
1275
|
+
flags = ModifiedTag
|
1276
|
+
|
1277
|
+
# tcId = 160
|
1278
|
+
# msbs changed in tag
|
1279
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1280
|
+
msg =
|
1281
|
+
result = invalid
|
1282
|
+
tag = e250e9e25dacc19420fd8b9e71ed72fc
|
1283
|
+
flags = ModifiedTag
|
1284
|
+
|
1285
|
+
# tcId = 161
|
1286
|
+
# msbs changed in tag
|
1287
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1288
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1289
|
+
result = invalid
|
1290
|
+
tag = 0a5495e14a5ada3c4ce0ef804423d9b1
|
1291
|
+
flags = ModifiedTag
|
1292
|
+
|
1293
|
+
# tcId = 162
|
1294
|
+
# lsbs changed in tag
|
1295
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1296
|
+
msg =
|
1297
|
+
result = invalid
|
1298
|
+
tag = 63d16863dc2d4015a17c0a1ff06cf37d
|
1299
|
+
flags = ModifiedTag
|
1300
|
+
|
1301
|
+
# tcId = 163
|
1302
|
+
# lsbs changed in tag
|
1303
|
+
key = 000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
|
1304
|
+
msg = 000102030405060708090a0b0c0d0e0f
|
1305
|
+
result = invalid
|
1306
|
+
tag = 8bd51460cbdb5bbdcd616e01c5a25830
|
1307
|
+
flags = ModifiedTag
|
1308
|
+
|
1309
|
+
[keySize = 128]
|
1310
|
+
[tagSize = 256]
|
1311
|
+
|
1312
|
+
# tcId = 164
|
1313
|
+
# short key
|
1314
|
+
key = a349ac0a9f9f74e48e099cc3dbf9a9c9
|
1315
|
+
msg =
|
1316
|
+
result = valid
|
1317
|
+
tag = 4a8f573fd11a441f7387bec1c5db992ca8ff0dea08639d25f0479f9d5b73eeee
|
1318
|
+
flags = Pseudorandom
|
1319
|
+
|
1320
|
+
# tcId = 165
|
1321
|
+
# short key
|
1322
|
+
key = ac686ba0f1a51b4ec4f0b30492b7f556
|
1323
|
+
msg = 2fa43a14ae500507deb95ab5bd32b0fe
|
1324
|
+
result = valid
|
1325
|
+
tag = 444ec6f9b3a6afe977a93d080425526cf25367fcea2bc88b534b2e9a0dbe659f
|
1326
|
+
flags = Pseudorandom
|
1327
|
+
|
1328
|
+
# tcId = 166
|
1329
|
+
# short key
|
1330
|
+
key = 73ef9ef1a4225e51e3c1db3ace1fa24f
|
1331
|
+
msg = ffad380d9aabb0acede5c1bf112925cdfc3d379fc2376a4fe2644490d0430ac3
|
1332
|
+
result = valid
|
1333
|
+
tag = 5b79aae2aa78b9aaa6ffbbaebb71fb6e622d49f7e7d6275178c879d9fbc0a7d6
|
1334
|
+
flags = Pseudorandom
|
1335
|
+
|
1336
|
+
[keySize = 128]
|
1337
|
+
[tagSize = 128]
|
1338
|
+
|
1339
|
+
# tcId = 167
|
1340
|
+
# short key
|
1341
|
+
key = e34f15c7bd819930fe9d66e0c166e61c
|
1342
|
+
msg =
|
1343
|
+
result = valid
|
1344
|
+
tag = 2fd8b5b96fe9ca363c7031310f436bc6
|
1345
|
+
flags = Pseudorandom
|
1346
|
+
|
1347
|
+
# tcId = 168
|
1348
|
+
# short key
|
1349
|
+
key = e09eaa5a3f5e56d279d5e7a03373f6ea
|
1350
|
+
msg = ef4eab37181f98423e53e947e7050fd0
|
1351
|
+
result = valid
|
1352
|
+
tag = 9033b0a30e67e22f2a255486dbb87097
|
1353
|
+
flags = Pseudorandom
|
1354
|
+
|
1355
|
+
# tcId = 169
|
1356
|
+
# short key
|
1357
|
+
key = 9bd3902ed0996c869b572272e76f3889
|
1358
|
+
msg = a7ba19d49ee1ea02f098aa8e30c740d893a4456ccc294040484ed8a00a55f93e
|
1359
|
+
result = valid
|
1360
|
+
tag = e4a8eb8bb6fc019258048e069919dd03
|
1361
|
+
flags = Pseudorandom
|
1362
|
+
|
1363
|
+
[keySize = 520]
|
1364
|
+
[tagSize = 256]
|
1365
|
+
|
1366
|
+
# tcId = 170
|
1367
|
+
# long key
|
1368
|
+
key = 8a0c46eb8a2959e39865330079763341e7439dab149694ee57e0d61ec73d947e1d5301cd974e18a5e0d1cf0d2c37e8aadd9fd589d57ef32e47024a99bc3f70c077
|
1369
|
+
msg =
|
1370
|
+
result = valid
|
1371
|
+
tag = 05a64be452f9c6e190113eea89bd4ca6ecd14e8fe924a3adf41a53a381615f34
|
1372
|
+
flags = Pseudorandom
|
1373
|
+
|
1374
|
+
# tcId = 171
|
1375
|
+
# long key
|
1376
|
+
key = 2877ebb81f80334fd00516337446c5cf5ad4a3a2e197269e5b0ad1889dfe2b4b0aaa676fac55b36ce3affc7f1092ab89c53273a837bd5bc94d1a9d9e5b02e9856f
|
1377
|
+
msg = ba448db88f154f775028fdecf9e6752d
|
1378
|
+
result = valid
|
1379
|
+
tag = 786b60be5e986337f1c64a67704a180c65d8b0d6e8befe4abb7979d8a114bd38
|
1380
|
+
flags = Pseudorandom
|
1381
|
+
|
1382
|
+
# tcId = 172
|
1383
|
+
# long key
|
1384
|
+
key = 21178e26bc28ffc27c06f762ba190a627075856d7ca6feab79ac63149b17126e34fd9e5590e0e90aac801df09505d8af2dd0a2703b352c573ac9d2cb063927f2af
|
1385
|
+
msg = 7d5f1d6b993452b1b53a4375760d10a20d46a0ab9ec3943fc4b07a2ce735e731
|
1386
|
+
result = valid
|
1387
|
+
tag = 9bae00d08a9dfc0eb02c225a57e9ffb3ae38a096da54f025dc901cd174a9212f
|
1388
|
+
flags = Pseudorandom
|
1389
|
+
|
1390
|
+
[keySize = 520]
|
1391
|
+
[tagSize = 128]
|
1392
|
+
|
1393
|
+
# tcId = 173
|
1394
|
+
# long key
|
1395
|
+
key = 813e0c078c221375e80590ace6774eafd2d2c242350988d02efa550e05aecbe100c1b8bf154c932cf9e57177015c816c42bc7fbc71ceaa5328c7316b7f0f30330f
|
1396
|
+
msg =
|
1397
|
+
result = valid
|
1398
|
+
tag = 87ba20fe77815786e5159ab713c1bab5
|
1399
|
+
flags = Pseudorandom
|
1400
|
+
|
1401
|
+
# tcId = 174
|
1402
|
+
# long key
|
1403
|
+
key = 5713343096b0aaf0562a6b92c1a15535924160475a4e4233589159728c562e3b2ad96f740c6a4da2bc3f768ce98c9bd66bac28d1646ff592028c940d455f35eeb4
|
1404
|
+
msg = 71712de2fac1fb855673bff72af64257
|
1405
|
+
result = valid
|
1406
|
+
tag = 2db582e6ceaadb885a36e27a2bf50dea
|
1407
|
+
flags = Pseudorandom
|
1408
|
+
|
1409
|
+
# tcId = 175
|
1410
|
+
# long key
|
1411
|
+
key = 7208afbecf5f1f34828f98b719414e280716de64f5edd1ae1c774153cd2022337bb20fade1b7856f1dbfd40e2b4307f1293ceff1692ee90d8c90b5fdf953ab01a5
|
1412
|
+
msg = 43b53302b604d613e62db002044a4782d572ac8fbd3cd0ece91b43bc52e18e98
|
1413
|
+
result = valid
|
1414
|
+
tag = 75531ead9c8db199ba2b1ec6b7e00d60
|
1415
|
+
flags = Pseudorandom
|
1416
|
+
|