grpc 1.24.0 → 1.25.0.pre1
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 +306 -243
- data/etc/roots.pem +0 -100
- data/include/grpc/grpc_security.h +44 -18
- data/include/grpc/impl/codegen/grpc_types.h +15 -0
- data/include/grpc/impl/codegen/port_platform.h +27 -11
- data/include/grpc/impl/codegen/sync_generic.h +1 -1
- data/src/boringssl/err_data.c +695 -650
- data/src/core/ext/filters/client_channel/client_channel.cc +257 -179
- data/src/core/ext/filters/client_channel/client_channel.h +24 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +2 -3
- data/src/core/ext/filters/client_channel/client_channel_factory.h +1 -5
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +18 -45
- data/src/core/ext/filters/client_channel/health/health_check_client.h +5 -13
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy.cc +2 -3
- data/src/core/ext/filters/client_channel/lb_policy.h +65 -55
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +14 -14
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +113 -36
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +14 -19
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +36 -13
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +3 -10
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +814 -1589
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +2 -5
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +3 -6
- data/src/core/ext/filters/client_channel/resolver.cc +1 -2
- data/src/core/ext/filters/client_channel/resolver.h +8 -16
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +25 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +46 -12
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +10 -17
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +7 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +4 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +111 -44
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +22 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +29 -10
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +27 -36
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +7 -10
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +60 -16
- data/src/core/ext/filters/client_channel/resolver_factory.h +4 -8
- data/src/core/ext/filters/client_channel/resolver_registry.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver_registry.h +1 -1
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +7 -10
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +7 -8
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +1 -1
- data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -5
- data/src/core/ext/filters/client_channel/retry_throttle.h +1 -4
- data/src/core/ext/filters/client_channel/service_config.h +8 -8
- data/src/core/ext/filters/client_channel/subchannel.cc +53 -86
- data/src/core/ext/filters/client_channel/subchannel.h +7 -9
- data/src/core/ext/filters/client_channel/subchannel_interface.h +9 -13
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +3 -6
- data/src/core/ext/filters/client_channel/{lb_policy/xds/xds_load_balancer_api.cc → xds/xds_api.cc} +169 -52
- data/src/core/ext/filters/client_channel/xds/xds_api.h +171 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +450 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +99 -0
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_channel.h +8 -6
- data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +26 -0
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_channel_secure.cc +28 -11
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +1413 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.h +221 -0
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_client_stats.cc +1 -5
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_client_stats.h +3 -4
- data/src/core/ext/filters/deadline/deadline_filter.cc +20 -20
- data/src/core/ext/filters/http/client/http_client_filter.cc +15 -15
- data/src/core/ext/filters/http/client_authority_filter.cc +14 -14
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +12 -12
- data/src/core/ext/filters/max_age/max_age_filter.cc +59 -50
- data/src/core/ext/filters/message_size/message_size_filter.cc +18 -18
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +15 -14
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +233 -175
- data/src/core/ext/transport/chttp2/transport/flow_control.h +21 -24
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +253 -163
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +24 -12
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +13 -15
- data/src/core/ext/transport/chttp2/transport/writing.cc +3 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +20 -13
- data/src/core/lib/channel/channel_args.cc +16 -0
- data/src/core/lib/channel/channel_args.h +22 -0
- data/src/core/lib/channel/channelz.cc +5 -6
- data/src/core/lib/channel/channelz.h +1 -1
- data/src/core/lib/channel/connected_channel.cc +20 -20
- data/src/core/lib/channel/handshaker.h +3 -4
- data/src/core/lib/channel/handshaker_factory.h +1 -3
- data/src/core/lib/debug/trace.h +3 -2
- data/src/core/lib/gprpp/arena.cc +3 -3
- data/src/core/lib/gprpp/arena.h +2 -3
- data/src/core/lib/gprpp/inlined_vector.h +9 -0
- data/src/core/lib/gprpp/map.h +3 -501
- data/src/core/lib/gprpp/memory.h +45 -41
- data/src/core/lib/gprpp/mpscq.cc +108 -0
- data/src/core/lib/gprpp/mpscq.h +98 -0
- data/src/core/lib/gprpp/orphanable.h +6 -11
- data/src/core/lib/gprpp/ref_counted.h +25 -19
- data/src/core/lib/gprpp/set.h +33 -0
- data/src/core/lib/gprpp/thd.h +2 -4
- data/src/core/lib/http/httpcli.cc +1 -1
- data/src/core/lib/http/httpcli_security_connector.cc +15 -11
- data/src/core/lib/http/parser.cc +1 -1
- data/src/core/lib/iomgr/buffer_list.cc +4 -5
- data/src/core/lib/iomgr/buffer_list.h +5 -6
- data/src/core/lib/iomgr/call_combiner.cc +4 -5
- data/src/core/lib/iomgr/call_combiner.h +2 -2
- data/src/core/lib/iomgr/cfstream_handle.h +3 -5
- data/src/core/lib/iomgr/closure.h +8 -3
- data/src/core/lib/iomgr/combiner.cc +45 -82
- data/src/core/lib/iomgr/combiner.h +32 -8
- data/src/core/lib/iomgr/endpoint_cfstream.cc +5 -3
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +19 -15
- data/src/core/lib/iomgr/exec_ctx.h +4 -3
- data/src/core/lib/iomgr/executor.cc +4 -2
- data/src/core/lib/iomgr/executor.h +3 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +3 -6
- data/src/core/lib/iomgr/executor/threadpool.cc +1 -2
- data/src/core/lib/iomgr/executor/threadpool.h +7 -11
- data/src/core/lib/iomgr/resource_quota.cc +55 -51
- data/src/core/lib/iomgr/resource_quota.h +13 -9
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +13 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +4 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +4 -11
- data/src/core/lib/iomgr/tcp_custom.cc +9 -7
- data/src/core/lib/iomgr/tcp_posix.cc +20 -16
- data/src/core/lib/iomgr/tcp_server.h +1 -4
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -5
- data/src/core/lib/iomgr/tcp_server_posix.cc +1 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +2 -11
- data/src/core/lib/iomgr/timer_custom.cc +2 -2
- data/src/core/lib/iomgr/udp_server.cc +3 -2
- data/src/core/lib/iomgr/udp_server.h +6 -12
- data/src/core/lib/json/json.h +1 -1
- data/src/core/lib/json/json_string.cc +2 -2
- data/src/core/lib/profiling/basic_timers.cc +2 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +2 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -1
- data/src/core/lib/security/credentials/credentials.h +4 -20
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +4 -4
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +64 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +4 -4
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +9 -7
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +2 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +4 -4
- data/src/core/lib/security/security_connector/security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/security_connector.h +19 -17
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +8 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +2 -2
- data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +14 -6
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +4 -2
- data/src/core/lib/security/transport/client_auth_filter.cc +17 -17
- data/src/core/lib/security/transport/security_handshaker.cc +29 -13
- data/src/core/lib/security/transport/security_handshaker.h +4 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +14 -14
- data/src/core/lib/slice/slice.cc +2 -10
- data/src/core/lib/slice/slice_hash_table.h +4 -6
- data/src/core/lib/slice/slice_intern.cc +42 -39
- data/src/core/lib/slice/slice_internal.h +3 -3
- data/src/core/lib/slice/slice_utils.h +21 -4
- data/src/core/lib/slice/slice_weak_hash_table.h +4 -6
- data/src/core/lib/surface/call.cc +3 -3
- data/src/core/lib/surface/channel.cc +7 -0
- data/src/core/lib/surface/completion_queue.cc +12 -11
- data/src/core/lib/surface/completion_queue.h +4 -2
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/lame_client.cc +33 -18
- data/src/core/lib/surface/server.cc +77 -76
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/byte_stream.h +3 -7
- data/src/core/lib/transport/connectivity_state.cc +112 -98
- data/src/core/lib/transport/connectivity_state.h +100 -50
- data/src/core/lib/transport/static_metadata.cc +276 -288
- data/src/core/lib/transport/static_metadata.h +73 -76
- data/src/core/lib/transport/status_conversion.cc +1 -1
- data/src/core/lib/transport/status_metadata.cc +1 -1
- data/src/core/lib/transport/transport.cc +2 -2
- data/src/core/lib/transport/transport.h +12 -4
- data/src/core/lib/transport/transport_op_string.cc +14 -11
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +5 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -2
- data/src/core/tsi/fake_transport_security.cc +7 -5
- data/src/core/tsi/grpc_shadow_boringssl.h +2918 -2627
- data/src/core/tsi/local_transport_security.cc +8 -6
- data/src/core/tsi/ssl/session_cache/ssl_session.h +1 -3
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -6
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +1 -2
- data/src/core/tsi/ssl_transport_security.cc +12 -12
- data/src/core/tsi/ssl_transport_security.h +2 -2
- data/src/core/tsi/transport_security_grpc.cc +7 -0
- data/src/core/tsi/transport_security_grpc.h +6 -0
- data/src/ruby/ext/grpc/extconf.rb +1 -0
- data/src/ruby/ext/grpc/rb_call.c +1 -1
- data/src/ruby/ext/grpc/rb_channel.c +1 -1
- data/src/ruby/lib/grpc/generic/bidi_call.rb +1 -1
- data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +2 -2
- data/third_party/boringssl/crypto/asn1/a_bool.c +18 -5
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +17 -221
- data/third_party/boringssl/crypto/asn1/a_dup.c +0 -24
- data/third_party/boringssl/crypto/asn1/a_enum.c +2 -2
- data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +10 -72
- data/third_party/boringssl/crypto/asn1/a_int.c +12 -71
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +110 -216
- data/third_party/boringssl/crypto/asn1/a_object.c +16 -5
- data/third_party/boringssl/crypto/asn1/a_strnid.c +1 -0
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +5 -1
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +3 -1
- data/third_party/boringssl/crypto/base64/base64.c +2 -2
- data/third_party/boringssl/crypto/bio/bio.c +73 -9
- data/third_party/boringssl/crypto/bio/connect.c +4 -0
- data/third_party/boringssl/crypto/bio/fd.c +4 -0
- data/third_party/boringssl/crypto/bio/file.c +5 -2
- data/third_party/boringssl/crypto/bio/socket.c +4 -0
- data/third_party/boringssl/crypto/bio/socket_helper.c +4 -0
- data/third_party/boringssl/crypto/bn_extra/convert.c +11 -7
- data/third_party/boringssl/crypto/bytestring/ber.c +8 -4
- data/third_party/boringssl/crypto/bytestring/cbb.c +19 -7
- data/third_party/boringssl/crypto/bytestring/cbs.c +28 -15
- data/third_party/boringssl/crypto/bytestring/internal.h +28 -7
- data/third_party/boringssl/crypto/bytestring/unicode.c +155 -0
- data/third_party/boringssl/crypto/chacha/chacha.c +36 -19
- data/third_party/boringssl/crypto/chacha/internal.h +45 -0
- data/third_party/boringssl/crypto/cipher_extra/cipher_extra.c +29 -0
- data/third_party/boringssl/crypto/cipher_extra/e_aesccm.c +269 -25
- data/third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c +16 -14
- data/third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c +54 -38
- data/third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c +133 -41
- data/third_party/boringssl/crypto/cipher_extra/e_tls.c +23 -15
- data/third_party/boringssl/crypto/cipher_extra/tls_cbc.c +24 -15
- data/third_party/boringssl/crypto/cmac/cmac.c +62 -25
- data/third_party/boringssl/crypto/conf/conf.c +7 -0
- data/third_party/boringssl/crypto/cpu-arm-linux.c +4 -148
- data/third_party/boringssl/crypto/cpu-arm-linux.h +201 -0
- data/third_party/boringssl/crypto/cpu-intel.c +45 -51
- data/third_party/boringssl/crypto/crypto.c +39 -22
- data/third_party/boringssl/crypto/curve25519/spake25519.c +1 -1
- data/third_party/boringssl/crypto/dsa/dsa.c +77 -53
- data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +20 -8
- data/third_party/boringssl/crypto/ec_extra/ec_derive.c +96 -0
- data/third_party/boringssl/crypto/{ecdh/ecdh.c → ecdh_extra/ecdh_extra.c} +20 -58
- data/third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c +1 -9
- data/third_party/boringssl/crypto/engine/engine.c +2 -1
- data/third_party/boringssl/crypto/err/err.c +2 -0
- data/third_party/boringssl/crypto/err/internal.h +2 -2
- data/third_party/boringssl/crypto/evp/evp.c +89 -8
- data/third_party/boringssl/crypto/evp/evp_asn1.c +56 -5
- data/third_party/boringssl/crypto/evp/evp_ctx.c +52 -14
- data/third_party/boringssl/crypto/evp/internal.h +18 -1
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +5 -0
- data/third_party/boringssl/crypto/evp/p_ec.c +51 -3
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +6 -7
- data/third_party/boringssl/crypto/evp/p_ed25519.c +36 -3
- data/third_party/boringssl/crypto/evp/p_ed25519_asn1.c +76 -45
- data/third_party/boringssl/crypto/evp/p_rsa.c +3 -1
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +5 -0
- data/third_party/boringssl/crypto/evp/p_x25519.c +110 -0
- data/third_party/boringssl/crypto/evp/p_x25519_asn1.c +249 -0
- data/third_party/boringssl/crypto/evp/scrypt.c +6 -2
- data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +34 -274
- data/third_party/boringssl/crypto/fipsmodule/aes/internal.h +161 -21
- data/third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c +111 -13
- data/third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c +17 -21
- data/third_party/boringssl/crypto/fipsmodule/bcm.c +119 -7
- data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +19 -2
- data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +2 -2
- data/third_party/boringssl/crypto/fipsmodule/bn/ctx.c +93 -160
- data/third_party/boringssl/crypto/fipsmodule/bn/div.c +48 -57
- data/third_party/boringssl/crypto/fipsmodule/bn/div_extra.c +87 -0
- data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +143 -211
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +0 -305
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd_extra.c +325 -0
- data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +168 -50
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +68 -92
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +7 -6
- data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +11 -14
- data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +358 -443
- data/third_party/boringssl/crypto/fipsmodule/bn/random.c +25 -35
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c +20 -25
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h +76 -5
- data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +14 -14
- data/third_party/boringssl/crypto/fipsmodule/cipher/cipher.c +7 -2
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +383 -516
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_des.c +4 -0
- data/third_party/boringssl/crypto/fipsmodule/cipher/internal.h +3 -4
- data/third_party/boringssl/crypto/fipsmodule/delocate.h +3 -2
- data/third_party/boringssl/crypto/fipsmodule/digest/digest.c +32 -17
- data/third_party/boringssl/crypto/fipsmodule/digest/md32_common.h +3 -3
- data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +228 -122
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +34 -8
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +311 -98
- data/third_party/boringssl/crypto/fipsmodule/ec/felem.c +82 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +263 -97
- data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +22 -59
- data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +317 -234
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +9473 -9475
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +313 -109
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h +36 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/scalar.c +96 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +126 -792
- data/third_party/boringssl/crypto/fipsmodule/ec/simple_mul.c +84 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/util.c +163 -12
- data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +84 -211
- data/third_party/boringssl/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +60 -205
- data/third_party/boringssl/crypto/fipsmodule/fips_shared_support.c +32 -0
- data/third_party/boringssl/crypto/fipsmodule/is_fips.c +2 -0
- data/third_party/boringssl/crypto/fipsmodule/md4/md4.c +3 -1
- data/third_party/boringssl/crypto/fipsmodule/md5/internal.h +37 -0
- data/third_party/boringssl/crypto/fipsmodule/md5/md5.c +11 -8
- data/third_party/boringssl/crypto/fipsmodule/modes/cbc.c +35 -79
- data/third_party/boringssl/crypto/fipsmodule/modes/cfb.c +7 -39
- data/third_party/boringssl/crypto/fipsmodule/modes/ctr.c +7 -27
- data/third_party/boringssl/crypto/fipsmodule/modes/gcm.c +123 -309
- data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +189 -126
- data/third_party/boringssl/crypto/fipsmodule/modes/ofb.c +3 -2
- data/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c +2 -2
- data/third_party/boringssl/crypto/fipsmodule/rand/internal.h +35 -0
- data/third_party/boringssl/crypto/fipsmodule/rand/rand.c +24 -19
- data/third_party/boringssl/crypto/fipsmodule/rand/urandom.c +256 -77
- data/third_party/boringssl/crypto/fipsmodule/rsa/padding.c +10 -7
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +5 -1
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +131 -14
- data/third_party/boringssl/crypto/fipsmodule/self_check/self_check.c +83 -10
- data/third_party/boringssl/crypto/fipsmodule/sha/internal.h +53 -0
- data/third_party/boringssl/crypto/fipsmodule/sha/sha1.c +9 -13
- data/third_party/boringssl/crypto/fipsmodule/sha/sha256.c +18 -12
- data/third_party/boringssl/crypto/fipsmodule/sha/sha512.c +95 -168
- data/third_party/boringssl/crypto/hrss/hrss.c +2201 -0
- data/third_party/boringssl/crypto/hrss/internal.h +62 -0
- data/third_party/boringssl/crypto/internal.h +95 -20
- data/third_party/boringssl/crypto/lhash/lhash.c +45 -33
- data/third_party/boringssl/crypto/mem.c +39 -2
- data/third_party/boringssl/crypto/obj/obj.c +4 -4
- data/third_party/boringssl/crypto/obj/obj_dat.h +6181 -875
- data/third_party/boringssl/crypto/pem/pem_all.c +2 -3
- data/third_party/boringssl/crypto/pem/pem_info.c +144 -162
- data/third_party/boringssl/crypto/pem/pem_lib.c +53 -52
- data/third_party/boringssl/crypto/pem/pem_pkey.c +13 -21
- data/third_party/boringssl/crypto/pkcs7/pkcs7.c +15 -22
- data/third_party/boringssl/crypto/pkcs7/pkcs7_x509.c +168 -16
- data/third_party/boringssl/crypto/pkcs8/internal.h +11 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +24 -15
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +42 -25
- data/third_party/boringssl/crypto/pkcs8/pkcs8_x509.c +559 -43
- data/third_party/boringssl/crypto/pool/internal.h +1 -1
- data/third_party/boringssl/crypto/pool/pool.c +21 -0
- data/third_party/boringssl/crypto/rand_extra/deterministic.c +8 -0
- data/third_party/boringssl/crypto/rand_extra/fuchsia.c +1 -14
- data/third_party/boringssl/crypto/refcount_lock.c +2 -2
- data/third_party/boringssl/crypto/rsa_extra/rsa_print.c +22 -0
- data/third_party/boringssl/crypto/siphash/siphash.c +80 -0
- data/third_party/boringssl/crypto/stack/stack.c +83 -32
- data/third_party/boringssl/crypto/thread_none.c +2 -2
- data/third_party/boringssl/crypto/thread_pthread.c +2 -2
- data/third_party/boringssl/crypto/thread_win.c +38 -19
- data/third_party/boringssl/crypto/x509/a_strex.c +22 -2
- data/third_party/boringssl/crypto/x509/asn1_gen.c +2 -1
- data/third_party/boringssl/crypto/x509/by_dir.c +7 -0
- data/third_party/boringssl/crypto/x509/by_file.c +12 -10
- data/third_party/boringssl/crypto/x509/t_crl.c +5 -8
- data/third_party/boringssl/crypto/x509/t_req.c +1 -3
- data/third_party/boringssl/crypto/x509/t_x509.c +5 -8
- data/third_party/boringssl/crypto/x509/x509_cmp.c +1 -1
- data/third_party/boringssl/crypto/x509/x509_def.c +1 -1
- data/third_party/boringssl/crypto/x509/x509_lu.c +114 -5
- data/third_party/boringssl/crypto/x509/x509_req.c +20 -0
- data/third_party/boringssl/crypto/x509/x509_set.c +5 -0
- data/third_party/boringssl/crypto/x509/x509_trs.c +1 -0
- data/third_party/boringssl/crypto/x509/x509_txt.c +4 -5
- data/third_party/boringssl/crypto/x509/x509_vfy.c +145 -138
- data/third_party/boringssl/crypto/x509/x509_vpm.c +2 -0
- data/third_party/boringssl/crypto/x509/x509cset.c +40 -0
- data/third_party/boringssl/crypto/x509/x509name.c +2 -3
- data/third_party/boringssl/crypto/x509/x_all.c +109 -210
- data/third_party/boringssl/crypto/x509/x_x509.c +6 -0
- data/third_party/boringssl/crypto/x509v3/ext_dat.h +1 -3
- data/third_party/boringssl/crypto/x509v3/internal.h +56 -0
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +2 -0
- data/third_party/boringssl/crypto/x509v3/pcy_node.c +1 -0
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +4 -2
- data/third_party/boringssl/crypto/x509v3/v3_akey.c +5 -2
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +19 -13
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +2 -1
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +3 -2
- data/third_party/boringssl/crypto/x509v3/v3_genn.c +1 -6
- data/third_party/boringssl/crypto/x509v3/v3_lib.c +1 -0
- data/third_party/boringssl/crypto/x509v3/v3_ocsp.c +68 -0
- data/third_party/boringssl/crypto/x509v3/v3_pci.c +2 -1
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +47 -69
- data/third_party/boringssl/crypto/x509v3/v3_skey.c +5 -2
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +69 -25
- data/third_party/boringssl/include/openssl/aead.h +45 -19
- data/third_party/boringssl/include/openssl/aes.h +32 -7
- data/third_party/boringssl/include/openssl/asn1.h +7 -77
- data/third_party/boringssl/include/openssl/base.h +120 -6
- data/third_party/boringssl/include/openssl/base64.h +4 -1
- data/third_party/boringssl/include/openssl/bio.h +112 -81
- data/third_party/boringssl/include/openssl/blowfish.h +3 -3
- data/third_party/boringssl/include/openssl/bn.h +55 -29
- data/third_party/boringssl/include/openssl/buf.h +2 -2
- data/third_party/boringssl/include/openssl/bytestring.h +54 -32
- data/third_party/boringssl/include/openssl/cast.h +2 -2
- data/third_party/boringssl/include/openssl/cipher.h +46 -16
- data/third_party/boringssl/include/openssl/cmac.h +6 -2
- data/third_party/boringssl/include/openssl/conf.h +3 -6
- data/third_party/boringssl/include/openssl/cpu.h +25 -9
- data/third_party/boringssl/include/openssl/crypto.h +32 -10
- data/third_party/boringssl/include/openssl/curve25519.h +4 -4
- data/third_party/boringssl/include/openssl/dh.h +3 -2
- data/third_party/boringssl/include/openssl/digest.h +21 -7
- data/third_party/boringssl/include/openssl/dsa.h +8 -2
- data/third_party/boringssl/include/openssl/e_os2.h +18 -0
- data/third_party/boringssl/include/openssl/ec.h +25 -21
- data/third_party/boringssl/include/openssl/ec_key.h +36 -8
- data/third_party/boringssl/include/openssl/ecdh.h +17 -0
- data/third_party/boringssl/include/openssl/ecdsa.h +3 -3
- data/third_party/boringssl/include/openssl/engine.h +4 -4
- data/third_party/boringssl/include/openssl/err.h +3 -0
- data/third_party/boringssl/include/openssl/evp.h +199 -42
- data/third_party/boringssl/include/openssl/hmac.h +4 -4
- data/third_party/boringssl/include/openssl/hrss.h +100 -0
- data/third_party/boringssl/include/openssl/lhash.h +131 -23
- data/third_party/boringssl/include/openssl/md4.h +6 -4
- data/third_party/boringssl/include/openssl/md5.h +6 -4
- data/third_party/boringssl/include/openssl/mem.h +6 -2
- data/third_party/boringssl/include/openssl/nid.h +3 -0
- data/third_party/boringssl/include/openssl/obj.h +3 -0
- data/third_party/boringssl/include/openssl/pem.h +102 -64
- data/third_party/boringssl/include/openssl/pkcs7.h +136 -3
- data/third_party/boringssl/include/openssl/pkcs8.h +42 -3
- data/third_party/boringssl/include/openssl/pool.h +13 -2
- data/third_party/boringssl/include/openssl/ripemd.h +5 -4
- data/third_party/boringssl/include/openssl/rsa.h +46 -15
- data/third_party/boringssl/include/openssl/sha.h +40 -28
- data/third_party/boringssl/include/openssl/siphash.h +37 -0
- data/third_party/boringssl/include/openssl/span.h +17 -9
- data/third_party/boringssl/include/openssl/ssl.h +766 -393
- data/third_party/boringssl/include/openssl/ssl3.h +4 -3
- data/third_party/boringssl/include/openssl/stack.h +134 -77
- data/third_party/boringssl/include/openssl/thread.h +1 -1
- data/third_party/boringssl/include/openssl/tls1.h +25 -9
- data/third_party/boringssl/include/openssl/type_check.h +14 -15
- data/third_party/boringssl/include/openssl/x509.h +28 -3
- data/third_party/boringssl/include/openssl/x509_vfy.h +98 -32
- data/third_party/boringssl/include/openssl/x509v3.h +17 -13
- data/third_party/boringssl/ssl/d1_both.cc +9 -18
- data/third_party/boringssl/ssl/d1_lib.cc +4 -3
- data/third_party/boringssl/ssl/d1_pkt.cc +4 -4
- data/third_party/boringssl/ssl/d1_srtp.cc +15 -15
- data/third_party/boringssl/ssl/dtls_method.cc +0 -1
- data/third_party/boringssl/ssl/dtls_record.cc +28 -28
- data/third_party/boringssl/ssl/handoff.cc +295 -91
- data/third_party/boringssl/ssl/handshake.cc +133 -72
- data/third_party/boringssl/ssl/handshake_client.cc +218 -189
- data/third_party/boringssl/ssl/handshake_server.cc +399 -272
- data/third_party/boringssl/ssl/internal.h +1413 -928
- data/third_party/boringssl/ssl/s3_both.cc +175 -36
- data/third_party/boringssl/ssl/s3_lib.cc +9 -13
- data/third_party/boringssl/ssl/s3_pkt.cc +63 -29
- data/third_party/boringssl/ssl/ssl_aead_ctx.cc +55 -35
- data/third_party/boringssl/ssl/ssl_asn1.cc +57 -73
- data/third_party/boringssl/ssl/ssl_buffer.cc +13 -12
- data/third_party/boringssl/ssl/ssl_cert.cc +313 -210
- data/third_party/boringssl/ssl/ssl_cipher.cc +159 -221
- data/third_party/boringssl/ssl/ssl_file.cc +2 -0
- data/third_party/boringssl/ssl/ssl_key_share.cc +164 -19
- data/third_party/boringssl/ssl/ssl_lib.cc +847 -555
- data/third_party/boringssl/ssl/ssl_privkey.cc +441 -111
- data/third_party/boringssl/ssl/ssl_session.cc +230 -178
- data/third_party/boringssl/ssl/ssl_transcript.cc +21 -142
- data/third_party/boringssl/ssl/ssl_versions.cc +88 -93
- data/third_party/boringssl/ssl/ssl_x509.cc +279 -218
- data/third_party/boringssl/ssl/t1_enc.cc +5 -96
- data/third_party/boringssl/ssl/t1_lib.cc +931 -678
- data/third_party/boringssl/ssl/tls13_both.cc +251 -121
- data/third_party/boringssl/ssl/tls13_client.cc +129 -73
- data/third_party/boringssl/ssl/tls13_enc.cc +350 -282
- data/third_party/boringssl/ssl/tls13_server.cc +259 -192
- data/third_party/boringssl/ssl/tls_method.cc +26 -21
- data/third_party/boringssl/ssl/tls_record.cc +42 -47
- data/third_party/boringssl/third_party/fiat/curve25519.c +261 -1324
- data/third_party/boringssl/third_party/fiat/curve25519_32.h +911 -0
- data/third_party/boringssl/third_party/fiat/curve25519_64.h +559 -0
- data/third_party/boringssl/third_party/fiat/p256.c +238 -999
- data/third_party/boringssl/third_party/fiat/p256_32.h +3226 -0
- data/third_party/boringssl/third_party/fiat/p256_64.h +1217 -0
- data/third_party/upb/upb/port_def.inc +1 -1
- data/third_party/upb/upb/table.c +2 -1
- metadata +71 -43
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +0 -127
- data/src/core/lib/gpr/mpscq.cc +0 -117
- data/src/core/lib/gpr/mpscq.h +0 -88
- data/src/core/lib/gprpp/abstract.h +0 -47
- data/src/core/lib/gprpp/pair.h +0 -38
- data/third_party/boringssl/crypto/cipher_extra/e_ssl3.c +0 -460
- data/third_party/boringssl/crypto/fipsmodule/modes/ccm.c +0 -256
- data/third_party/boringssl/include/openssl/lhash_macros.h +0 -174
- data/third_party/boringssl/ssl/custom_extensions.cc +0 -265
data/etc/roots.pem
CHANGED
@@ -774,36 +774,6 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
|
|
774
774
|
+OkuE6N36B9K
|
775
775
|
-----END CERTIFICATE-----
|
776
776
|
|
777
|
-
# Issuer: CN=Class 2 Primary CA O=Certplus
|
778
|
-
# Subject: CN=Class 2 Primary CA O=Certplus
|
779
|
-
# Label: "Certplus Class 2 Primary CA"
|
780
|
-
# Serial: 177770208045934040241468760488327595043
|
781
|
-
# MD5 Fingerprint: 88:2c:8c:52:b8:a2:3c:f3:f7:bb:03:ea:ae:ac:42:0b
|
782
|
-
# SHA1 Fingerprint: 74:20:74:41:72:9c:dd:92:ec:79:31:d8:23:10:8d:c2:81:92:e2:bb
|
783
|
-
# SHA256 Fingerprint: 0f:99:3c:8a:ef:97:ba:af:56:87:14:0e:d5:9a:d1:82:1b:b4:af:ac:f0:aa:9a:58:b5:d5:7a:33:8a:3a:fb:cb
|
784
|
-
-----BEGIN CERTIFICATE-----
|
785
|
-
MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAw
|
786
|
-
PTELMAkGA1UEBhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFz
|
787
|
-
cyAyIFByaW1hcnkgQ0EwHhcNOTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9
|
788
|
-
MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2VydHBsdXMxGzAZBgNVBAMTEkNsYXNz
|
789
|
-
IDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANxQ
|
790
|
-
ltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR5aiR
|
791
|
-
VhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyL
|
792
|
-
kcAbmXuZVg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCd
|
793
|
-
EgETjdyAYveVqUSISnFOYFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yas
|
794
|
-
H7WLO7dDWWuwJKZtkIvEcupdM5i3y95ee++U8Rs+yskhwcWYAqqi9lt3m/V+llU0
|
795
|
-
HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRMECDAGAQH/AgEKMAsGA1Ud
|
796
|
-
DwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJYIZIAYb4
|
797
|
-
QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMu
|
798
|
-
Y29tL0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/
|
799
|
-
AN9WM2K191EBkOvDP9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8
|
800
|
-
yfFC82x/xXp8HVGIutIKPidd3i1RTtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMR
|
801
|
-
FcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+7UCmnYR0ObncHoUW2ikbhiMA
|
802
|
-
ybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW//1IMwrh3KWB
|
803
|
-
kJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7
|
804
|
-
l7+ijrRU
|
805
|
-
-----END CERTIFICATE-----
|
806
|
-
|
807
777
|
# Issuer: CN=DST Root CA X3 O=Digital Signature Trust Co.
|
808
778
|
# Subject: CN=DST Root CA X3 O=Digital Signature Trust Co.
|
809
779
|
# Label: "DST Root CA X3"
|
@@ -1222,36 +1192,6 @@ t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw
|
|
1222
1192
|
WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg==
|
1223
1193
|
-----END CERTIFICATE-----
|
1224
1194
|
|
1225
|
-
# Issuer: CN=Deutsche Telekom Root CA 2 O=Deutsche Telekom AG OU=T-TeleSec Trust Center
|
1226
|
-
# Subject: CN=Deutsche Telekom Root CA 2 O=Deutsche Telekom AG OU=T-TeleSec Trust Center
|
1227
|
-
# Label: "Deutsche Telekom Root CA 2"
|
1228
|
-
# Serial: 38
|
1229
|
-
# MD5 Fingerprint: 74:01:4a:91:b1:08:c4:58:ce:47:cd:f0:dd:11:53:08
|
1230
|
-
# SHA1 Fingerprint: 85:a4:08:c0:9c:19:3e:5d:51:58:7d:cd:d6:13:30:fd:8c:de:37:bf
|
1231
|
-
# SHA256 Fingerprint: b6:19:1a:50:d0:c3:97:7f:7d:a9:9b:cd:aa:c8:6a:22:7d:ae:b9:67:9e:c7:0b:a3:b0:c9:d9:22:71:c1:70:d3
|
1232
|
-
-----BEGIN CERTIFICATE-----
|
1233
|
-
MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEc
|
1234
|
-
MBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2Vj
|
1235
|
-
IFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENB
|
1236
|
-
IDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5MjM1OTAwWjBxMQswCQYDVQQGEwJE
|
1237
|
-
RTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxl
|
1238
|
-
U2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290
|
1239
|
-
IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEU
|
1240
|
-
ha88EOQ5bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhC
|
1241
|
-
QN/Po7qCWWqSG6wcmtoIKyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1Mjwr
|
1242
|
-
rFDa1sPeg5TKqAyZMg4ISFZbavva4VhYAUlfckE8FQYBjl2tqriTtM2e66foai1S
|
1243
|
-
NNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aKSe5TBY8ZTNXeWHmb0moc
|
1244
|
-
QqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTVjlsB9WoH
|
1245
|
-
txa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAP
|
1246
|
-
BgNVHRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC
|
1247
|
-
AQEAlGRZrTlk5ynrE/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756Abrsp
|
1248
|
-
tJh6sTtU6zkXR34ajgv8HzFZMQSyzhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpa
|
1249
|
-
IzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8rZ7/gFnkm0W09juwzTkZmDLl
|
1250
|
-
6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4Gdyd1Lx+4ivn+
|
1251
|
-
xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU
|
1252
|
-
Cm26OWMohpLzGITY+9HPBVZkVw==
|
1253
|
-
-----END CERTIFICATE-----
|
1254
|
-
|
1255
1195
|
# Issuer: CN=Cybertrust Global Root O=Cybertrust, Inc
|
1256
1196
|
# Subject: CN=Cybertrust Global Root O=Cybertrust, Inc
|
1257
1197
|
# Label: "Cybertrust Global Root"
|
@@ -3495,46 +3435,6 @@ AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ
|
|
3495
3435
|
5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su
|
3496
3436
|
-----END CERTIFICATE-----
|
3497
3437
|
|
3498
|
-
# Issuer: CN=Certinomis - Root CA O=Certinomis OU=0002 433998903
|
3499
|
-
# Subject: CN=Certinomis - Root CA O=Certinomis OU=0002 433998903
|
3500
|
-
# Label: "Certinomis - Root CA"
|
3501
|
-
# Serial: 1
|
3502
|
-
# MD5 Fingerprint: 14:0a:fd:8d:a8:28:b5:38:69:db:56:7e:61:22:03:3f
|
3503
|
-
# SHA1 Fingerprint: 9d:70:bb:01:a5:a4:a0:18:11:2e:f7:1c:01:b9:32:c5:34:e7:88:a8
|
3504
|
-
# SHA256 Fingerprint: 2a:99:f5:bc:11:74:b7:3c:bb:1d:62:08:84:e0:1c:34:e5:1c:cb:39:78:da:12:5f:0e:33:26:88:83:bf:41:58
|
3505
|
-
-----BEGIN CERTIFICATE-----
|
3506
|
-
MIIFkjCCA3qgAwIBAgIBATANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJGUjET
|
3507
|
-
MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxHTAb
|
3508
|
-
BgNVBAMTFENlcnRpbm9taXMgLSBSb290IENBMB4XDTEzMTAyMTA5MTcxOFoXDTMz
|
3509
|
-
MTAyMTA5MTcxOFowWjELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMx
|
3510
|
-
FzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMR0wGwYDVQQDExRDZXJ0aW5vbWlzIC0g
|
3511
|
-
Um9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANTMCQosP5L2
|
3512
|
-
fxSeC5yaah1AMGT9qt8OHgZbn1CF6s2Nq0Nn3rD6foCWnoR4kkjW4znuzuRZWJfl
|
3513
|
-
LieY6pOod5tK8O90gC3rMB+12ceAnGInkYjwSond3IjmFPnVAy//ldu9n+ws+hQV
|
3514
|
-
WZUKxkd8aRi5pwP5ynapz8dvtF4F/u7BUrJ1Mofs7SlmO/NKFoL21prbcpjp3vDF
|
3515
|
-
TKWrteoB4owuZH9kb/2jJZOLyKIOSY008B/sWEUuNKqEUL3nskoTuLAPrjhdsKkb
|
3516
|
-
5nPJWqHZZkCqqU2mNAKthH6yI8H7KsZn9DS2sJVqM09xRLWtwHkziOC/7aOgFLSc
|
3517
|
-
CbAK42C++PhmiM1b8XcF4LVzbsF9Ri6OSyemzTUK/eVNfaoqoynHWmgE6OXWk6Ri
|
3518
|
-
wsXm9E/G+Z8ajYJJGYrKWUM66A0ywfRMEwNvbqY/kXPLynNvEiCL7sCCeN5LLsJJ
|
3519
|
-
wx3tFvYk9CcbXFcx3FXuqB5vbKziRcxXV4p1VxngtViZSTYxPDMBbRZKzbgqg4SG
|
3520
|
-
m/lg0h9tkQPTYKbVPZrdd5A9NaSfD171UkRpucC63M9933zZxKyGIjK8e2uR73r4
|
3521
|
-
F2iw4lNVYC2vPsKD2NkJK/DAZNuHi5HMkesE/Xa0lZrmFAYb1TQdvtj/dBxThZng
|
3522
|
-
WVJKYe2InmtJiUZ+IFrZ50rlau7SZRFDAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIB
|
3523
|
-
BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTvkUz1pcMw6C8I6tNxIqSSaHh0
|
3524
|
-
2TAfBgNVHSMEGDAWgBTvkUz1pcMw6C8I6tNxIqSSaHh02TANBgkqhkiG9w0BAQsF
|
3525
|
-
AAOCAgEAfj1U2iJdGlg+O1QnurrMyOMaauo++RLrVl89UM7g6kgmJs95Vn6RHJk/
|
3526
|
-
0KGRHCwPT5iVWVO90CLYiF2cN/z7ZMF4jIuaYAnq1fohX9B0ZedQxb8uuQsLrbWw
|
3527
|
-
F6YSjNRieOpWauwK0kDDPAUwPk2Ut59KA9N9J0u2/kTO+hkzGm2kQtHdzMjI1xZS
|
3528
|
-
g081lLMSVX3l4kLr5JyTCcBMWwerx20RoFAXlCOotQqSD7J6wWAsOMwaplv/8gzj
|
3529
|
-
qh8c3LigkyfeY+N/IZ865Z764BNqdeuWXGKRlI5nU7aJ+BIJy29SWwNyhlCVCNSN
|
3530
|
-
h4YVH5Uk2KRvms6knZtt0rJ2BobGVgjF6wnaNsIbW0G+YSrjcOa4pvi2WsS9Iff/
|
3531
|
-
ql+hbHY5ZtbqTFXhADObE5hjyW/QASAJN1LnDE8+zbz1X5YnpyACleAu6AdBBR8V
|
3532
|
-
btaw5BngDwKTACdyxYvRVB9dSsNAl35VpnzBMwQUAR1JIGkLGZOdblgi90AMRgwj
|
3533
|
-
Y/M50n92Uaf0yKHxDHYiI0ZSKS3io0EHVmmY0gUJvGnHWmHNj4FgFU2A3ZDifcRQ
|
3534
|
-
8ow7bkrHxuaAKzyBvBGAFhAn1/DNP3nMcyrDflOR1m749fPH0FFNjkulW+YZFzvW
|
3535
|
-
gQncItzujrnEj1PhZ7szuIgVRs/taTX/dQ1G885x4cVrhkIGuUE=
|
3536
|
-
-----END CERTIFICATE-----
|
3537
|
-
|
3538
3438
|
# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed
|
3539
3439
|
# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed
|
3540
3440
|
# Label: "OISTE WISeKey Global Root GB CA"
|
@@ -805,20 +805,32 @@ typedef struct grpc_tls_credential_reload_arg grpc_tls_credential_reload_arg;
|
|
805
805
|
typedef void (*grpc_tls_on_credential_reload_done_cb)(
|
806
806
|
grpc_tls_credential_reload_arg* arg);
|
807
807
|
|
808
|
-
/** A struct containing all information necessary to schedule/cancel
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
808
|
+
/** A struct containing all information necessary to schedule/cancel a
|
809
|
+
credential reload request.
|
810
|
+
- cb and cb_user_data represent a gRPC-provided
|
811
|
+
callback and an argument passed to it.
|
812
|
+
- key_materials_config is an in/output parameter containing currently
|
813
|
+
used/newly reloaded credentials. If credential reload does not result
|
814
|
+
in a new credential, key_materials_config should not be modified.
|
815
|
+
- status and error_details are used to hold information about
|
816
|
+
errors occurred when a credential reload request is scheduled/cancelled.
|
817
|
+
- config is a pointer to the unique grpc_tls_credential_reload_config
|
818
|
+
instance that this argument corresponds to.
|
819
|
+
- context is a pointer to a wrapped language implementation of this
|
820
|
+
grpc_tls_credential_reload_arg instance.
|
821
|
+
- destroy_context is a pointer to a caller-provided method that cleans
|
822
|
+
up any data associated with the context pointer.
|
823
|
+
It is used for experimental purposes for now and subject to change.
|
824
|
+
*/
|
816
825
|
struct grpc_tls_credential_reload_arg {
|
817
826
|
grpc_tls_on_credential_reload_done_cb cb;
|
818
827
|
void* cb_user_data;
|
819
828
|
grpc_tls_key_materials_config* key_materials_config;
|
820
829
|
grpc_ssl_certificate_config_reload_status status;
|
821
830
|
const char* error_details;
|
831
|
+
grpc_tls_credential_reload_config* config;
|
832
|
+
void* context;
|
833
|
+
void (*destroy_context)(void* ctx);
|
822
834
|
};
|
823
835
|
|
824
836
|
/** Create a grpc_tls_credential_reload_config instance.
|
@@ -863,16 +875,27 @@ typedef void (*grpc_tls_on_server_authorization_check_done_cb)(
|
|
863
875
|
grpc_tls_server_authorization_check_arg* arg);
|
864
876
|
|
865
877
|
/** A struct containing all information necessary to schedule/cancel a server
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
878
|
+
authorization check request.
|
879
|
+
- cb and cb_user_data represent a gRPC-provided callback and an argument
|
880
|
+
passed to it.
|
881
|
+
- success will store the result of server authorization check. That is,
|
882
|
+
if success returns a non-zero value, it means the authorization check
|
883
|
+
passes and if returning zero, it means the check fails.
|
884
|
+
- target_name is the name of an endpoint the channel is connecting to.
|
885
|
+
- peer_cert represents a complete certificate chain including both
|
886
|
+
signing and leaf certificates.
|
887
|
+
- status and error_details contain information
|
888
|
+
about errors occurred when a server authorization check request is
|
889
|
+
scheduled/cancelled.
|
890
|
+
- config is a pointer to the unique
|
891
|
+
grpc_tls_server_authorization_check_config instance that this argument
|
892
|
+
corresponds to.
|
893
|
+
- context is a pointer to a wrapped language implementation of this
|
894
|
+
grpc_tls_server_authorization_check_arg instance.
|
895
|
+
- destroy_context is a pointer to a caller-provided method that cleans
|
896
|
+
up any data associated with the context pointer.
|
897
|
+
It is used for experimental purpose for now and subject to change.
|
898
|
+
*/
|
876
899
|
struct grpc_tls_server_authorization_check_arg {
|
877
900
|
grpc_tls_on_server_authorization_check_done_cb cb;
|
878
901
|
void* cb_user_data;
|
@@ -881,6 +904,9 @@ struct grpc_tls_server_authorization_check_arg {
|
|
881
904
|
const char* peer_cert;
|
882
905
|
grpc_status_code status;
|
883
906
|
const char* error_details;
|
907
|
+
grpc_tls_server_authorization_check_config* config;
|
908
|
+
void* context;
|
909
|
+
void (*destroy_context)(void* ctx);
|
884
910
|
};
|
885
911
|
|
886
912
|
/** Create a grpc_tls_server_authorization_check_config instance.
|
@@ -267,6 +267,14 @@ typedef struct {
|
|
267
267
|
grpc_ssl_session_cache*). (use grpc_ssl_session_cache_arg_vtable() to fetch
|
268
268
|
an appropriate pointer arg vtable) */
|
269
269
|
#define GRPC_SSL_SESSION_CACHE_ARG "grpc.ssl_session_cache"
|
270
|
+
/** If non-zero, it will determine the maximum frame size used by TSI's frame
|
271
|
+
* protector.
|
272
|
+
*
|
273
|
+
* NOTE: Be aware that using a large "max_frame_size" is memory inefficient
|
274
|
+
* for non-zerocopy protectors. Also, increasing this value above 1MiB
|
275
|
+
* can break old binaries that don't support larger than 1MiB frame
|
276
|
+
* size. */
|
277
|
+
#define GRPC_ARG_TSI_MAX_FRAME_SIZE "grpc.tsi.max_frame_size"
|
270
278
|
/** Maximum metadata size, in bytes. Note this limit applies to the max sum of
|
271
279
|
all metadata key-value entries in a batch of headers. */
|
272
280
|
#define GRPC_ARG_MAX_METADATA_SIZE "grpc.max_metadata_size"
|
@@ -331,6 +339,13 @@ typedef struct {
|
|
331
339
|
value is 15 minutes. */
|
332
340
|
#define GRPC_ARG_LOCALITY_RETENTION_INTERVAL_MS \
|
333
341
|
"grpc.xds_locality_retention_interval_ms"
|
342
|
+
/* Timeout in milliseconds to wait for the localities of a specific priority to
|
343
|
+
complete their initial connection attempt before xDS fails over to the next
|
344
|
+
priority. Specifically, the connection attempt of a priority is considered
|
345
|
+
completed when any locality of that priority is ready or all the localities
|
346
|
+
of that priority fail to connect. If 0, failover happens immediately. Default
|
347
|
+
value is 10 seconds. */
|
348
|
+
#define GRPC_ARG_XDS_FAILOVER_TIMEOUT_MS "grpc.xds_failover_timeout_ms"
|
334
349
|
/** If non-zero, grpc server's cronet compression workaround will be enabled */
|
335
350
|
#define GRPC_ARG_WORKAROUND_CRONET_COMPRESSION \
|
336
351
|
"grpc.workaround.cronet_compression"
|
@@ -27,14 +27,6 @@
|
|
27
27
|
* - some syscalls to be made directly
|
28
28
|
*/
|
29
29
|
|
30
|
-
/*
|
31
|
-
* Defines GRPC_USE_CPP_STD_LIB to use standard C++ library instead of
|
32
|
-
* in-house library if possible. (e.g. std::map)
|
33
|
-
*/
|
34
|
-
#ifndef GRPC_USE_CPP_STD_LIB
|
35
|
-
#define GRPC_USE_CPP_STD_LIB 1
|
36
|
-
#endif
|
37
|
-
|
38
30
|
/* Get windows.h included everywhere (we need it) */
|
39
31
|
#if defined(_WIN64) || defined(WIN64) || defined(_WIN32) || defined(WIN32)
|
40
32
|
#ifndef WIN32_LEAN_AND_MEAN
|
@@ -194,6 +186,26 @@
|
|
194
186
|
#else /* musl libc */
|
195
187
|
#define GPR_MUSL_LIBC_COMPAT 1
|
196
188
|
#endif
|
189
|
+
#elif defined(__ASYLO__)
|
190
|
+
#define GPR_ARCH_64 1
|
191
|
+
#define GPR_CPU_POSIX 1
|
192
|
+
#define GPR_GCC_TLS 1
|
193
|
+
#define GPR_PLATFORM_STRING "asylo"
|
194
|
+
#define GPR_GCC_SYNC 1
|
195
|
+
#define GPR_POSIX_SYNC 1
|
196
|
+
#define GPR_POSIX_STRING 1
|
197
|
+
#define GPR_POSIX_LOG 1
|
198
|
+
#define GPR_POSIX_TIME 1
|
199
|
+
#define GPR_POSIX_ENV 1
|
200
|
+
#define GPR_ASYLO 1
|
201
|
+
#define GRPC_POSIX_SOCKET 1
|
202
|
+
#define GRPC_POSIX_SOCKETADDR
|
203
|
+
#define GRPC_POSIX_SOCKETUTILS 1
|
204
|
+
#define GRPC_TIMER_USE_GENERIC 1
|
205
|
+
#define GRPC_POSIX_NO_SPECIAL_WAKEUP_FD 1
|
206
|
+
#define GRPC_POSIX_WAKEUP_FD 1
|
207
|
+
#define GRPC_ARES 0
|
208
|
+
#define GPR_NO_AUTODETECT_PLATFORM 1
|
197
209
|
#elif defined(__APPLE__)
|
198
210
|
#include <Availability.h>
|
199
211
|
#include <TargetConditionals.h>
|
@@ -205,7 +217,7 @@
|
|
205
217
|
#define GPR_CPU_IPHONE 1
|
206
218
|
#define GPR_PTHREAD_TLS 1
|
207
219
|
#define GRPC_CFSTREAM 1
|
208
|
-
/* the c-ares resolver
|
220
|
+
/* the c-ares resolver isn't safe to enable on iOS */
|
209
221
|
#define GRPC_ARES 0
|
210
222
|
#else /* TARGET_OS_IPHONE */
|
211
223
|
#define GPR_PLATFORM_STRING "osx"
|
@@ -655,10 +667,14 @@ typedef unsigned __int64 uint64_t;
|
|
655
667
|
|
656
668
|
/* GRPC_ALLOW_EXCEPTIONS should be 0 or 1 if exceptions are allowed or not */
|
657
669
|
#ifndef GRPC_ALLOW_EXCEPTIONS
|
658
|
-
/* If not already set, set to 1 on Windows (style guide standard) but to
|
659
|
-
* 0 on non-Windows platforms unless the compiler defines __EXCEPTIONS */
|
660
670
|
#ifdef GPR_WINDOWS
|
671
|
+
#if defined(_MSC_VER) && defined(_CPPUNWIND)
|
661
672
|
#define GRPC_ALLOW_EXCEPTIONS 1
|
673
|
+
#elif defined(__EXCEPTIONS)
|
674
|
+
#define GRPC_ALLOW_EXCEPTIONS 1
|
675
|
+
#else
|
676
|
+
#define GRPC_ALLOW_EXCEPTIONS 0
|
677
|
+
#endif
|
662
678
|
#else /* GPR_WINDOWS */
|
663
679
|
#ifdef __EXCEPTIONS
|
664
680
|
#define GRPC_ALLOW_EXCEPTIONS 1
|
data/src/boringssl/err_data.c
CHANGED
@@ -19,210 +19,215 @@
|
|
19
19
|
#include <openssl/type_check.h>
|
20
20
|
|
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
|
-
|
22
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_NONE == 1, "library value changed");
|
23
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_SYS == 2, "library value changed");
|
24
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_BN == 3, "library value changed");
|
25
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_RSA == 4, "library value changed");
|
26
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_DH == 5, "library value changed");
|
27
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_EVP == 6, "library value changed");
|
28
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_BUF == 7, "library value changed");
|
29
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_OBJ == 8, "library value changed");
|
30
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_PEM == 9, "library value changed");
|
31
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_DSA == 10, "library value changed");
|
32
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_X509 == 11, "library value changed");
|
33
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_ASN1 == 12, "library value changed");
|
34
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_CONF == 13, "library value changed");
|
35
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_CRYPTO == 14, "library value changed");
|
36
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_EC == 15, "library value changed");
|
37
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_SSL == 16, "library value changed");
|
38
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_BIO == 17, "library value changed");
|
39
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_PKCS7 == 18, "library value changed");
|
40
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_PKCS8 == 19, "library value changed");
|
41
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_X509V3 == 20, "library value changed");
|
42
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_RAND == 21, "library value changed");
|
43
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_ENGINE == 22, "library value changed");
|
44
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_OCSP == 23, "library value changed");
|
45
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_UI == 24, "library value changed");
|
46
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_COMP == 25, "library value changed");
|
47
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_ECDSA == 26, "library value changed");
|
48
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_ECDH == 27, "library value changed");
|
49
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_HMAC == 28, "library value changed");
|
50
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_DIGEST == 29, "library value changed");
|
51
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_CIPHER == 30, "library value changed");
|
52
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_HKDF == 31, "library value changed");
|
53
|
+
OPENSSL_STATIC_ASSERT(ERR_LIB_USER == 32, "library value changed");
|
54
|
+
OPENSSL_STATIC_ASSERT(ERR_NUM_LIBS == 33, "number of libraries changed");
|
55
55
|
|
56
56
|
const uint32_t kOpenSSLReasonValues[] = {
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
57
|
+
0xc32083a,
|
58
|
+
0xc328854,
|
59
|
+
0xc330863,
|
60
|
+
0xc338873,
|
61
|
+
0xc340882,
|
62
|
+
0xc34889b,
|
63
|
+
0xc3508a7,
|
64
|
+
0xc3588c4,
|
65
|
+
0xc3608e4,
|
66
|
+
0xc3688f2,
|
67
|
+
0xc370902,
|
68
|
+
0xc37890f,
|
69
|
+
0xc38091f,
|
70
|
+
0xc38892a,
|
71
|
+
0xc390940,
|
72
|
+
0xc39894f,
|
73
|
+
0xc3a0963,
|
74
|
+
0xc3a8847,
|
75
75
|
0xc3b00ea,
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
76
|
+
0xc3b88d6,
|
77
|
+
0x10320847,
|
78
|
+
0x1032959f,
|
79
|
+
0x103315ab,
|
80
|
+
0x103395c4,
|
81
|
+
0x103415d7,
|
82
|
+
0x10348f27,
|
83
|
+
0x10350c60,
|
84
|
+
0x103595ea,
|
85
|
+
0x10361614,
|
86
|
+
0x10369627,
|
87
|
+
0x10371646,
|
88
|
+
0x1037965f,
|
89
|
+
0x10381674,
|
90
|
+
0x10389692,
|
91
|
+
0x103916a1,
|
92
|
+
0x103996bd,
|
93
|
+
0x103a16d8,
|
94
|
+
0x103a96e7,
|
95
|
+
0x103b1703,
|
96
|
+
0x103b971e,
|
97
|
+
0x103c1744,
|
98
98
|
0x103c80ea,
|
99
|
-
|
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
|
-
|
99
|
+
0x103d1755,
|
100
|
+
0x103d9769,
|
101
|
+
0x103e1788,
|
102
|
+
0x103e9797,
|
103
|
+
0x103f17ae,
|
104
|
+
0x103f97c1,
|
105
|
+
0x10400c24,
|
106
|
+
0x104097d4,
|
107
|
+
0x104117f2,
|
108
|
+
0x10419805,
|
109
|
+
0x1042181f,
|
110
|
+
0x1042982f,
|
111
|
+
0x10431843,
|
112
|
+
0x10439859,
|
113
|
+
0x10441871,
|
114
|
+
0x10449886,
|
115
|
+
0x1045189a,
|
116
|
+
0x104598ac,
|
117
|
+
0x104605fd,
|
118
|
+
0x1046894f,
|
119
|
+
0x104718c1,
|
120
|
+
0x104798d8,
|
121
|
+
0x104818ed,
|
122
|
+
0x104898fb,
|
123
|
+
0x10490e73,
|
124
|
+
0x10499735,
|
125
|
+
0x104a15ff,
|
126
|
+
0x14320c07,
|
127
|
+
0x14328c15,
|
128
|
+
0x14330c24,
|
129
|
+
0x14338c36,
|
129
130
|
0x143400ac,
|
130
131
|
0x143480ea,
|
131
132
|
0x18320083,
|
132
|
-
|
133
|
+
0x18328f7d,
|
133
134
|
0x183300ac,
|
134
|
-
|
135
|
-
|
135
|
+
0x18338f93,
|
136
|
+
0x18340fa7,
|
136
137
|
0x183480ea,
|
137
|
-
|
138
|
-
|
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
|
-
|
138
|
+
0x18350fbc,
|
139
|
+
0x18358fd4,
|
140
|
+
0x18360fe9,
|
141
|
+
0x18368ffd,
|
142
|
+
0x18371021,
|
143
|
+
0x18379037,
|
144
|
+
0x1838104b,
|
145
|
+
0x1838905b,
|
146
|
+
0x18390a75,
|
147
|
+
0x1839906b,
|
148
|
+
0x183a1091,
|
149
|
+
0x183a90b7,
|
150
|
+
0x183b0c7f,
|
151
|
+
0x183b9106,
|
152
|
+
0x183c1118,
|
153
|
+
0x183c9123,
|
154
|
+
0x183d1133,
|
155
|
+
0x183d9144,
|
156
|
+
0x183e1155,
|
157
|
+
0x183e9167,
|
158
|
+
0x183f1190,
|
159
|
+
0x183f91a9,
|
160
|
+
0x184011c1,
|
161
|
+
0x184086d5,
|
162
|
+
0x184110da,
|
163
|
+
0x184190a5,
|
164
|
+
0x184210c4,
|
165
|
+
0x18428c6c,
|
166
|
+
0x18431080,
|
167
|
+
0x184390ec,
|
168
|
+
0x203211fb,
|
169
|
+
0x203291e8,
|
170
|
+
0x24321207,
|
171
|
+
0x24328995,
|
172
|
+
0x24331219,
|
173
|
+
0x24339226,
|
174
|
+
0x24341233,
|
175
|
+
0x24349245,
|
176
|
+
0x24351254,
|
177
|
+
0x24359271,
|
178
|
+
0x2436127e,
|
179
|
+
0x2436928c,
|
180
|
+
0x2437129a,
|
181
|
+
0x243792a8,
|
182
|
+
0x243812b1,
|
183
|
+
0x243892be,
|
184
|
+
0x243912d1,
|
185
|
+
0x28320c54,
|
186
|
+
0x28328c7f,
|
187
|
+
0x28330c24,
|
188
|
+
0x28338c92,
|
189
|
+
0x28340c60,
|
187
190
|
0x283480ac,
|
188
191
|
0x283500ea,
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
192
|
+
0x28358c6c,
|
193
|
+
0x2c322f0c,
|
194
|
+
0x2c3292e8,
|
195
|
+
0x2c332f1a,
|
196
|
+
0x2c33af2c,
|
197
|
+
0x2c342f40,
|
198
|
+
0x2c34af52,
|
199
|
+
0x2c352f6d,
|
200
|
+
0x2c35af7f,
|
201
|
+
0x2c362f92,
|
198
202
|
0x2c36832d,
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
203
|
+
0x2c372f9f,
|
204
|
+
0x2c37afb1,
|
205
|
+
0x2c382fd6,
|
206
|
+
0x2c38afed,
|
207
|
+
0x2c392ffb,
|
208
|
+
0x2c39b00b,
|
209
|
+
0x2c3a301d,
|
210
|
+
0x2c3ab031,
|
211
|
+
0x2c3b3042,
|
212
|
+
0x2c3bb061,
|
213
|
+
0x2c3c12fa,
|
214
|
+
0x2c3c9310,
|
215
|
+
0x2c3d3075,
|
216
|
+
0x2c3d9329,
|
217
|
+
0x2c3e3092,
|
218
|
+
0x2c3eb0a0,
|
219
|
+
0x2c3f30b8,
|
220
|
+
0x2c3fb0d0,
|
221
|
+
0x2c4030fa,
|
222
|
+
0x2c4091fb,
|
223
|
+
0x2c41310b,
|
224
|
+
0x2c41b11e,
|
225
|
+
0x2c4211c1,
|
226
|
+
0x2c42b12f,
|
227
|
+
0x2c430722,
|
228
|
+
0x2c43b053,
|
229
|
+
0x2c442fc4,
|
230
|
+
0x2c44b0dd,
|
226
231
|
0x30320000,
|
227
232
|
0x30328015,
|
228
233
|
0x3033001f,
|
@@ -266,472 +271,490 @@ const uint32_t kOpenSSLReasonValues[] = {
|
|
266
271
|
0x30460312,
|
267
272
|
0x3046832d,
|
268
273
|
0x3047034a,
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
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
|
-
|
274
|
+
0x3047835c,
|
275
|
+
0x3048036a,
|
276
|
+
0x3048837b,
|
277
|
+
0x3049038a,
|
278
|
+
0x304983a2,
|
279
|
+
0x304a03b4,
|
280
|
+
0x304a83c8,
|
281
|
+
0x304b03e0,
|
282
|
+
0x304b83f3,
|
283
|
+
0x304c03fe,
|
284
|
+
0x304c840f,
|
285
|
+
0x304d041b,
|
286
|
+
0x304d8431,
|
287
|
+
0x304e043f,
|
288
|
+
0x304e8455,
|
289
|
+
0x304f0467,
|
290
|
+
0x304f8479,
|
291
|
+
0x3050049c,
|
292
|
+
0x305084af,
|
293
|
+
0x305104c0,
|
294
|
+
0x305184d0,
|
295
|
+
0x305204e8,
|
296
|
+
0x305284fd,
|
297
|
+
0x30530515,
|
298
|
+
0x30538529,
|
299
|
+
0x30540541,
|
300
|
+
0x3054855a,
|
301
|
+
0x30550573,
|
302
|
+
0x30558590,
|
303
|
+
0x3056059b,
|
304
|
+
0x305685b3,
|
305
|
+
0x305705c3,
|
306
|
+
0x305785d4,
|
307
|
+
0x305805e7,
|
308
|
+
0x305885fd,
|
309
|
+
0x30590606,
|
310
|
+
0x3059861b,
|
311
|
+
0x305a062e,
|
312
|
+
0x305a863d,
|
313
|
+
0x305b065d,
|
314
|
+
0x305b866c,
|
315
|
+
0x305c068d,
|
316
|
+
0x305c86a9,
|
317
|
+
0x305d06b5,
|
318
|
+
0x305d86d5,
|
319
|
+
0x305e06f1,
|
320
|
+
0x305e8702,
|
321
|
+
0x305f0718,
|
322
|
+
0x305f8722,
|
323
|
+
0x3060048c,
|
324
|
+
0x34320b65,
|
325
|
+
0x34328b79,
|
326
|
+
0x34330b96,
|
327
|
+
0x34338ba9,
|
328
|
+
0x34340bb8,
|
329
|
+
0x34348bf1,
|
330
|
+
0x34350bd5,
|
326
331
|
0x3c320083,
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
332
|
+
0x3c328cbc,
|
333
|
+
0x3c330cd5,
|
334
|
+
0x3c338cf0,
|
335
|
+
0x3c340d0d,
|
336
|
+
0x3c348d37,
|
337
|
+
0x3c350d52,
|
338
|
+
0x3c358d78,
|
339
|
+
0x3c360d91,
|
340
|
+
0x3c368da9,
|
341
|
+
0x3c370dba,
|
342
|
+
0x3c378dc8,
|
343
|
+
0x3c380dd5,
|
344
|
+
0x3c388de9,
|
345
|
+
0x3c390c7f,
|
346
|
+
0x3c398e0c,
|
347
|
+
0x3c3a0e20,
|
348
|
+
0x3c3a890f,
|
349
|
+
0x3c3b0e30,
|
350
|
+
0x3c3b8e4b,
|
351
|
+
0x3c3c0e5d,
|
352
|
+
0x3c3c8e90,
|
353
|
+
0x3c3d0e9a,
|
354
|
+
0x3c3d8eae,
|
355
|
+
0x3c3e0ebc,
|
356
|
+
0x3c3e8ee1,
|
357
|
+
0x3c3f0ca8,
|
358
|
+
0x3c3f8eca,
|
354
359
|
0x3c4000ac,
|
355
360
|
0x3c4080ea,
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
361
|
+
0x3c410d28,
|
362
|
+
0x3c418d67,
|
363
|
+
0x3c420e73,
|
364
|
+
0x3c428dfd,
|
365
|
+
0x40321971,
|
366
|
+
0x40329987,
|
367
|
+
0x403319b5,
|
368
|
+
0x403399bf,
|
369
|
+
0x403419d6,
|
370
|
+
0x403499f4,
|
371
|
+
0x40351a04,
|
372
|
+
0x40359a16,
|
373
|
+
0x40361a23,
|
374
|
+
0x40369a2f,
|
375
|
+
0x40371a44,
|
376
|
+
0x40379a56,
|
377
|
+
0x40381a61,
|
378
|
+
0x40389a73,
|
379
|
+
0x40390f27,
|
380
|
+
0x40399a83,
|
381
|
+
0x403a1a96,
|
382
|
+
0x403a9ab7,
|
383
|
+
0x403b1ac8,
|
384
|
+
0x403b9ad8,
|
380
385
|
0x403c0064,
|
381
386
|
0x403c8083,
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
387
|
+
0x403d1b5c,
|
388
|
+
0x403d9b72,
|
389
|
+
0x403e1b81,
|
390
|
+
0x403e9bb9,
|
391
|
+
0x403f1bd3,
|
392
|
+
0x403f9bfb,
|
393
|
+
0x40401c10,
|
394
|
+
0x40409c24,
|
395
|
+
0x40411c41,
|
396
|
+
0x40419c5c,
|
397
|
+
0x40421c75,
|
398
|
+
0x40429c88,
|
399
|
+
0x40431c9c,
|
400
|
+
0x40439cb4,
|
401
|
+
0x40441ccb,
|
397
402
|
0x404480ac,
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
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
|
-
|
403
|
+
0x40451ce0,
|
404
|
+
0x40459cf2,
|
405
|
+
0x40461d16,
|
406
|
+
0x40469d36,
|
407
|
+
0x40471d44,
|
408
|
+
0x40479d6b,
|
409
|
+
0x40481ddc,
|
410
|
+
0x40489e0f,
|
411
|
+
0x40491e26,
|
412
|
+
0x40499e40,
|
413
|
+
0x404a1e57,
|
414
|
+
0x404a9e75,
|
415
|
+
0x404b1e8d,
|
416
|
+
0x404b9ea4,
|
417
|
+
0x404c1eba,
|
418
|
+
0x404c9ecc,
|
419
|
+
0x404d1eed,
|
420
|
+
0x404d9f26,
|
421
|
+
0x404e1f3a,
|
422
|
+
0x404e9f47,
|
423
|
+
0x404f1f8e,
|
424
|
+
0x404f9fd4,
|
425
|
+
0x4050202b,
|
426
|
+
0x4050a03f,
|
427
|
+
0x40512072,
|
428
|
+
0x40522082,
|
429
|
+
0x4052a0a6,
|
430
|
+
0x405320be,
|
431
|
+
0x4053a0d1,
|
432
|
+
0x405420e6,
|
433
|
+
0x4054a109,
|
434
|
+
0x40552117,
|
435
|
+
0x4055a154,
|
436
|
+
0x40562161,
|
437
|
+
0x4056a17a,
|
438
|
+
0x40572192,
|
439
|
+
0x4057a1a5,
|
440
|
+
0x405821ba,
|
441
|
+
0x4058a1e1,
|
442
|
+
0x40592210,
|
443
|
+
0x4059a23d,
|
444
|
+
0x405a2251,
|
445
|
+
0x405aa261,
|
446
|
+
0x405b2279,
|
447
|
+
0x405ba28a,
|
448
|
+
0x405c229d,
|
449
|
+
0x405ca2dc,
|
450
|
+
0x405d22e9,
|
451
|
+
0x405da30e,
|
452
|
+
0x405e234c,
|
453
|
+
0x405e8ab3,
|
454
|
+
0x405f236d,
|
455
|
+
0x405fa37a,
|
456
|
+
0x40602388,
|
457
|
+
0x4060a3aa,
|
458
|
+
0x4061240b,
|
459
|
+
0x4061a443,
|
460
|
+
0x4062245a,
|
461
|
+
0x4062a46b,
|
462
|
+
0x40632490,
|
463
|
+
0x4063a4a5,
|
464
|
+
0x406424bc,
|
465
|
+
0x4064a4e8,
|
466
|
+
0x40652503,
|
467
|
+
0x4065a51a,
|
468
|
+
0x40662532,
|
469
|
+
0x4066a55c,
|
470
|
+
0x40672587,
|
471
|
+
0x4067a5cc,
|
472
|
+
0x40682614,
|
473
|
+
0x4068a635,
|
474
|
+
0x40692667,
|
475
|
+
0x4069a695,
|
476
|
+
0x406a26b6,
|
477
|
+
0x406aa6d6,
|
478
|
+
0x406b285e,
|
479
|
+
0x406ba881,
|
480
|
+
0x406c2897,
|
481
|
+
0x406cab3a,
|
482
|
+
0x406d2b69,
|
483
|
+
0x406dab91,
|
484
|
+
0x406e2bbf,
|
485
|
+
0x406eac0c,
|
486
|
+
0x406f2c47,
|
487
|
+
0x406fac7f,
|
488
|
+
0x40702c92,
|
489
|
+
0x4070acaf,
|
490
|
+
0x40710802,
|
491
|
+
0x4071acc1,
|
492
|
+
0x40722cd4,
|
493
|
+
0x4072ad0a,
|
494
|
+
0x40732d22,
|
495
|
+
0x407394fa,
|
496
|
+
0x40742d36,
|
497
|
+
0x4074ad50,
|
498
|
+
0x40752d61,
|
499
|
+
0x4075ad75,
|
500
|
+
0x40762d83,
|
501
|
+
0x407692be,
|
502
|
+
0x40772da8,
|
503
|
+
0x4077adca,
|
504
|
+
0x40782de5,
|
505
|
+
0x4078ae1e,
|
506
|
+
0x40792e35,
|
507
|
+
0x4079ae4b,
|
508
|
+
0x407a2e77,
|
509
|
+
0x407aae8a,
|
510
|
+
0x407b2e9f,
|
511
|
+
0x407baeb1,
|
512
|
+
0x407c2ee2,
|
513
|
+
0x407caeeb,
|
514
|
+
0x407d2650,
|
515
|
+
0x407d9fe4,
|
516
|
+
0x407e2dfa,
|
517
|
+
0x407ea1f1,
|
518
|
+
0x407f1d58,
|
519
|
+
0x407f9afe,
|
520
|
+
0x40801f9e,
|
521
|
+
0x40809d80,
|
522
|
+
0x40812094,
|
523
|
+
0x40819f78,
|
524
|
+
0x40822baa,
|
525
|
+
0x40829ae4,
|
526
|
+
0x408321cc,
|
527
|
+
0x4083a4cd,
|
528
|
+
0x40841d94,
|
529
|
+
0x4084a229,
|
530
|
+
0x408522ae,
|
531
|
+
0x4085a3d2,
|
532
|
+
0x4086232e,
|
533
|
+
0x40869ffe,
|
534
|
+
0x40872bf0,
|
535
|
+
0x4087a420,
|
536
|
+
0x40881b45,
|
537
|
+
0x4088a5df,
|
538
|
+
0x40891b94,
|
539
|
+
0x40899b21,
|
540
|
+
0x408a28cf,
|
541
|
+
0x408a9912,
|
542
|
+
0x408b2ec6,
|
543
|
+
0x408bac5c,
|
544
|
+
0x408c22be,
|
545
|
+
0x408c992e,
|
546
|
+
0x408d1df5,
|
547
|
+
0x408d9dc6,
|
548
|
+
0x408e1f0f,
|
549
|
+
0x408ea134,
|
550
|
+
0x408f25f3,
|
551
|
+
0x408fa3ee,
|
552
|
+
0x409025a8,
|
553
|
+
0x4090a300,
|
554
|
+
0x409128b7,
|
555
|
+
0x40919954,
|
556
|
+
0x40921be1,
|
557
|
+
0x4092ac2b,
|
558
|
+
0x40932ced,
|
559
|
+
0x4093a00f,
|
560
|
+
0x40941da8,
|
561
|
+
0x4094a8e8,
|
562
|
+
0x4095247c,
|
563
|
+
0x4095ae57,
|
564
|
+
0x40962bd7,
|
565
|
+
0x40969fb7,
|
566
|
+
0x4097205a,
|
567
|
+
0x40979f5e,
|
568
|
+
0x41f42789,
|
569
|
+
0x41f9281b,
|
570
|
+
0x41fe270e,
|
571
|
+
0x41fea92b,
|
572
|
+
0x41ff2a1c,
|
573
|
+
0x420327a2,
|
574
|
+
0x420827c4,
|
575
|
+
0x4208a800,
|
576
|
+
0x420926f2,
|
577
|
+
0x4209a83a,
|
578
|
+
0x420a2749,
|
579
|
+
0x420aa729,
|
580
|
+
0x420b2769,
|
581
|
+
0x420ba7e2,
|
582
|
+
0x420c2a38,
|
583
|
+
0x420ca8f8,
|
584
|
+
0x420d2912,
|
585
|
+
0x420da949,
|
586
|
+
0x42122963,
|
587
|
+
0x421729ff,
|
588
|
+
0x4217a9a5,
|
589
|
+
0x421c29c7,
|
590
|
+
0x421f2982,
|
591
|
+
0x42212a4f,
|
592
|
+
0x422629e2,
|
593
|
+
0x422b2b1e,
|
594
|
+
0x422baacc,
|
595
|
+
0x422c2b06,
|
596
|
+
0x422caa8b,
|
597
|
+
0x422d2a6a,
|
598
|
+
0x422daaeb,
|
599
|
+
0x422e2ab1,
|
600
|
+
0x4432072d,
|
601
|
+
0x4432873c,
|
602
|
+
0x44330748,
|
603
|
+
0x44338756,
|
604
|
+
0x44340769,
|
605
|
+
0x4434877a,
|
606
|
+
0x44350781,
|
607
|
+
0x4435878b,
|
608
|
+
0x4436079e,
|
609
|
+
0x443687b4,
|
610
|
+
0x443707c6,
|
611
|
+
0x443787d3,
|
612
|
+
0x443807e2,
|
613
|
+
0x443887ea,
|
614
|
+
0x44390802,
|
615
|
+
0x44398810,
|
616
|
+
0x443a0823,
|
617
|
+
0x483212e8,
|
618
|
+
0x483292fa,
|
619
|
+
0x48331310,
|
620
|
+
0x48339329,
|
621
|
+
0x4c32134e,
|
622
|
+
0x4c32935e,
|
623
|
+
0x4c331371,
|
624
|
+
0x4c339391,
|
605
625
|
0x4c3400ac,
|
606
626
|
0x4c3480ea,
|
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
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
627
|
+
0x4c35139d,
|
628
|
+
0x4c3593ab,
|
629
|
+
0x4c3613c7,
|
630
|
+
0x4c3693ed,
|
631
|
+
0x4c3713fc,
|
632
|
+
0x4c37940a,
|
633
|
+
0x4c38141f,
|
634
|
+
0x4c38942b,
|
635
|
+
0x4c39144b,
|
636
|
+
0x4c399475,
|
637
|
+
0x4c3a148e,
|
638
|
+
0x4c3a94a7,
|
639
|
+
0x4c3b05fd,
|
640
|
+
0x4c3b94c0,
|
641
|
+
0x4c3c14d2,
|
642
|
+
0x4c3c94e1,
|
643
|
+
0x4c3d14fa,
|
644
|
+
0x4c3d8c47,
|
645
|
+
0x4c3e1567,
|
646
|
+
0x4c3e9509,
|
647
|
+
0x4c3f1589,
|
648
|
+
0x4c3f92be,
|
649
|
+
0x4c40151f,
|
650
|
+
0x4c40933a,
|
651
|
+
0x4c411557,
|
652
|
+
0x4c4193da,
|
653
|
+
0x4c421543,
|
654
|
+
0x50323141,
|
655
|
+
0x5032b150,
|
656
|
+
0x5033315b,
|
657
|
+
0x5033b16b,
|
658
|
+
0x50343184,
|
659
|
+
0x5034b19e,
|
660
|
+
0x503531ac,
|
661
|
+
0x5035b1c2,
|
662
|
+
0x503631d4,
|
663
|
+
0x5036b1ea,
|
664
|
+
0x50373203,
|
665
|
+
0x5037b216,
|
666
|
+
0x5038322e,
|
667
|
+
0x5038b23f,
|
668
|
+
0x50393254,
|
669
|
+
0x5039b268,
|
670
|
+
0x503a3288,
|
671
|
+
0x503ab29e,
|
672
|
+
0x503b32b6,
|
673
|
+
0x503bb2c8,
|
674
|
+
0x503c32e4,
|
675
|
+
0x503cb2fb,
|
676
|
+
0x503d3314,
|
677
|
+
0x503db32a,
|
678
|
+
0x503e3337,
|
679
|
+
0x503eb34d,
|
680
|
+
0x503f335f,
|
681
|
+
0x503f837b,
|
682
|
+
0x50403372,
|
683
|
+
0x5040b382,
|
684
|
+
0x5041339c,
|
685
|
+
0x5041b3ab,
|
686
|
+
0x504233c5,
|
687
|
+
0x5042b3e2,
|
688
|
+
0x504333f2,
|
689
|
+
0x5043b402,
|
690
|
+
0x50443411,
|
691
|
+
0x50448431,
|
692
|
+
0x50453425,
|
693
|
+
0x5045b443,
|
694
|
+
0x50463456,
|
695
|
+
0x5046b46c,
|
696
|
+
0x5047347e,
|
697
|
+
0x5047b493,
|
698
|
+
0x504834b9,
|
699
|
+
0x5048b4c7,
|
700
|
+
0x504934da,
|
701
|
+
0x5049b4ef,
|
702
|
+
0x504a3505,
|
703
|
+
0x504ab515,
|
704
|
+
0x504b3535,
|
705
|
+
0x504bb548,
|
706
|
+
0x504c356b,
|
707
|
+
0x504cb599,
|
708
|
+
0x504d35ab,
|
709
|
+
0x504db5c8,
|
710
|
+
0x504e35e3,
|
711
|
+
0x504eb5ff,
|
712
|
+
0x504f3611,
|
713
|
+
0x504fb628,
|
714
|
+
0x50503637,
|
715
|
+
0x505086f1,
|
716
|
+
0x5051364a,
|
717
|
+
0x58320f65,
|
718
|
+
0x68320f27,
|
719
|
+
0x68328c7f,
|
720
|
+
0x68330c92,
|
721
|
+
0x68338f35,
|
722
|
+
0x68340f45,
|
701
723
|
0x683480ea,
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
724
|
+
0x6c320eed,
|
725
|
+
0x6c328c36,
|
726
|
+
0x6c330ef8,
|
727
|
+
0x6c338f11,
|
728
|
+
0x74320a1b,
|
706
729
|
0x743280ac,
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
730
|
+
0x74330c47,
|
731
|
+
0x78320980,
|
732
|
+
0x78328995,
|
733
|
+
0x783309a1,
|
711
734
|
0x78338083,
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
+
0x783409b0,
|
736
|
+
0x783489c5,
|
737
|
+
0x783509e4,
|
738
|
+
0x78358a06,
|
739
|
+
0x78360a1b,
|
740
|
+
0x78368a31,
|
741
|
+
0x78370a41,
|
742
|
+
0x78378a62,
|
743
|
+
0x78380a75,
|
744
|
+
0x78388a87,
|
745
|
+
0x78390a94,
|
746
|
+
0x78398ab3,
|
747
|
+
0x783a0ac8,
|
748
|
+
0x783a8ad6,
|
749
|
+
0x783b0ae0,
|
750
|
+
0x783b8af4,
|
751
|
+
0x783c0b0b,
|
752
|
+
0x783c8b20,
|
753
|
+
0x783d0b37,
|
754
|
+
0x783d8b4c,
|
755
|
+
0x783e0aa2,
|
756
|
+
0x783e8a54,
|
757
|
+
0x7c3211d7,
|
735
758
|
};
|
736
759
|
|
737
760
|
const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
|
@@ -779,14 +802,14 @@ const char kOpenSSLReasonStringData[] =
|
|
779
802
|
"INTEGER_NOT_ASCII_FORMAT\0"
|
780
803
|
"INTEGER_TOO_LARGE_FOR_LONG\0"
|
781
804
|
"INVALID_BIT_STRING_BITS_LEFT\0"
|
782
|
-
"
|
805
|
+
"INVALID_BMPSTRING\0"
|
783
806
|
"INVALID_DIGIT\0"
|
784
807
|
"INVALID_MODIFIER\0"
|
785
808
|
"INVALID_NUMBER\0"
|
786
809
|
"INVALID_OBJECT_ENCODING\0"
|
787
810
|
"INVALID_SEPARATOR\0"
|
788
811
|
"INVALID_TIME_FORMAT\0"
|
789
|
-
"
|
812
|
+
"INVALID_UNIVERSALSTRING\0"
|
790
813
|
"INVALID_UTF8STRING\0"
|
791
814
|
"LIST_ERROR\0"
|
792
815
|
"MISSING_ASN1_EOS\0"
|
@@ -905,6 +928,7 @@ const char kOpenSSLReasonStringData[] =
|
|
905
928
|
"UNKNOWN_HASH\0"
|
906
929
|
"BAD_Q_VALUE\0"
|
907
930
|
"BAD_VERSION\0"
|
931
|
+
"INVALID_PARAMETERS\0"
|
908
932
|
"MISSING_PARAMETERS\0"
|
909
933
|
"NEED_NEW_SETUP_VALUES\0"
|
910
934
|
"BIGNUM_OUT_OF_RANGE\0"
|
@@ -938,6 +962,7 @@ const char kOpenSSLReasonStringData[] =
|
|
938
962
|
"WRONG_ORDER\0"
|
939
963
|
"KDF_FAILED\0"
|
940
964
|
"POINT_ARITHMETIC_FAILURE\0"
|
965
|
+
"UNKNOWN_DIGEST_LENGTH\0"
|
941
966
|
"BAD_SIGNATURE\0"
|
942
967
|
"NOT_IMPLEMENTED\0"
|
943
968
|
"RANDOM_NUMBER_GENERATION_FAILED\0"
|
@@ -954,12 +979,13 @@ const char kOpenSSLReasonStringData[] =
|
|
954
979
|
"INVALID_KEYBITS\0"
|
955
980
|
"INVALID_MGF1_MD\0"
|
956
981
|
"INVALID_PADDING_MODE\0"
|
957
|
-
"
|
982
|
+
"INVALID_PEER_KEY\0"
|
958
983
|
"INVALID_PSS_SALTLEN\0"
|
959
984
|
"INVALID_SIGNATURE\0"
|
960
985
|
"KEYS_NOT_SET\0"
|
961
986
|
"MEMORY_LIMIT_EXCEEDED\0"
|
962
987
|
"NOT_A_PRIVATE_KEY\0"
|
988
|
+
"NOT_XOF_OR_INVALID_LENGTH\0"
|
963
989
|
"NO_DEFAULT_DIGEST\0"
|
964
990
|
"NO_KEY_SET\0"
|
965
991
|
"NO_MDC2_SUPPORT\0"
|
@@ -999,6 +1025,7 @@ const char kOpenSSLReasonStringData[] =
|
|
999
1025
|
"ENCRYPT_ERROR\0"
|
1000
1026
|
"ERROR_SETTING_CIPHER_PARAMS\0"
|
1001
1027
|
"INCORRECT_PASSWORD\0"
|
1028
|
+
"INVALID_CHARACTERS\0"
|
1002
1029
|
"KEYGEN_FAILURE\0"
|
1003
1030
|
"KEY_GEN_ERROR\0"
|
1004
1031
|
"METHOD_NOT_SUPPORTED\0"
|
@@ -1014,6 +1041,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1014
1041
|
"UNKNOWN_DIGEST\0"
|
1015
1042
|
"UNSUPPORTED_KEYLENGTH\0"
|
1016
1043
|
"UNSUPPORTED_KEY_DERIVATION_FUNCTION\0"
|
1044
|
+
"UNSUPPORTED_OPTIONS\0"
|
1017
1045
|
"UNSUPPORTED_PRF\0"
|
1018
1046
|
"UNSUPPORTED_PRIVATE_KEY_ALGORITHM\0"
|
1019
1047
|
"UNSUPPORTED_SALT_TYPE\0"
|
@@ -1022,6 +1050,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1022
1050
|
"BAD_PAD_BYTE_COUNT\0"
|
1023
1051
|
"BAD_RSA_PARAMETERS\0"
|
1024
1052
|
"BLOCK_TYPE_IS_NOT_01\0"
|
1053
|
+
"BLOCK_TYPE_IS_NOT_02\0"
|
1025
1054
|
"BN_NOT_INITIALIZED\0"
|
1026
1055
|
"CANNOT_RECOVER_MULTI_PRIME_KEY\0"
|
1027
1056
|
"CRT_PARAMS_ALREADY_GIVEN\0"
|
@@ -1059,6 +1088,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1059
1088
|
"WRONG_SIGNATURE_LENGTH\0"
|
1060
1089
|
"ALPN_MISMATCH_ON_EARLY_DATA\0"
|
1061
1090
|
"APPLICATION_DATA_INSTEAD_OF_HANDSHAKE\0"
|
1091
|
+
"APPLICATION_DATA_ON_SHUTDOWN\0"
|
1062
1092
|
"APP_DATA_IN_HANDSHAKE\0"
|
1063
1093
|
"ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT\0"
|
1064
1094
|
"BAD_ALERT\0"
|
@@ -1088,6 +1118,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1088
1118
|
"CERTIFICATE_AND_PRIVATE_KEY_MISMATCH\0"
|
1089
1119
|
"CERTIFICATE_VERIFY_FAILED\0"
|
1090
1120
|
"CERT_CB_ERROR\0"
|
1121
|
+
"CERT_DECOMPRESSION_FAILED\0"
|
1091
1122
|
"CERT_LENGTH_MISMATCH\0"
|
1092
1123
|
"CHANNEL_ID_NOT_P256\0"
|
1093
1124
|
"CHANNEL_ID_SIGNATURE_INVALID\0"
|
@@ -1107,6 +1138,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1107
1138
|
"DTLS_MESSAGE_TOO_BIG\0"
|
1108
1139
|
"DUPLICATE_EXTENSION\0"
|
1109
1140
|
"DUPLICATE_KEY_SHARE\0"
|
1141
|
+
"DUPLICATE_SIGNATURE_ALGORITHM\0"
|
1110
1142
|
"EARLY_DATA_NOT_IN_USE\0"
|
1111
1143
|
"ECC_CERT_NOT_FOR_SIGNING\0"
|
1112
1144
|
"EMPTY_HELLO_RETRY_REQUEST\0"
|
@@ -1124,14 +1156,18 @@ const char kOpenSSLReasonStringData[] =
|
|
1124
1156
|
"HTTPS_PROXY_REQUEST\0"
|
1125
1157
|
"HTTP_REQUEST\0"
|
1126
1158
|
"INAPPROPRIATE_FALLBACK\0"
|
1159
|
+
"INCONSISTENT_CLIENT_HELLO\0"
|
1127
1160
|
"INVALID_ALPN_PROTOCOL\0"
|
1128
1161
|
"INVALID_COMMAND\0"
|
1129
1162
|
"INVALID_COMPRESSION_LIST\0"
|
1163
|
+
"INVALID_DELEGATED_CREDENTIAL\0"
|
1130
1164
|
"INVALID_MESSAGE\0"
|
1131
1165
|
"INVALID_OUTER_RECORD_TYPE\0"
|
1132
1166
|
"INVALID_SCT_LIST\0"
|
1167
|
+
"INVALID_SIGNATURE_ALGORITHM\0"
|
1133
1168
|
"INVALID_SSL_SESSION\0"
|
1134
1169
|
"INVALID_TICKET_KEYS_LENGTH\0"
|
1170
|
+
"KEY_USAGE_BIT_INCORRECT\0"
|
1135
1171
|
"LENGTH_MISMATCH\0"
|
1136
1172
|
"MISSING_EXTENSION\0"
|
1137
1173
|
"MISSING_KEY_SHARE\0"
|
@@ -1163,6 +1199,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1163
1199
|
"NO_SUPPORTED_VERSIONS_ENABLED\0"
|
1164
1200
|
"NULL_SSL_CTX\0"
|
1165
1201
|
"NULL_SSL_METHOD_PASSED\0"
|
1202
|
+
"OCSP_CB_ERROR\0"
|
1166
1203
|
"OLD_SESSION_CIPHER_NOT_RETURNED\0"
|
1167
1204
|
"OLD_SESSION_PRF_HASH_MISMATCH\0"
|
1168
1205
|
"OLD_SESSION_VERSION_NOT_RETURNED\0"
|
@@ -1177,6 +1214,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1177
1214
|
"PSK_IDENTITY_NOT_FOUND\0"
|
1178
1215
|
"PSK_NO_CLIENT_CB\0"
|
1179
1216
|
"PSK_NO_SERVER_CB\0"
|
1217
|
+
"QUIC_INTERNAL_ERROR\0"
|
1180
1218
|
"READ_TIMEOUT_EXPIRED\0"
|
1181
1219
|
"RECORD_LENGTH_MISMATCH\0"
|
1182
1220
|
"RECORD_TOO_LARGE\0"
|
@@ -1187,6 +1225,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1187
1225
|
"RESUMED_EMS_SESSION_WITHOUT_EMS_EXTENSION\0"
|
1188
1226
|
"RESUMED_NON_EMS_SESSION_WITH_EMS_EXTENSION\0"
|
1189
1227
|
"SCSV_RECEIVED_WHEN_RENEGOTIATING\0"
|
1228
|
+
"SECOND_SERVERHELLO_VERSION_MISMATCH\0"
|
1190
1229
|
"SERVERHELLO_TLSEXT\0"
|
1191
1230
|
"SERVER_CERT_CHANGED\0"
|
1192
1231
|
"SERVER_ECHOED_INVALID_SESSION_ID\0"
|
@@ -1212,7 +1251,9 @@ const char kOpenSSLReasonStringData[] =
|
|
1212
1251
|
"SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION\0"
|
1213
1252
|
"SSL_HANDSHAKE_FAILURE\0"
|
1214
1253
|
"SSL_SESSION_ID_CONTEXT_TOO_LONG\0"
|
1254
|
+
"SSL_SESSION_ID_TOO_LONG\0"
|
1215
1255
|
"TICKET_ENCRYPTION_FAILED\0"
|
1256
|
+
"TLS13_DOWNGRADE\0"
|
1216
1257
|
"TLSV1_ALERT_ACCESS_DENIED\0"
|
1217
1258
|
"TLSV1_ALERT_DECODE_ERROR\0"
|
1218
1259
|
"TLSV1_ALERT_DECRYPTION_FAILED\0"
|
@@ -1241,6 +1282,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1241
1282
|
"TOO_MUCH_READ_EARLY_DATA\0"
|
1242
1283
|
"TOO_MUCH_SKIPPED_EARLY_DATA\0"
|
1243
1284
|
"UNABLE_TO_FIND_ECDH_PARAMETERS\0"
|
1285
|
+
"UNCOMPRESSED_CERT_TOO_LARGE\0"
|
1244
1286
|
"UNEXPECTED_EXTENSION\0"
|
1245
1287
|
"UNEXPECTED_EXTENSION_ON_EARLY_DATA\0"
|
1246
1288
|
"UNEXPECTED_MESSAGE\0"
|
@@ -1248,6 +1290,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1248
1290
|
"UNEXPECTED_RECORD\0"
|
1249
1291
|
"UNKNOWN_ALERT_TYPE\0"
|
1250
1292
|
"UNKNOWN_CERTIFICATE_TYPE\0"
|
1293
|
+
"UNKNOWN_CERT_COMPRESSION_ALG\0"
|
1251
1294
|
"UNKNOWN_CIPHER_RETURNED\0"
|
1252
1295
|
"UNKNOWN_CIPHER_TYPE\0"
|
1253
1296
|
"UNKNOWN_KEY_EXCHANGE_TYPE\0"
|
@@ -1262,6 +1305,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1262
1305
|
"WRONG_CERTIFICATE_TYPE\0"
|
1263
1306
|
"WRONG_CIPHER_RETURNED\0"
|
1264
1307
|
"WRONG_CURVE\0"
|
1308
|
+
"WRONG_ENCRYPTION_LEVEL_RECEIVED\0"
|
1265
1309
|
"WRONG_MESSAGE_TYPE\0"
|
1266
1310
|
"WRONG_SIGNATURE_TYPE\0"
|
1267
1311
|
"WRONG_SSL_VERSION\0"
|
@@ -1294,6 +1338,7 @@ const char kOpenSSLReasonStringData[] =
|
|
1294
1338
|
"PUBLIC_KEY_DECODE_ERROR\0"
|
1295
1339
|
"PUBLIC_KEY_ENCODE_ERROR\0"
|
1296
1340
|
"SHOULD_RETRY\0"
|
1341
|
+
"SIGNATURE_ALGORITHM_MISMATCH\0"
|
1297
1342
|
"UNKNOWN_KEY_TYPE\0"
|
1298
1343
|
"UNKNOWN_PURPOSE_ID\0"
|
1299
1344
|
"UNKNOWN_TRUST_ID\0"
|