grpc 1.53.0.pre2 → 1.54.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +80 -66
- data/include/grpc/event_engine/event_engine.h +30 -14
- data/include/grpc/grpc_security.h +4 -0
- data/include/grpc/impl/grpc_types.h +11 -2
- data/include/grpc/support/port_platform.h +4 -4
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +11 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +6 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +2 -11
- data/src/core/ext/filters/client_channel/backup_poller.h +0 -3
- data/src/core/ext/filters/client_channel/client_channel.cc +848 -813
- data/src/core/ext/filters/client_channel/client_channel.h +131 -173
- data/src/core/ext/filters/client_channel/client_channel_internal.h +114 -0
- data/src/core/ext/filters/client_channel/config_selector.h +4 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +6 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +17 -18
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +134 -151
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -15
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +14 -10
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +68 -30
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +13 -5
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +8 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +2 -5
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +30 -38
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +4 -4
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +20 -26
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +31 -179
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +1 -2
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +4 -2
- data/src/core/ext/filters/client_channel/retry_filter.cc +95 -102
- data/src/core/ext/filters/client_channel/subchannel.cc +2 -4
- data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +26 -27
- data/src/core/ext/filters/client_channel/subchannel_stream_client.h +8 -5
- data/src/core/ext/filters/http/client/http_client_filter.cc +3 -3
- data/src/core/ext/filters/http/http_filters_plugin.cc +1 -12
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +27 -11
- data/src/core/ext/filters/message_size/message_size_filter.cc +141 -224
- data/src/core/ext/filters/message_size/message_size_filter.h +48 -3
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +7 -6
- data/src/core/ext/gcp/metadata_query.cc +142 -0
- data/src/core/ext/gcp/metadata_query.h +82 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +70 -55
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +149 -60
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +5 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +4 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +42 -23
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +5 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +18 -3
- data/src/core/ext/transport/chttp2/transport/parsing.cc +9 -2
- data/src/core/ext/transport/chttp2/transport/writing.cc +10 -5
- data/src/core/ext/transport/inproc/inproc_transport.cc +20 -14
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +5 -3
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +22 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +5 -3
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +22 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +23 -5
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +94 -3
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +23 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +120 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +6 -3
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +22 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +24 -6
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +111 -12
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +9 -7
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +27 -9
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +11 -7
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +56 -12
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +5 -3
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +24 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +5 -3
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +24 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +13 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +49 -0
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +24 -9
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +66 -12
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +191 -187
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +139 -136
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +31 -15
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +12 -9
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +15 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +54 -45
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +135 -119
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +100 -97
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +15 -18
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +272 -264
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +117 -117
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +5 -5
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +12 -9
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -0
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +1 -2
- data/src/core/ext/xds/xds_client_stats.cc +29 -15
- data/src/core/ext/xds/xds_client_stats.h +24 -20
- data/src/core/ext/xds/xds_endpoint.cc +5 -2
- data/src/core/ext/xds/xds_endpoint.h +9 -1
- data/src/core/ext/xds/xds_http_rbac_filter.cc +1 -1
- data/src/core/ext/xds/xds_lb_policy_registry.cc +13 -0
- data/src/core/ext/xds/xds_transport_grpc.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver/dns/dns_resolver_selection.h → lib/backoff/random_early_detection.cc} +14 -12
- data/src/core/lib/backoff/random_early_detection.h +59 -0
- data/src/core/lib/channel/call_finalization.h +1 -1
- data/src/core/lib/channel/call_tracer.cc +51 -0
- data/src/core/lib/channel/call_tracer.h +101 -38
- data/src/core/lib/channel/connected_channel.cc +483 -1050
- data/src/core/lib/channel/context.h +8 -1
- data/src/core/lib/channel/promise_based_filter.cc +106 -42
- data/src/core/lib/channel/promise_based_filter.h +27 -13
- data/src/core/lib/channel/server_call_tracer_filter.cc +110 -0
- data/src/core/lib/config/config_vars.cc +151 -0
- data/src/core/lib/config/config_vars.h +127 -0
- data/src/core/lib/config/config_vars_non_generated.cc +51 -0
- data/src/core/lib/config/load_config.cc +66 -0
- data/src/core/lib/config/load_config.h +49 -0
- data/src/core/lib/debug/trace.cc +5 -6
- data/src/core/lib/debug/trace.h +0 -5
- data/src/core/lib/event_engine/event_engine.cc +37 -2
- data/src/core/lib/event_engine/handle_containers.h +7 -22
- data/src/core/lib/event_engine/memory_allocator_factory.h +47 -0
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -9
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +48 -15
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +8 -8
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +6 -5
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +6 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +27 -18
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +0 -3
- data/src/core/lib/event_engine/resolved_address.cc +2 -1
- data/src/core/lib/event_engine/windows/win_socket.cc +0 -1
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +129 -82
- data/src/core/lib/event_engine/windows/windows_endpoint.h +21 -5
- data/src/core/lib/event_engine/windows/windows_engine.cc +39 -18
- data/src/core/lib/event_engine/windows/windows_engine.h +2 -1
- data/src/core/lib/event_engine/windows/windows_listener.cc +370 -0
- data/src/core/lib/event_engine/windows/windows_listener.h +155 -0
- data/src/core/lib/experiments/config.cc +3 -10
- data/src/core/lib/experiments/experiments.cc +7 -0
- data/src/core/lib/experiments/experiments.h +9 -1
- data/src/core/lib/gpr/log.cc +15 -28
- data/src/core/lib/gprpp/fork.cc +8 -14
- data/src/core/lib/gprpp/orphanable.h +4 -3
- data/src/core/lib/gprpp/per_cpu.h +9 -3
- data/src/core/lib/gprpp/{thd_posix.cc → posix/thd.cc} +49 -37
- data/src/core/lib/gprpp/ref_counted.h +33 -34
- data/src/core/lib/gprpp/thd.h +16 -0
- data/src/core/lib/gprpp/time.cc +1 -0
- data/src/core/lib/gprpp/time.h +4 -4
- data/src/core/lib/gprpp/{thd_windows.cc → windows/thd.cc} +2 -2
- data/src/core/lib/iomgr/call_combiner.h +2 -2
- data/src/core/lib/iomgr/endpoint_cfstream.cc +4 -2
- data/src/core/lib/iomgr/endpoint_pair.h +2 -2
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -1
- data/src/core/lib/iomgr/ev_posix.cc +13 -53
- data/src/core/lib/iomgr/ev_posix.h +0 -3
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +103 -76
- data/src/core/lib/iomgr/iomgr.cc +4 -8
- data/src/core/lib/iomgr/iomgr_windows.cc +8 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +9 -9
- data/src/core/lib/iomgr/pollset_windows.cc +1 -1
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +16 -3
- data/src/core/lib/iomgr/tcp_client_windows.cc +2 -2
- data/src/core/lib/iomgr/tcp_posix.cc +0 -1
- data/src/core/lib/iomgr/tcp_server_posix.cc +5 -16
- data/src/core/lib/iomgr/tcp_server_windows.cc +176 -9
- data/src/core/lib/iomgr/tcp_windows.cc +12 -8
- data/src/core/lib/load_balancing/lb_policy.cc +9 -13
- data/src/core/lib/load_balancing/lb_policy.h +4 -2
- data/src/core/lib/promise/activity.cc +22 -6
- data/src/core/lib/promise/activity.h +61 -24
- data/src/core/lib/promise/cancel_callback.h +77 -0
- data/src/core/lib/promise/detail/basic_seq.h +1 -1
- data/src/core/lib/promise/detail/promise_factory.h +4 -0
- data/src/core/lib/promise/for_each.h +176 -0
- data/src/core/lib/promise/if.h +9 -0
- data/src/core/lib/promise/interceptor_list.h +23 -2
- data/src/core/lib/promise/latch.h +89 -3
- data/src/core/lib/promise/loop.h +13 -9
- data/src/core/lib/promise/map.h +7 -0
- data/src/core/lib/promise/party.cc +286 -0
- data/src/core/lib/promise/party.h +499 -0
- data/src/core/lib/promise/pipe.h +197 -57
- data/src/core/lib/promise/poll.h +48 -0
- data/src/core/lib/promise/promise.h +2 -2
- data/src/core/lib/resource_quota/arena.cc +19 -3
- data/src/core/lib/resource_quota/arena.h +119 -5
- data/src/core/lib/resource_quota/memory_quota.cc +1 -1
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +12 -35
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +1 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +0 -59
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +10 -5
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +13 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +2 -0
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +5 -9
- data/src/core/lib/security/security_connector/ssl_utils.cc +11 -25
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +12 -0
- data/src/core/lib/security/transport/secure_endpoint.cc +4 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +20 -2
- data/src/core/lib/slice/slice.cc +1 -1
- data/src/core/lib/surface/builtins.cc +2 -0
- data/src/core/lib/surface/call.cc +926 -1024
- data/src/core/lib/surface/call.h +10 -0
- data/src/core/lib/surface/lame_client.cc +1 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/batch_builder.cc +179 -0
- data/src/core/lib/transport/batch_builder.h +468 -0
- data/src/core/lib/transport/bdp_estimator.cc +7 -7
- data/src/core/lib/transport/bdp_estimator.h +10 -6
- data/src/core/lib/transport/custom_metadata.h +30 -0
- data/src/core/lib/transport/metadata_batch.cc +9 -6
- data/src/core/lib/transport/metadata_batch.h +58 -16
- data/src/core/lib/transport/parsed_metadata.h +3 -3
- data/src/core/lib/transport/timeout_encoding.cc +6 -1
- data/src/core/lib/transport/transport.cc +30 -2
- data/src/core/lib/transport/transport.h +70 -14
- data/src/core/lib/transport/transport_impl.h +7 -0
- data/src/core/lib/transport/transport_op_string.cc +52 -42
- data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -2
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +1 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +21 -4
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +5 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -1
- data/src/core/tsi/ssl_transport_security.cc +4 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/abseil-cpp/absl/base/config.h +1 -1
- data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +34 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +200 -0
- data/third_party/abseil-cpp/absl/flags/config.h +68 -0
- data/third_party/abseil-cpp/absl/flags/declare.h +73 -0
- data/third_party/abseil-cpp/absl/flags/flag.cc +38 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +310 -0
- data/{src/core/lib/gprpp/global_config_custom.h → third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc} +11 -14
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +615 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +800 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +116 -0
- data/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
- data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +65 -0
- data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +61 -0
- data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +60 -0
- data/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
- data/third_party/abseil-cpp/absl/flags/internal/registry.h +97 -0
- data/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +241 -0
- data/third_party/abseil-cpp/absl/flags/marshalling.h +356 -0
- data/third_party/abseil-cpp/absl/flags/reflection.cc +354 -0
- data/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
- data/third_party/abseil-cpp/absl/flags/usage_config.cc +165 -0
- data/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +12 -8
- data/third_party/boringssl-with-bazel/err_data.c +728 -712
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +177 -177
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +28 -55
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +21 -23
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +20 -23
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +66 -185
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +18 -21
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +356 -311
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +174 -194
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +146 -210
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +6 -9
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +346 -526
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +110 -131
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +130 -116
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +93 -60
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +93 -181
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +242 -305
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +41 -18
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +30 -33
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +36 -33
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +29 -26
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +133 -88
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +791 -791
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +526 -526
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +114 -135
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +201 -207
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +21 -26
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +55 -68
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +15 -9
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +17 -10
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -13
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +9 -5
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +10 -23
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +29 -28
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +161 -201
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +254 -39
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +37 -75
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +8 -10
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/cipher → cipher_extra}/e_des.c +100 -78
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +6 -12
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +14 -11
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +6 -10
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +12 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-fuchsia.c → cpu_aarch64_fuchsia.c} +8 -7
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-linux.c → cpu_aarch64_linux.c} +6 -4
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-win.c → cpu_aarch64_win.c} +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm.c → cpu_arm.c} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.c → cpu_arm_linux.c} +11 -90
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.h → cpu_arm_linux.h} +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/{cpu-intel.c → cpu_intel.c} +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +25 -20
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +16 -27
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +17 -32
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/des.c +232 -232
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +232 -29
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +39 -16
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +37 -7
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +11 -36
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +214 -99
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +21 -5
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +83 -60
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +46 -12
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +25 -23
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +43 -9
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +75 -44
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +19 -25
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +96 -45
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +233 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +42 -25
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +35 -47
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +135 -244
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +15 -10
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +29 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +13 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +3 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +13 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +9 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +35 -27
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +16 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +88 -60
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +4 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +99 -113
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +5 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +112 -168
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +86 -31
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +11 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +13 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +13 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +19 -108
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +19 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +15 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +22 -21
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +79 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +102 -99
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra → fipsmodule/cipher}/e_aesccm.c +52 -46
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cmac → fipsmodule/cmac}/cmac.c +55 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +21 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +5 -3
- data/third_party/boringssl-with-bazel/src/crypto/{evp → fipsmodule/digestsign}/digestsign.c +51 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +25 -25
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +91 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +34 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +54 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +44 -60
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64-table.h → p256-nistz-table.h} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.c → p256-nistz.c} +60 -53
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.h → p256-nistz.h} +5 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +48 -36
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +2 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +2 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +42 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +6 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +52 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +9 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +71 -43
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +14 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +31 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +16 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +9 -38
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +73 -59
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +11 -45
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +63 -52
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +107 -62
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +58 -31
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +523 -422
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +334 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +3 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +12 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +14 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +19 -6
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +32 -14
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +65 -29
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +373 -18
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +205 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +13 -1
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +220 -13
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -7
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +13 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +81 -90
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +150 -245
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +629 -613
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +142 -149
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +99 -131
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -66
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +31 -38
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +18 -31
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +129 -5
- data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +8 -11
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +61 -27
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +10 -13
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +10 -13
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +66 -34
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +190 -77
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +81 -284
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +109 -42
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +22 -24
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +54 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +32 -34
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +32 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +465 -704
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +284 -331
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +183 -178
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +11 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +67 -50
- data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +153 -150
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +786 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +95 -102
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +72 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +12 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +227 -252
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +52 -47
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +230 -224
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +161 -327
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +37 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +14 -31
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +55 -85
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +534 -618
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +129 -122
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +116 -182
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +132 -132
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +181 -202
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +64 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +175 -160
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +1865 -2050
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +433 -462
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +156 -163
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +267 -263
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +40 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +59 -63
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +63 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +114 -144
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +25 -26
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +326 -415
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +8 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +30 -28
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +354 -370
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +37 -32
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +116 -119
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +36 -26
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +10 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +419 -261
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +113 -105
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +11 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +78 -170
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +126 -131
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +465 -469
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +56 -54
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +46 -49
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +309 -346
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +341 -365
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +429 -393
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +29 -24
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +65 -59
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +125 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +43 -42
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +122 -125
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +50 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +247 -253
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +386 -389
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +45 -32
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +57 -54
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +63 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +143 -136
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +664 -707
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +83 -75
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1062 -1146
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +8 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +28 -48
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +211 -187
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +26 -78
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +19 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +21 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +49 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +99 -29
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +49 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +2 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +16 -200
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +34 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +82 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +32 -30
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +7 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +48 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +37 -8
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +33 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +22 -30
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +7 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +41 -16
- data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +91 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +74 -8
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +13 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +11 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +8 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +12 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +7 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +13 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +139 -75
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +1 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +384 -286
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +5 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +41 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +18 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +49 -23
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +0 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1592 -1074
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +202 -205
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +6 -13
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +17 -18
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +4 -5
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +25 -33
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +34 -20
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +65 -34
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +198 -54
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +5 -5
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +32 -28
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +76 -44
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +130 -98
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +27 -11
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +91 -75
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +8 -10
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +39 -65
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +1 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +5 -9
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +30 -33
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +77 -100
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +120 -107
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +164 -30
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +150 -60
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +22 -11
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +22 -6
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +15 -13
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +5 -43
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +22 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +16 -98
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +1241 -657
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +751 -398
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3551 -1938
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1272 -487
- metadata +107 -72
- data/src/core/ext/filters/client_channel/lb_call_state_internal.h +0 -39
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +0 -30
- data/src/core/lib/gprpp/global_config.h +0 -93
- data/src/core/lib/gprpp/global_config_env.cc +0 -140
- data/src/core/lib/gprpp/global_config_env.h +0 -133
- data/src/core/lib/gprpp/global_config_generic.h +0 -40
- data/src/core/lib/promise/intra_activity_waiter.h +0 -55
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +0 -32
- data/src/core/lib/security/security_connector/ssl_utils_config.h +0 -29
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +0 -195
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +0 -83
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/asn1/charmap.h +0 -15
- data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +0 -206
- data/third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +0 -361
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +0 -287
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +0 -132
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +0 -155
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +0 -131
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +0 -189
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +0 -843
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +0 -289
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +0 -57
- /data/src/core/lib/gpr/{log_android.cc → android/log.cc} +0 -0
- /data/src/core/lib/gpr/{cpu_iphone.cc → iphone/cpu.cc} +0 -0
- /data/src/core/lib/gpr/{cpu_linux.cc → linux/cpu.cc} +0 -0
- /data/src/core/lib/gpr/{log_linux.cc → linux/log.cc} +0 -0
- /data/src/core/lib/gpr/{tmpfile_msys.cc → msys/tmpfile.cc} +0 -0
- /data/src/core/lib/gpr/{cpu_posix.cc → posix/cpu.cc} +0 -0
- /data/src/core/lib/gpr/{log_posix.cc → posix/log.cc} +0 -0
- /data/src/core/lib/gpr/{string_posix.cc → posix/string.cc} +0 -0
- /data/src/core/lib/gpr/{sync_posix.cc → posix/sync.cc} +0 -0
- /data/src/core/lib/gpr/{time_posix.cc → posix/time.cc} +0 -0
- /data/src/core/lib/gpr/{tmpfile_posix.cc → posix/tmpfile.cc} +0 -0
- /data/src/core/lib/gpr/{cpu_windows.cc → windows/cpu.cc} +0 -0
- /data/src/core/lib/gpr/{log_windows.cc → windows/log.cc} +0 -0
- /data/src/core/lib/gpr/{string_windows.cc → windows/string.cc} +0 -0
- /data/src/core/lib/gpr/{string_util_windows.cc → windows/string_util.cc} +0 -0
- /data/src/core/lib/gpr/{sync_windows.cc → windows/sync.cc} +0 -0
- /data/src/core/lib/gpr/{time_windows.cc → windows/time.cc} +0 -0
- /data/src/core/lib/gpr/{tmpfile_windows.cc → windows/tmpfile.cc} +0 -0
- /data/src/core/lib/gprpp/{env_linux.cc → linux/env.cc} +0 -0
- /data/src/core/lib/gprpp/{env_posix.cc → posix/env.cc} +0 -0
- /data/src/core/lib/gprpp/{stat_posix.cc → posix/stat.cc} +0 -0
- /data/src/core/lib/gprpp/{env_windows.cc → windows/env.cc} +0 -0
- /data/src/core/lib/gprpp/{stat_windows.cc → windows/stat.cc} +0 -0
@@ -16,224 +16,229 @@
|
|
16
16
|
|
17
17
|
#include <openssl/base.h>
|
18
18
|
#include <openssl/err.h>
|
19
|
-
#include <openssl/type_check.h>
|
20
19
|
|
20
|
+
#include <assert.h>
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
22
|
+
static_assert(ERR_LIB_NONE == 1, "library value changed");
|
23
|
+
static_assert(ERR_LIB_SYS == 2, "library value changed");
|
24
|
+
static_assert(ERR_LIB_BN == 3, "library value changed");
|
25
|
+
static_assert(ERR_LIB_RSA == 4, "library value changed");
|
26
|
+
static_assert(ERR_LIB_DH == 5, "library value changed");
|
27
|
+
static_assert(ERR_LIB_EVP == 6, "library value changed");
|
28
|
+
static_assert(ERR_LIB_BUF == 7, "library value changed");
|
29
|
+
static_assert(ERR_LIB_OBJ == 8, "library value changed");
|
30
|
+
static_assert(ERR_LIB_PEM == 9, "library value changed");
|
31
|
+
static_assert(ERR_LIB_DSA == 10, "library value changed");
|
32
|
+
static_assert(ERR_LIB_X509 == 11, "library value changed");
|
33
|
+
static_assert(ERR_LIB_ASN1 == 12, "library value changed");
|
34
|
+
static_assert(ERR_LIB_CONF == 13, "library value changed");
|
35
|
+
static_assert(ERR_LIB_CRYPTO == 14, "library value changed");
|
36
|
+
static_assert(ERR_LIB_EC == 15, "library value changed");
|
37
|
+
static_assert(ERR_LIB_SSL == 16, "library value changed");
|
38
|
+
static_assert(ERR_LIB_BIO == 17, "library value changed");
|
39
|
+
static_assert(ERR_LIB_PKCS7 == 18, "library value changed");
|
40
|
+
static_assert(ERR_LIB_PKCS8 == 19, "library value changed");
|
41
|
+
static_assert(ERR_LIB_X509V3 == 20, "library value changed");
|
42
|
+
static_assert(ERR_LIB_RAND == 21, "library value changed");
|
43
|
+
static_assert(ERR_LIB_ENGINE == 22, "library value changed");
|
44
|
+
static_assert(ERR_LIB_OCSP == 23, "library value changed");
|
45
|
+
static_assert(ERR_LIB_UI == 24, "library value changed");
|
46
|
+
static_assert(ERR_LIB_COMP == 25, "library value changed");
|
47
|
+
static_assert(ERR_LIB_ECDSA == 26, "library value changed");
|
48
|
+
static_assert(ERR_LIB_ECDH == 27, "library value changed");
|
49
|
+
static_assert(ERR_LIB_HMAC == 28, "library value changed");
|
50
|
+
static_assert(ERR_LIB_DIGEST == 29, "library value changed");
|
51
|
+
static_assert(ERR_LIB_CIPHER == 30, "library value changed");
|
52
|
+
static_assert(ERR_LIB_HKDF == 31, "library value changed");
|
53
|
+
static_assert(ERR_LIB_TRUST_TOKEN == 32, "library value changed");
|
54
|
+
static_assert(ERR_LIB_USER == 33, "library value changed");
|
55
|
+
static_assert(ERR_NUM_LIBS == 34, "number of libraries changed");
|
56
56
|
|
57
57
|
const uint32_t kOpenSSLReasonValues[] = {
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
58
|
+
0xc320885,
|
59
|
+
0xc32889f,
|
60
|
+
0xc3308ae,
|
61
|
+
0xc3388be,
|
62
|
+
0xc3408cd,
|
63
|
+
0xc3488e6,
|
64
|
+
0xc3508f2,
|
65
|
+
0xc35890f,
|
66
|
+
0xc36092f,
|
67
|
+
0xc36893d,
|
68
|
+
0xc37094d,
|
69
|
+
0xc37895a,
|
70
|
+
0xc38096a,
|
71
|
+
0xc388975,
|
72
|
+
0xc39098b,
|
73
|
+
0xc39899a,
|
74
|
+
0xc3a09ae,
|
75
|
+
0xc3a8892,
|
76
76
|
0xc3b00f7,
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
77
|
+
0xc3b8921,
|
78
|
+
0x10320892,
|
79
|
+
0x10329620,
|
80
|
+
0x1033162c,
|
81
|
+
0x10339645,
|
82
|
+
0x10341658,
|
83
|
+
0x10348f72,
|
84
|
+
0x10350cab,
|
85
|
+
0x1035966b,
|
86
|
+
0x10361695,
|
87
|
+
0x103696a8,
|
88
|
+
0x103716c7,
|
89
|
+
0x103796e0,
|
90
|
+
0x103816f5,
|
91
|
+
0x10389713,
|
92
|
+
0x10391722,
|
93
|
+
0x1039973e,
|
94
|
+
0x103a1759,
|
95
|
+
0x103a9768,
|
96
|
+
0x103b1784,
|
97
|
+
0x103b979f,
|
98
|
+
0x103c17c5,
|
99
99
|
0x103c80f7,
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
100
|
+
0x103d17d6,
|
101
|
+
0x103d97ea,
|
102
|
+
0x103e1809,
|
103
|
+
0x103e9818,
|
104
|
+
0x103f182f,
|
105
|
+
0x103f9842,
|
106
|
+
0x10400c6f,
|
107
|
+
0x10409855,
|
108
|
+
0x10411873,
|
109
|
+
0x10419886,
|
110
|
+
0x104218a0,
|
111
|
+
0x104298b0,
|
112
|
+
0x104318c4,
|
113
|
+
0x104398da,
|
114
|
+
0x104418f2,
|
115
|
+
0x10449907,
|
116
|
+
0x1045191b,
|
117
|
+
0x1045992d,
|
118
|
+
0x10460635,
|
119
|
+
0x1046899a,
|
120
|
+
0x10471942,
|
121
|
+
0x10479959,
|
122
|
+
0x1048196e,
|
123
|
+
0x1048997c,
|
124
|
+
0x10490ebe,
|
125
|
+
0x104997b6,
|
126
|
+
0x104a1680,
|
127
|
+
0x14320c52,
|
128
|
+
0x14328c60,
|
129
|
+
0x14330c6f,
|
130
|
+
0x14338c81,
|
131
131
|
0x143400b9,
|
132
132
|
0x143480f7,
|
133
133
|
0x18320090,
|
134
|
-
|
134
|
+
0x18328fc8,
|
135
135
|
0x183300b9,
|
136
|
-
|
137
|
-
|
136
|
+
0x18338fde,
|
137
|
+
0x18340ff2,
|
138
138
|
0x183480f7,
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
139
|
+
0x18351011,
|
140
|
+
0x18359029,
|
141
|
+
0x1836103e,
|
142
|
+
0x18369052,
|
143
|
+
0x1837108a,
|
144
|
+
0x183790a0,
|
145
|
+
0x183810b4,
|
146
|
+
0x183890c4,
|
147
|
+
0x18390ac0,
|
148
|
+
0x183990d4,
|
149
|
+
0x183a10fa,
|
150
|
+
0x183a9120,
|
151
|
+
0x183b0cca,
|
152
|
+
0x183b916f,
|
153
|
+
0x183c1181,
|
154
|
+
0x183c918c,
|
155
|
+
0x183d119c,
|
156
|
+
0x183d91ad,
|
157
|
+
0x183e11be,
|
158
|
+
0x183e91d0,
|
159
|
+
0x183f11f9,
|
160
|
+
0x183f9212,
|
161
|
+
0x1840122a,
|
162
|
+
0x1840870d,
|
163
|
+
0x18411143,
|
164
|
+
0x1841910e,
|
165
|
+
0x1842112d,
|
166
|
+
0x18428cb7,
|
167
|
+
0x184310e9,
|
168
|
+
0x18439155,
|
169
|
+
0x18441007,
|
170
|
+
0x18449076,
|
171
|
+
0x20321264,
|
172
|
+
0x20329251,
|
173
|
+
0x24321270,
|
174
|
+
0x243289e0,
|
175
|
+
0x24331282,
|
176
|
+
0x2433928f,
|
177
|
+
0x2434129c,
|
178
|
+
0x243492ae,
|
179
|
+
0x243512bd,
|
180
|
+
0x243592da,
|
181
|
+
0x243612e7,
|
182
|
+
0x243692f5,
|
183
|
+
0x24371303,
|
184
|
+
0x24379311,
|
185
|
+
0x2438131a,
|
186
|
+
0x24389327,
|
187
|
+
0x2439133a,
|
188
|
+
0x28320c9f,
|
189
|
+
0x28328cca,
|
190
|
+
0x28330c6f,
|
191
|
+
0x28338cdd,
|
192
|
+
0x28340cab,
|
193
193
|
0x283480b9,
|
194
194
|
0x283500f7,
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
195
|
+
0x28358cb7,
|
196
|
+
0x2836099a,
|
197
|
+
0x2c3232bf,
|
198
|
+
0x2c329351,
|
199
|
+
0x2c3332cd,
|
200
|
+
0x2c33b2df,
|
201
|
+
0x2c3432f3,
|
202
|
+
0x2c34b305,
|
203
|
+
0x2c353320,
|
204
|
+
0x2c35b332,
|
205
|
+
0x2c363362,
|
205
206
|
0x2c36833a,
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
207
|
+
0x2c37336f,
|
208
|
+
0x2c37b39b,
|
209
|
+
0x2c3833d9,
|
210
|
+
0x2c38b3f0,
|
211
|
+
0x2c39340e,
|
212
|
+
0x2c39b41e,
|
213
|
+
0x2c3a3430,
|
214
|
+
0x2c3ab444,
|
215
|
+
0x2c3b3455,
|
216
|
+
0x2c3bb474,
|
217
|
+
0x2c3c1363,
|
218
|
+
0x2c3c9379,
|
219
|
+
0x2c3d34b9,
|
220
|
+
0x2c3d9392,
|
221
|
+
0x2c3e34e3,
|
222
|
+
0x2c3eb4f1,
|
223
|
+
0x2c3f3509,
|
224
|
+
0x2c3fb521,
|
225
|
+
0x2c40354b,
|
226
|
+
0x2c409264,
|
227
|
+
0x2c41355c,
|
228
|
+
0x2c41b56f,
|
229
|
+
0x2c42122a,
|
230
|
+
0x2c42b580,
|
231
|
+
0x2c43076d,
|
232
|
+
0x2c43b466,
|
233
|
+
0x2c4433ae,
|
234
|
+
0x2c44b52e,
|
235
|
+
0x2c453345,
|
236
|
+
0x2c45b381,
|
237
|
+
0x2c4633fe,
|
238
|
+
0x2c46b488,
|
239
|
+
0x2c47349d,
|
240
|
+
0x2c47b4d6,
|
241
|
+
0x2c4833c0,
|
237
242
|
0x30320000,
|
238
243
|
0x30328015,
|
239
244
|
0x3033001f,
|
@@ -278,528 +283,532 @@ const uint32_t kOpenSSLReasonValues[] = {
|
|
278
283
|
0x3046833a,
|
279
284
|
0x30470372,
|
280
285
|
0x30478384,
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
286
|
+
0x304803a2,
|
287
|
+
0x304883b3,
|
288
|
+
0x304903c2,
|
289
|
+
0x304983da,
|
290
|
+
0x304a03ec,
|
291
|
+
0x304a8400,
|
292
|
+
0x304b0418,
|
293
|
+
0x304b842b,
|
294
|
+
0x304c0436,
|
295
|
+
0x304c8447,
|
296
|
+
0x304d0453,
|
297
|
+
0x304d8469,
|
298
|
+
0x304e0477,
|
299
|
+
0x304e848d,
|
300
|
+
0x304f049f,
|
301
|
+
0x304f84b1,
|
302
|
+
0x305004d4,
|
303
|
+
0x305084e7,
|
304
|
+
0x305104f8,
|
305
|
+
0x30518508,
|
306
|
+
0x30520520,
|
307
|
+
0x30528535,
|
308
|
+
0x3053054d,
|
309
|
+
0x30538561,
|
310
|
+
0x30540579,
|
311
|
+
0x30548592,
|
312
|
+
0x305505ab,
|
313
|
+
0x305585c8,
|
314
|
+
0x305605d3,
|
315
|
+
0x305685eb,
|
316
|
+
0x305705fb,
|
317
|
+
0x3057860c,
|
318
|
+
0x3058061f,
|
319
|
+
0x30588635,
|
320
|
+
0x3059063e,
|
321
|
+
0x30598653,
|
322
|
+
0x305a0666,
|
323
|
+
0x305a8675,
|
324
|
+
0x305b0695,
|
325
|
+
0x305b86a4,
|
326
|
+
0x305c06c5,
|
327
|
+
0x305c86e1,
|
328
|
+
0x305d06ed,
|
329
|
+
0x305d870d,
|
330
|
+
0x305e0729,
|
331
|
+
0x305e874d,
|
332
|
+
0x305f0763,
|
333
|
+
0x305f876d,
|
334
|
+
0x306004c4,
|
330
335
|
0x3060804a,
|
331
336
|
0x30610357,
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
337
|
+
0x3061873a,
|
338
|
+
0x30620392,
|
339
|
+
0x34320bb0,
|
340
|
+
0x34328bc4,
|
341
|
+
0x34330be1,
|
342
|
+
0x34338bf4,
|
343
|
+
0x34340c03,
|
344
|
+
0x34348c3c,
|
345
|
+
0x34350c20,
|
339
346
|
0x3c320090,
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
347
|
+
0x3c328d07,
|
348
|
+
0x3c330d20,
|
349
|
+
0x3c338d3b,
|
350
|
+
0x3c340d58,
|
351
|
+
0x3c348d82,
|
352
|
+
0x3c350d9d,
|
353
|
+
0x3c358dc3,
|
354
|
+
0x3c360ddc,
|
355
|
+
0x3c368df4,
|
356
|
+
0x3c370e05,
|
357
|
+
0x3c378e13,
|
358
|
+
0x3c380e20,
|
359
|
+
0x3c388e34,
|
360
|
+
0x3c390cca,
|
361
|
+
0x3c398e57,
|
362
|
+
0x3c3a0e6b,
|
363
|
+
0x3c3a895a,
|
364
|
+
0x3c3b0e7b,
|
365
|
+
0x3c3b8e96,
|
366
|
+
0x3c3c0ea8,
|
367
|
+
0x3c3c8edb,
|
368
|
+
0x3c3d0ee5,
|
369
|
+
0x3c3d8ef9,
|
370
|
+
0x3c3e0f07,
|
371
|
+
0x3c3e8f2c,
|
372
|
+
0x3c3f0cf3,
|
373
|
+
0x3c3f8f15,
|
367
374
|
0x3c4000b9,
|
368
375
|
0x3c4080f7,
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
376
|
+
0x3c410d73,
|
377
|
+
0x3c418db2,
|
378
|
+
0x3c420ebe,
|
379
|
+
0x3c428e48,
|
380
|
+
0x40321a0e,
|
381
|
+
0x40329a24,
|
382
|
+
0x40331a52,
|
383
|
+
0x40339a5c,
|
384
|
+
0x40341a73,
|
385
|
+
0x40349a91,
|
386
|
+
0x40351aa1,
|
387
|
+
0x40359ab3,
|
388
|
+
0x40361ac0,
|
389
|
+
0x40369acc,
|
390
|
+
0x40371ae1,
|
391
|
+
0x40379af3,
|
392
|
+
0x40381afe,
|
393
|
+
0x40389b10,
|
394
|
+
0x40390f72,
|
395
|
+
0x40399b20,
|
396
|
+
0x403a1b33,
|
397
|
+
0x403a9b54,
|
398
|
+
0x403b1b65,
|
399
|
+
0x403b9b75,
|
393
400
|
0x403c0071,
|
394
401
|
0x403c8090,
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
402
|
+
0x403d1bd6,
|
403
|
+
0x403d9bec,
|
404
|
+
0x403e1bfb,
|
405
|
+
0x403e9c33,
|
406
|
+
0x403f1c4d,
|
407
|
+
0x403f9c75,
|
408
|
+
0x40401c8a,
|
409
|
+
0x40409c9e,
|
410
|
+
0x40411cd9,
|
411
|
+
0x40419cf4,
|
412
|
+
0x40421d0d,
|
413
|
+
0x40429d20,
|
414
|
+
0x40431d34,
|
415
|
+
0x40439d62,
|
416
|
+
0x40441d79,
|
410
417
|
0x404480b9,
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
418
|
+
0x40451d8e,
|
419
|
+
0x40459da0,
|
420
|
+
0x40461dc4,
|
421
|
+
0x40469de4,
|
422
|
+
0x40471df2,
|
423
|
+
0x40479e19,
|
424
|
+
0x40481e8a,
|
425
|
+
0x40489f44,
|
426
|
+
0x40491f5b,
|
427
|
+
0x40499f75,
|
428
|
+
0x404a1f8c,
|
429
|
+
0x404a9faa,
|
430
|
+
0x404b1fc2,
|
431
|
+
0x404b9fef,
|
432
|
+
0x404c2005,
|
433
|
+
0x404ca017,
|
434
|
+
0x404d2038,
|
435
|
+
0x404da071,
|
436
|
+
0x404e2085,
|
437
|
+
0x404ea092,
|
438
|
+
0x404f212c,
|
439
|
+
0x404fa1a2,
|
440
|
+
0x40502211,
|
441
|
+
0x4050a225,
|
442
|
+
0x40512258,
|
443
|
+
0x40522268,
|
444
|
+
0x4052a28c,
|
445
|
+
0x405322a4,
|
446
|
+
0x4053a2b7,
|
447
|
+
0x405422cc,
|
448
|
+
0x4054a2ef,
|
449
|
+
0x4055231a,
|
450
|
+
0x4055a357,
|
451
|
+
0x4056237c,
|
452
|
+
0x4056a395,
|
453
|
+
0x405723ad,
|
454
|
+
0x4057a3c0,
|
455
|
+
0x405823d5,
|
456
|
+
0x4058a3fc,
|
457
|
+
0x4059242b,
|
458
|
+
0x4059a458,
|
459
|
+
0x405a246c,
|
460
|
+
0x405aa47c,
|
461
|
+
0x405b2494,
|
462
|
+
0x405ba4a5,
|
463
|
+
0x405c24b8,
|
464
|
+
0x405ca4f7,
|
465
|
+
0x405d2504,
|
466
|
+
0x405da529,
|
467
|
+
0x405e2567,
|
468
|
+
0x405e8afe,
|
469
|
+
0x405f2588,
|
470
|
+
0x405fa595,
|
471
|
+
0x406025a3,
|
472
|
+
0x4060a5c5,
|
473
|
+
0x40612626,
|
474
|
+
0x4061a65e,
|
475
|
+
0x40622675,
|
476
|
+
0x4062a686,
|
477
|
+
0x406326d3,
|
478
|
+
0x4063a6e8,
|
479
|
+
0x406426ff,
|
480
|
+
0x4064a72b,
|
481
|
+
0x40652746,
|
482
|
+
0x4065a75d,
|
483
|
+
0x40662775,
|
484
|
+
0x4066a79f,
|
485
|
+
0x406727ca,
|
486
|
+
0x4067a80f,
|
487
|
+
0x40682857,
|
488
|
+
0x4068a878,
|
489
|
+
0x406928aa,
|
490
|
+
0x4069a8d8,
|
491
|
+
0x406a28f9,
|
492
|
+
0x406aa919,
|
493
|
+
0x406b2aa1,
|
494
|
+
0x406baac4,
|
495
|
+
0x406c2ada,
|
496
|
+
0x406cade4,
|
497
|
+
0x406d2e13,
|
498
|
+
0x406dae3b,
|
499
|
+
0x406e2e69,
|
500
|
+
0x406eaeb6,
|
501
|
+
0x406f2f0f,
|
502
|
+
0x406faf47,
|
503
|
+
0x40702f5a,
|
504
|
+
0x4070af77,
|
505
|
+
0x4071084d,
|
506
|
+
0x4071af89,
|
507
|
+
0x40722f9c,
|
508
|
+
0x4072afd2,
|
509
|
+
0x40732fea,
|
510
|
+
0x4073957b,
|
511
|
+
0x40742ffe,
|
512
|
+
0x4074b018,
|
513
|
+
0x40753029,
|
514
|
+
0x4075b03d,
|
515
|
+
0x4076304b,
|
516
|
+
0x40769327,
|
517
|
+
0x40773070,
|
518
|
+
0x4077b0b0,
|
519
|
+
0x407830cb,
|
520
|
+
0x4078b104,
|
521
|
+
0x4079311b,
|
522
|
+
0x4079b131,
|
523
|
+
0x407a315d,
|
524
|
+
0x407ab170,
|
525
|
+
0x407b3185,
|
526
|
+
0x407bb197,
|
527
|
+
0x407c31c8,
|
528
|
+
0x407cb1d1,
|
529
|
+
0x407d2893,
|
530
|
+
0x407da1ca,
|
531
|
+
0x407e30e0,
|
532
|
+
0x407ea40c,
|
533
|
+
0x407f1e06,
|
534
|
+
0x407f9fd9,
|
535
|
+
0x4080213c,
|
536
|
+
0x40809e2e,
|
537
|
+
0x4081227a,
|
538
|
+
0x4081a0e0,
|
539
|
+
0x40822e54,
|
540
|
+
0x40829b81,
|
541
|
+
0x408323e7,
|
542
|
+
0x4083a710,
|
543
|
+
0x40841e42,
|
544
|
+
0x4084a444,
|
545
|
+
0x408524c9,
|
546
|
+
0x4085a5ed,
|
547
|
+
0x40862549,
|
548
|
+
0x4086a1e4,
|
549
|
+
0x40872e9a,
|
550
|
+
0x4087a63b,
|
551
|
+
0x40881bbf,
|
552
|
+
0x4088a822,
|
553
|
+
0x40891c0e,
|
554
|
+
0x40899b9b,
|
555
|
+
0x408a2b12,
|
556
|
+
0x408a9993,
|
557
|
+
0x408b31ac,
|
558
|
+
0x408baf24,
|
559
|
+
0x408c24d9,
|
560
|
+
0x408c99cb,
|
561
|
+
0x408d1f2a,
|
562
|
+
0x408d9e74,
|
563
|
+
0x408e205a,
|
564
|
+
0x408ea337,
|
565
|
+
0x408f2836,
|
566
|
+
0x408fa609,
|
567
|
+
0x409027eb,
|
568
|
+
0x4090a51b,
|
569
|
+
0x40912afa,
|
570
|
+
0x409199f1,
|
571
|
+
0x40921c5b,
|
572
|
+
0x4092aed5,
|
573
|
+
0x40932fb5,
|
574
|
+
0x4093a1f5,
|
575
|
+
0x40941e56,
|
576
|
+
0x4094ab2b,
|
577
|
+
0x40952697,
|
578
|
+
0x4095b13d,
|
579
|
+
0x40962e81,
|
580
|
+
0x4096a155,
|
581
|
+
0x40972240,
|
582
|
+
0x4097a0a9,
|
583
|
+
0x40981cbb,
|
584
|
+
0x4098a6ab,
|
585
|
+
0x40992ef1,
|
586
|
+
0x4099a364,
|
587
|
+
0x409a22fd,
|
588
|
+
0x409a99af,
|
589
|
+
0x409b1eb0,
|
590
|
+
0x409b9edb,
|
591
|
+
0x409c3092,
|
592
|
+
0x409c9f03,
|
593
|
+
0x409d2111,
|
594
|
+
0x409da0f6,
|
595
|
+
0x409e1d4c,
|
596
|
+
0x409ea18a,
|
597
|
+
0x409f2172,
|
598
|
+
0x409f9ea3,
|
599
|
+
0x40a021b2,
|
600
|
+
0x40a0a0c3,
|
601
|
+
0x41f429cc,
|
602
|
+
0x41f92a5e,
|
603
|
+
0x41fe2951,
|
604
|
+
0x41feac07,
|
605
|
+
0x41ff2d35,
|
606
|
+
0x420329e5,
|
607
|
+
0x42082a07,
|
608
|
+
0x4208aa43,
|
609
|
+
0x42092935,
|
610
|
+
0x4209aa7d,
|
611
|
+
0x420a298c,
|
612
|
+
0x420aa96c,
|
613
|
+
0x420b29ac,
|
614
|
+
0x420baa25,
|
615
|
+
0x420c2d51,
|
616
|
+
0x420cab3b,
|
617
|
+
0x420d2bee,
|
618
|
+
0x420dac25,
|
619
|
+
0x42122c58,
|
620
|
+
0x42172d18,
|
621
|
+
0x4217ac9a,
|
622
|
+
0x421c2cbc,
|
623
|
+
0x421f2c77,
|
624
|
+
0x42212dc9,
|
625
|
+
0x42262cfb,
|
626
|
+
0x422b2da7,
|
627
|
+
0x422babc9,
|
628
|
+
0x422c2d89,
|
629
|
+
0x422cab7c,
|
630
|
+
0x422d2b55,
|
631
|
+
0x422dad68,
|
632
|
+
0x422e2ba8,
|
633
|
+
0x42302cd7,
|
634
|
+
0x4230ac3f,
|
635
|
+
0x44320778,
|
636
|
+
0x44328787,
|
637
|
+
0x44330793,
|
638
|
+
0x443387a1,
|
639
|
+
0x443407b4,
|
640
|
+
0x443487c5,
|
641
|
+
0x443507cc,
|
642
|
+
0x443587d6,
|
643
|
+
0x443607e9,
|
644
|
+
0x443687ff,
|
645
|
+
0x44370811,
|
646
|
+
0x4437881e,
|
647
|
+
0x4438082d,
|
648
|
+
0x44388835,
|
649
|
+
0x4439084d,
|
650
|
+
0x4439885b,
|
651
|
+
0x443a086e,
|
652
|
+
0x48321351,
|
653
|
+
0x48329363,
|
654
|
+
0x48331379,
|
655
|
+
0x48339392,
|
656
|
+
0x4c3213cf,
|
657
|
+
0x4c3293df,
|
658
|
+
0x4c3313f2,
|
659
|
+
0x4c339412,
|
653
660
|
0x4c3400b9,
|
654
661
|
0x4c3480f7,
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
662
|
+
0x4c35141e,
|
663
|
+
0x4c35942c,
|
664
|
+
0x4c361448,
|
665
|
+
0x4c36946e,
|
666
|
+
0x4c37147d,
|
667
|
+
0x4c37948b,
|
668
|
+
0x4c3814a0,
|
669
|
+
0x4c3894ac,
|
670
|
+
0x4c3914cc,
|
671
|
+
0x4c3994f6,
|
672
|
+
0x4c3a150f,
|
673
|
+
0x4c3a9528,
|
674
|
+
0x4c3b0635,
|
675
|
+
0x4c3b9541,
|
676
|
+
0x4c3c1553,
|
677
|
+
0x4c3c9562,
|
678
|
+
0x4c3d157b,
|
679
|
+
0x4c3d8c92,
|
680
|
+
0x4c3e15e8,
|
681
|
+
0x4c3e958a,
|
682
|
+
0x4c3f160a,
|
683
|
+
0x4c3f9327,
|
684
|
+
0x4c4015a0,
|
685
|
+
0x4c4093bb,
|
686
|
+
0x4c4115d8,
|
687
|
+
0x4c41945b,
|
688
|
+
0x4c4215c4,
|
689
|
+
0x4c4293a3,
|
690
|
+
0x50323592,
|
691
|
+
0x5032b5a1,
|
692
|
+
0x503335ac,
|
693
|
+
0x5033b5bc,
|
694
|
+
0x503435d5,
|
695
|
+
0x5034b5ef,
|
696
|
+
0x503535fd,
|
697
|
+
0x5035b613,
|
698
|
+
0x50363625,
|
699
|
+
0x5036b63b,
|
700
|
+
0x50373654,
|
701
|
+
0x5037b667,
|
702
|
+
0x5038367f,
|
703
|
+
0x5038b690,
|
704
|
+
0x503936a5,
|
705
|
+
0x5039b6b9,
|
706
|
+
0x503a36d9,
|
707
|
+
0x503ab6ef,
|
708
|
+
0x503b3707,
|
709
|
+
0x503bb719,
|
710
|
+
0x503c3735,
|
711
|
+
0x503cb74c,
|
712
|
+
0x503d3765,
|
713
|
+
0x503db77b,
|
714
|
+
0x503e3788,
|
715
|
+
0x503eb79e,
|
716
|
+
0x503f37b0,
|
717
|
+
0x503f83b3,
|
718
|
+
0x504037c3,
|
719
|
+
0x5040b7d3,
|
720
|
+
0x504137ed,
|
721
|
+
0x5041b7fc,
|
722
|
+
0x50423816,
|
723
|
+
0x5042b833,
|
724
|
+
0x50433843,
|
725
|
+
0x5043b853,
|
726
|
+
0x50443870,
|
727
|
+
0x50448469,
|
728
|
+
0x50453884,
|
729
|
+
0x5045b8a2,
|
730
|
+
0x504638b5,
|
731
|
+
0x5046b8cb,
|
732
|
+
0x504738dd,
|
733
|
+
0x5047b8f2,
|
734
|
+
0x50483918,
|
735
|
+
0x5048b926,
|
736
|
+
0x50493939,
|
737
|
+
0x5049b94e,
|
738
|
+
0x504a3964,
|
739
|
+
0x504ab974,
|
740
|
+
0x504b3994,
|
741
|
+
0x504bb9a7,
|
742
|
+
0x504c39ca,
|
743
|
+
0x504cb9f8,
|
744
|
+
0x504d3a25,
|
745
|
+
0x504dba42,
|
746
|
+
0x504e3a5d,
|
747
|
+
0x504eba79,
|
748
|
+
0x504f3a8b,
|
749
|
+
0x504fbaa2,
|
750
|
+
0x50503ab1,
|
751
|
+
0x50508729,
|
752
|
+
0x50513ac4,
|
753
|
+
0x5051b862,
|
754
|
+
0x50523a0a,
|
755
|
+
0x58320fb0,
|
756
|
+
0x68320f72,
|
757
|
+
0x68328cca,
|
758
|
+
0x68330cdd,
|
759
|
+
0x68338f80,
|
760
|
+
0x68340f90,
|
753
761
|
0x683480f7,
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
762
|
+
0x6835099a,
|
763
|
+
0x6c320f38,
|
764
|
+
0x6c328c81,
|
765
|
+
0x6c330f43,
|
766
|
+
0x6c338f5c,
|
767
|
+
0x74320a66,
|
759
768
|
0x743280b9,
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
769
|
+
0x74330c92,
|
770
|
+
0x783209cb,
|
771
|
+
0x783289e0,
|
772
|
+
0x783309ec,
|
764
773
|
0x78338090,
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
774
|
+
0x783409fb,
|
775
|
+
0x78348a10,
|
776
|
+
0x78350a2f,
|
777
|
+
0x78358a51,
|
778
|
+
0x78360a66,
|
779
|
+
0x78368a7c,
|
780
|
+
0x78370a8c,
|
781
|
+
0x78378aad,
|
782
|
+
0x78380ac0,
|
783
|
+
0x78388ad2,
|
784
|
+
0x78390adf,
|
785
|
+
0x78398afe,
|
786
|
+
0x783a0b13,
|
787
|
+
0x783a8b21,
|
788
|
+
0x783b0b2b,
|
789
|
+
0x783b8b3f,
|
790
|
+
0x783c0b56,
|
791
|
+
0x783c8b6b,
|
792
|
+
0x783d0b82,
|
793
|
+
0x783d8b97,
|
794
|
+
0x783e0aed,
|
795
|
+
0x783e8a9f,
|
796
|
+
0x7c321240,
|
797
|
+
0x8032146e,
|
789
798
|
0x80328090,
|
790
|
-
|
799
|
+
0x8033328e,
|
791
800
|
0x803380b9,
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
801
|
+
0x8034329d,
|
802
|
+
0x8034b205,
|
803
|
+
0x80353223,
|
804
|
+
0x8035b2b1,
|
805
|
+
0x80363265,
|
806
|
+
0x8036b214,
|
807
|
+
0x80373257,
|
808
|
+
0x8037b1f2,
|
809
|
+
0x80383278,
|
810
|
+
0x8038b234,
|
811
|
+
0x80393249,
|
803
812
|
};
|
804
813
|
|
805
814
|
const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
|
@@ -851,6 +860,7 @@ const char kOpenSSLReasonStringData[] =
|
|
851
860
|
"INVALID_BIT_STRING_PADDING\0"
|
852
861
|
"INVALID_BMPSTRING\0"
|
853
862
|
"INVALID_DIGIT\0"
|
863
|
+
"INVALID_INTEGER\0"
|
854
864
|
"INVALID_MODIFIER\0"
|
855
865
|
"INVALID_NUMBER\0"
|
856
866
|
"INVALID_OBJECT_ENCODING\0"
|
@@ -897,6 +907,7 @@ const char kOpenSSLReasonStringData[] =
|
|
897
907
|
"UNSUPPORTED_ANY_DEFINED_BY_TYPE\0"
|
898
908
|
"UNSUPPORTED_PUBLIC_KEY_TYPE\0"
|
899
909
|
"UNSUPPORTED_TYPE\0"
|
910
|
+
"WRONG_INTEGER_TYPE\0"
|
900
911
|
"WRONG_PUBLIC_KEY_TYPE\0"
|
901
912
|
"WRONG_TAG\0"
|
902
913
|
"WRONG_TYPE\0"
|
@@ -1066,6 +1077,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1066
1077
|
"NOT_PKCS7_SIGNED_DATA\0"
|
1067
1078
|
"NO_CERTIFICATES_INCLUDED\0"
|
1068
1079
|
"NO_CRLS_INCLUDED\0"
|
1080
|
+
"AMBIGUOUS_FRIENDLY_NAME\0"
|
1069
1081
|
"BAD_ITERATION_COUNT\0"
|
1070
1082
|
"BAD_PKCS12_DATA\0"
|
1071
1083
|
"BAD_PKCS12_VERSION\0"
|
@@ -1223,6 +1235,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1223
1235
|
"INVALID_ECH_CONFIG_LIST\0"
|
1224
1236
|
"INVALID_ECH_PUBLIC_NAME\0"
|
1225
1237
|
"INVALID_MESSAGE\0"
|
1238
|
+
"INVALID_OUTER_EXTENSION\0"
|
1226
1239
|
"INVALID_OUTER_RECORD_TYPE\0"
|
1227
1240
|
"INVALID_SCT_LIST\0"
|
1228
1241
|
"INVALID_SIGNATURE_ALGORITHM\0"
|
@@ -1266,7 +1279,6 @@ const char kOpenSSLReasonStringData[] =
|
|
1266
1279
|
"OLD_SESSION_CIPHER_NOT_RETURNED\0"
|
1267
1280
|
"OLD_SESSION_PRF_HASH_MISMATCH\0"
|
1268
1281
|
"OLD_SESSION_VERSION_NOT_RETURNED\0"
|
1269
|
-
"OUTER_EXTENSION_NOT_FOUND\0"
|
1270
1282
|
"PARSE_TLSEXT\0"
|
1271
1283
|
"PATH_TOO_LONG\0"
|
1272
1284
|
"PEER_DID_NOT_RETURN_A_CERTIFICATE\0"
|
@@ -1407,6 +1419,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1407
1419
|
"INVALID_FIELD_FOR_VERSION\0"
|
1408
1420
|
"INVALID_FIELD_NAME\0"
|
1409
1421
|
"INVALID_PARAMETER\0"
|
1422
|
+
"INVALID_POLICY_EXTENSION\0"
|
1410
1423
|
"INVALID_PSS_PARAMETERS\0"
|
1411
1424
|
"INVALID_TRUST\0"
|
1412
1425
|
"INVALID_VERSION\0"
|
@@ -1417,7 +1430,10 @@ const char kOpenSSLReasonStringData[] =
|
|
1417
1430
|
"LOADING_DEFAULTS\0"
|
1418
1431
|
"NAME_TOO_LONG\0"
|
1419
1432
|
"NEWER_CRL_NOT_NEWER\0"
|
1433
|
+
"NO_CERTIFICATE_FOUND\0"
|
1434
|
+
"NO_CERTIFICATE_OR_CRL_FOUND\0"
|
1420
1435
|
"NO_CERT_SET_FOR_US_TO_VERIFY\0"
|
1436
|
+
"NO_CRL_FOUND\0"
|
1421
1437
|
"NO_CRL_NUMBER\0"
|
1422
1438
|
"PUBLIC_KEY_DECODE_ERROR\0"
|
1423
1439
|
"PUBLIC_KEY_ENCODE_ERROR\0"
|