grpc 1.27.0.pre1 → 1.30.1
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 +8023 -11437
- data/include/grpc/grpc.h +2 -2
- data/include/grpc/grpc_security.h +30 -9
- data/include/grpc/grpc_security_constants.h +1 -0
- data/include/grpc/impl/codegen/grpc_types.h +24 -21
- data/include/grpc/impl/codegen/port_platform.h +13 -2
- data/include/grpc/impl/codegen/sync.h +5 -3
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/module.modulemap +25 -37
- data/include/grpc/support/sync_abseil.h +26 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +7 -4
- data/src/core/ext/filters/client_channel/client_channel.cc +282 -249
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +31 -47
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -3
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +3 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +7 -22
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/http_proxy.cc +21 -11
- data/src/core/ext/filters/client_channel/lb_policy.cc +19 -18
- data/src/core/ext/filters/client_channel/lb_policy.h +42 -33
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +297 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +271 -465
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +8 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +3 -2
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +18 -21
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +10 -14
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +5 -4
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +148 -98
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +3 -3
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +49 -77
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +2 -1
- data/src/core/ext/filters/client_channel/parse_address.cc +22 -21
- data/src/core/ext/filters/client_channel/resolver.cc +5 -8
- data/src/core/ext/filters/client_channel/resolver.h +12 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +120 -132
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +35 -35
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +8 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +17 -21
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +72 -117
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +167 -121
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +3 -2
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +42 -45
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +94 -103
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +0 -4
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +61 -10
- data/src/core/ext/filters/client_channel/resolver_factory.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -3
- data/src/core/ext/filters/client_channel/resolver_registry.h +8 -8
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +242 -300
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +21 -18
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +56 -206
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +11 -14
- data/src/core/ext/filters/client_channel/server_address.h +3 -2
- data/src/core/ext/filters/client_channel/service_config.cc +144 -253
- data/src/core/ext/filters/client_channel/service_config.h +32 -109
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +54 -24
- data/src/core/ext/filters/client_channel/subchannel.h +35 -11
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +1381 -301
- data/src/core/ext/filters/client_channel/xds/xds_api.h +211 -152
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +214 -359
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +28 -44
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +3 -1
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +16 -11
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +1118 -472
- data/src/core/ext/filters/client_channel/xds/xds_client.h +116 -45
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +59 -135
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +122 -137
- data/src/core/ext/filters/http/client/http_client_filter.cc +23 -28
- data/src/core/ext/filters/http/client_authority_filter.cc +4 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +27 -12
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +258 -221
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +38 -44
- data/src/core/ext/filters/message_size/message_size_filter.h +5 -5
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -10
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +26 -27
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +29 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +4 -5
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +2 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +14 -21
- data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +16 -9
- data/src/core/ext/transport/inproc/inproc_transport.cc +41 -42
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +5 -205
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +5 -788
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +5 -362
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +14 -1337
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +403 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1447 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +30 -8
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +60 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +7 -4
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +87 -23
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +262 -62
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +20 -15
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +46 -32
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +27 -4
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +70 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +46 -25
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +98 -25
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +77 -21
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +201 -4
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +8 -68
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +14 -201
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +92 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +2 -71
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +3 -228
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +266 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +2 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +109 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +399 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +145 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +30 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +815 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +3032 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +228 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +316 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1132 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +4 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +4 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +144 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +12 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +27 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +89 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +9 -8
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +30 -24
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +30 -27
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +64 -52
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +44 -39
- data/src/core/ext/upb-generated/validate/validate.upb.h +155 -119
- data/src/core/lib/channel/channel_args.cc +15 -14
- data/src/core/lib/channel/channel_args.h +3 -1
- data/src/core/lib/channel/channel_stack.h +20 -13
- data/src/core/lib/channel/channel_trace.cc +32 -41
- data/src/core/lib/channel/channel_trace.h +3 -3
- data/src/core/lib/channel/channelz.cc +163 -254
- data/src/core/lib/channel/channelz.h +15 -17
- data/src/core/lib/channel/channelz_registry.cc +52 -77
- data/src/core/lib/channel/channelz_registry.h +4 -4
- data/src/core/lib/channel/connected_channel.cc +7 -5
- data/src/core/lib/channel/context.h +1 -1
- data/src/core/lib/channel/handshaker.cc +11 -13
- data/src/core/lib/channel/handshaker.h +4 -2
- data/src/core/lib/channel/handshaker_registry.cc +5 -17
- data/src/core/lib/channel/status_util.cc +2 -3
- data/src/core/lib/compression/message_compress.cc +5 -1
- data/src/core/lib/debug/stats.cc +21 -27
- data/src/core/lib/debug/stats.h +3 -1
- data/src/core/lib/gpr/spinlock.h +2 -3
- data/src/core/lib/gpr/string.cc +2 -26
- data/src/core/lib/gpr/string.h +0 -16
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +8 -5
- data/src/core/lib/gpr/sync_windows.cc +4 -2
- data/src/core/lib/gpr/time.cc +4 -0
- data/src/core/lib/gpr/time_posix.cc +1 -1
- data/src/core/lib/gprpp/atomic.h +6 -6
- data/src/core/lib/gprpp/fork.cc +1 -1
- data/src/core/lib/gprpp/host_port.cc +30 -36
- data/src/core/lib/gprpp/host_port.h +14 -17
- data/src/core/lib/gprpp/map.h +5 -11
- data/src/core/lib/gprpp/memory.h +2 -6
- data/src/core/lib/gprpp/ref_counted_ptr.h +5 -0
- data/src/core/lib/gprpp/sync.h +9 -0
- data/src/core/lib/http/format_request.cc +46 -65
- data/src/core/lib/http/httpcli.cc +2 -3
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +5 -5
- data/src/core/lib/http/parser.h +2 -3
- data/src/core/lib/iomgr/buffer_list.cc +36 -35
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/call_combiner.h +3 -2
- data/src/core/lib/iomgr/cfstream_handle.cc +3 -2
- data/src/core/lib/iomgr/closure.h +2 -3
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -3
- data/src/core/lib/iomgr/endpoint_pair.h +2 -3
- data/src/core/lib/iomgr/error.cc +6 -9
- data/src/core/lib/iomgr/error.h +4 -5
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -23
- data/src/core/lib/iomgr/ev_epollex_linux.cc +14 -7
- data/src/core/lib/iomgr/ev_poll_posix.cc +3 -3
- data/src/core/lib/iomgr/ev_posix.cc +2 -3
- data/src/core/lib/iomgr/exec_ctx.h +14 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +84 -20
- data/src/core/lib/iomgr/load_file.cc +1 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +10 -10
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/port.h +1 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +29 -39
- data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +10 -11
- data/src/core/lib/iomgr/resolve_address_windows.cc +8 -17
- data/src/core/lib/iomgr/resource_quota.cc +4 -6
- data/src/core/lib/iomgr/sockaddr_utils.cc +23 -29
- data/src/core/lib/iomgr/sockaddr_utils.h +9 -14
- data/src/core/lib/iomgr/socket_factory_posix.h +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +2 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +7 -26
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +5 -7
- data/src/core/lib/iomgr/tcp_client_posix.cc +25 -22
- data/src/core/lib/iomgr/tcp_client_posix.h +6 -6
- data/src/core/lib/iomgr/tcp_client_windows.cc +2 -3
- data/src/core/lib/iomgr/tcp_custom.cc +2 -3
- data/src/core/lib/iomgr/tcp_posix.cc +2 -1
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -9
- data/src/core/lib/iomgr/tcp_server_posix.cc +5 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +8 -11
- data/src/core/lib/iomgr/tcp_uv.cc +3 -2
- data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +2 -3
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.h +2 -3
- data/src/core/lib/iomgr/udp_server.cc +9 -14
- data/src/core/lib/iomgr/work_serializer.cc +155 -0
- data/src/core/lib/iomgr/work_serializer.h +65 -0
- data/src/core/lib/json/json.h +210 -79
- data/src/core/lib/json/json_reader.cc +469 -455
- data/src/core/lib/json/json_writer.cc +174 -169
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +12 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +6 -3
- data/src/core/lib/security/credentials/credentials.cc +0 -84
- data/src/core/lib/security/credentials/credentials.h +8 -59
- data/src/core/lib/security/credentials/fake/fake_credentials.h +4 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +9 -12
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.h +4 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +26 -56
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -6
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -18
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +12 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +151 -168
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -6
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +91 -60
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +10 -4
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +13 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +40 -12
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +21 -6
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +7 -7
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +3 -2
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +6 -8
- data/src/core/lib/security/security_connector/security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +20 -37
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -6
- data/src/core/lib/security/security_connector/ssl_utils.cc +62 -13
- data/src/core/lib/security/security_connector/ssl_utils.h +12 -11
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +101 -52
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +32 -6
- data/src/core/lib/security/transport/auth_filters.h +0 -5
- data/src/core/lib/security/transport/client_auth_filter.cc +1 -2
- data/src/core/lib/security/transport/security_handshaker.cc +2 -2
- data/src/core/lib/security/util/json_util.cc +22 -15
- data/src/core/lib/security/util/json_util.h +2 -2
- data/src/core/lib/slice/slice_intern.cc +2 -3
- data/src/core/lib/slice/slice_internal.h +14 -0
- data/src/core/lib/slice/slice_utils.h +9 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +2 -47
- data/src/core/lib/surface/call.cc +2 -3
- data/src/core/lib/surface/call_log_batch.cc +50 -58
- data/src/core/lib/surface/channel.cc +53 -31
- data/src/core/lib/surface/channel.h +35 -4
- data/src/core/lib/surface/channel_ping.cc +2 -3
- data/src/core/lib/surface/completion_queue.cc +33 -33
- data/src/core/lib/surface/event_string.cc +18 -25
- data/src/core/lib/surface/event_string.h +3 -1
- data/src/core/lib/surface/init_secure.cc +1 -4
- data/src/core/lib/surface/server.cc +570 -369
- data/src/core/lib/surface/server.h +32 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/byte_stream.h +7 -2
- data/src/core/lib/transport/connectivity_state.cc +7 -6
- data/src/core/lib/transport/connectivity_state.h +5 -3
- data/src/core/lib/transport/metadata.cc +3 -3
- data/src/core/lib/transport/metadata_batch.h +2 -3
- data/src/core/lib/transport/static_metadata.h +1 -1
- data/src/core/lib/transport/status_conversion.cc +6 -14
- data/src/core/lib/transport/transport.cc +2 -3
- data/src/core/lib/transport/transport.h +3 -2
- data/src/core/lib/transport/transport_op_string.cc +61 -102
- data/src/core/lib/uri/uri_parser.h +2 -3
- data/src/core/plugin_registry/grpc_plugin_registry.cc +20 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +9 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +8 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +33 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
- data/src/core/tsi/fake_transport_security.cc +10 -15
- data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +1 -1
- data/src/core/tsi/ssl_transport_security.cc +54 -40
- data/src/core/tsi/ssl_transport_security.h +8 -8
- data/src/core/tsi/ssl_types.h +0 -2
- data/src/core/tsi/transport_security.h +6 -9
- data/src/core/tsi/transport_security_grpc.h +2 -3
- data/src/core/tsi/transport_security_interface.h +3 -3
- data/src/ruby/ext/grpc/rb_call.c +9 -1
- data/src/ruby/ext/grpc/rb_call_credentials.c +3 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc/errors.rb +103 -42
- data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
- data/src/ruby/lib/grpc/generic/interceptors.rb +4 -4
- data/src/ruby/lib/grpc/generic/rpc_server.rb +9 -10
- data/src/ruby/lib/grpc/generic/service.rb +5 -4
- data/src/ruby/lib/grpc/structs.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +5 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +11 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +16 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/generic/service_spec.rb +2 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +5 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +2 -0
- data/src/ruby/spec/support/services.rb +10 -4
- data/src/ruby/spec/testdata/ca.pem +18 -13
- data/src/ruby/spec/testdata/client.key +26 -14
- data/src/ruby/spec/testdata/client.pem +18 -12
- data/src/ruby/spec/testdata/server1.key +26 -14
- data/src/ruby/spec/testdata/server1.pem +20 -14
- data/third_party/abseil-cpp/absl/base/attributes.h +13 -1
- data/third_party/abseil-cpp/absl/base/config.h +55 -6
- data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +30 -9
- data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +9 -6
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +5 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +2 -3
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +3 -3
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +15 -13
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +12 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +9 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +37 -0
- data/third_party/abseil-cpp/absl/base/options.h +9 -12
- data/third_party/abseil-cpp/absl/numeric/int128.cc +2 -2
- data/third_party/abseil-cpp/absl/numeric/int128.h +1 -1
- data/third_party/abseil-cpp/absl/strings/ascii.cc +3 -3
- data/third_party/abseil-cpp/absl/strings/ascii.h +4 -3
- data/third_party/abseil-cpp/absl/strings/charconv.cc +0 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +54 -5
- data/third_party/abseil-cpp/absl/strings/numbers.h +6 -3
- data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +31 -24
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/{src/boringssl → third_party/boringssl-with-bazel}/err_data.c +329 -297
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bitstr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bool.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_d2i_fp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_dup.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_enum.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_gentm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_i2d_fp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_mbstr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_object.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_octet.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_print.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_strnid.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_time.c +3 -4
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_type.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utctm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utf8.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_locl.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_par.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn_pack.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_enum.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_string.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_dec.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_enc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_fre.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_new.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_typ.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_utl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/time_support.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/base64/base64.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/bio.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/bio_mem.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/connect.c +3 -4
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/fd.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/file.c +5 -6
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/hexdump.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/pair.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/printf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/socket.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/socket_helper.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bn_extra/bn_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bn_extra/convert.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/buf/buf.c +10 -69
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/asn1_compat.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/ber.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/cbb.c +41 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/cbs.c +60 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/unicode.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/chacha/chacha.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/chacha/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/cipher_extra.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/derive_key.c +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesccm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesctrhmac.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesgcmsiv.c +8 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_chacha20poly1305.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_null.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_tls.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/tls_cbc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cmac/cmac.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/conf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/conf_def.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-fuchsia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-linux.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm-linux.c +7 -6
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm-linux.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-intel.c +13 -4
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-ppc64le.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/crypto.c +11 -0
- data/third_party/{boringssl/third_party/fiat → boringssl-with-bazel/src/crypto/curve25519}/curve25519.c +18 -26
- data/third_party/{boringssl/third_party/fiat → boringssl-with-bazel/src/crypto/curve25519}/curve25519_tables.h +13 -21
- data/third_party/{boringssl/third_party/fiat → boringssl-with-bazel/src/crypto/curve25519}/internal.h +14 -22
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/curve25519/spake25519.c +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/check.c +3 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/dh.c +16 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/dh_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/params.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/digest_extra/digest_extra.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dsa/dsa.c +10 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dsa/dsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ec_extra/ec_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ec_extra/ec_derive.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ecdh_extra/ecdh_extra.c +2 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ecdsa_extra/ecdsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/engine/engine.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/err/err.c +39 -38
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/err/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/digestsign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp_ctx.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_dsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ec.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ec_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ed25519.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ed25519_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_rsa.c +14 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_rsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_x25519.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_x25519_asn1.c +1 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/pbkdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/print.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/scrypt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/sign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ex_data.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/internal.h +5 -7
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/key_wrap.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/mode_wrappers.c +0 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bcm.c +4 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/add.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bn.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bytes.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/cmp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/ctx.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/div.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/div_extra.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/exponentiation.c +3 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/gcd.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/gcd_extra.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/generic.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/internal.h +14 -11
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/jacobi.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/montgomery.c +8 -8
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/montgomery_inv.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/mul.c +30 -154
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/prime.c +11 -12
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/random.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/rsaz_exp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/rsaz_exp.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/shift.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/sqrt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/aead.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/cipher.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/e_aes.c +3 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/e_des.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/delocate.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/des.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/digest.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/digests.c +16 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/md32_common.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/ec.c +289 -117
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/ec_key.c +14 -28
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/ec_montgomery.c +96 -55
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/felem.c +25 -7
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/internal.h +432 -160
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/oct.c +63 -71
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p224-64.c +5 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9497 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p256-x86_64.c +80 -99
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p256-x86_64.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +175 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/simple.c +125 -148
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +270 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/util.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/wnaf.c +61 -18
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ecdh/ecdh.c +2 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ecdsa/ecdsa.c +20 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/fips_shared_support.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/hmac/hmac.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/is_fips.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md4/md4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md5/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md5/md5.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/cbc.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/cfb.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/ctr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/gcm.c +45 -193
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/internal.h +8 -18
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/ofb.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/polyval.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/ctrdrbg.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/internal.h +41 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/rand.c +32 -17
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/urandom.c +24 -114
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/blinding.c +4 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/internal.h +1 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/padding.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/rsa.c +58 -39
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/rsa_impl.c +72 -49
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/self_check/self_check.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1-altivec.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha256.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha512.c +44 -35
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/kdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hkdf/hkdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hrss/hrss.c +210 -311
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hrss/internal.h +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/internal.h +21 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/lhash/lhash.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/mem.c +99 -12
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj.c +16 -21
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj_dat.h +41 -6
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj_xref.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_all.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_info.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_lib.c +7 -7
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_oth.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_pk8.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_pkey.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_xaux.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/pkcs7.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/pkcs7_x509.c +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/p5_pbev2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/pkcs8.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/pkcs8_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/poly1305.c +2 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/poly1305_arm.c +21 -20
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/poly1305_vec.c +34 -17
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pool/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pool/pool.c +1 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/deterministic.c +6 -10
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/forkunsafe.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/fuchsia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/rand_extra.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/windows.c +16 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rc4/rc4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_c11.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_lock.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_print.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/siphash/siphash.c +3 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/stack/stack.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_none.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_pthread.c +4 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_win.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_digest.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_sign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_strex.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_verify.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/algorithm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/asn1_gen.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/by_dir.c +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/by_file.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/charmap.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/i2d_pr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/rsa_pss.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_crl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_req.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_x509a.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/vpm_int.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_att.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_cmp.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_d2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_def.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_ext.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_lu.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_obj.c +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_r2x.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_req.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_set.c +16 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_trs.c +1 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_txt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_v3.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_vfy.c +5 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_vpm.c +3 -4
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509cset.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509name.c +4 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509rset.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509spki.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_algor.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_all.c +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_attrib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_crl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_exten.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_info.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_name.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pkey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pubkey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_req.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_sig.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_spki.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_val.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509a.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/ext_dat.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_cache.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_data.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_int.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_map.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_node.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_tree.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_akey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_akeya.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_alt.c +3 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bcons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bitst.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_conf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_cpols.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_crld.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_enum.c +2 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_extku.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_genn.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ia5.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_info.c +4 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ncons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ocsp.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pci.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pku.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pmaps.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_prn.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_purp.c +2 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_skey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_sxnet.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_utl.c +11 -12
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/aead.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/aes.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/arm_arch.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1_mac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1t.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/base.h +5 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/base64.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bio.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/blowfish.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bn.h +32 -20
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/buf.h +9 -9
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/buffer.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bytestring.h +34 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cast.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/chacha.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cipher.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cmac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/conf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cpu.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/crypto.h +9 -4
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/curve25519.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/des.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dh.h +20 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/digest.h +1 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dsa.h +16 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dtls1.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/e_os2.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ec.h +11 -4
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ec_key.h +4 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ecdh.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ecdsa.h +6 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/engine.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/err.h +13 -9
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/evp.h +20 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ex_data.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hkdf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hmac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hrss.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/is_boringssl.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/lhash.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/md4.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/md5.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/mem.h +17 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/nid.h +14 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/obj.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/obj_mac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/objects.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslconf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslv.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ossl_typ.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pem.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs12.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs7.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs8.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/poly1305.h +5 -7
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pool.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rand.h +3 -17
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rc4.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ripemd.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rsa.h +31 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/safestack.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/sha.h +26 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/siphash.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/span.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/srtp.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ssl.h +182 -97
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ssl3.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/stack.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/thread.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/tls1.h +1 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/type_check.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509.h +5 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509_vfy.h +1 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509v3.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/bio_ssl.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_both.cc +0 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_lib.cc +3 -3
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_pkt.cc +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_srtp.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/dtls_method.cc +13 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/dtls_record.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handoff.cc +237 -51
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handshake.cc +19 -7
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handshake_client.cc +51 -32
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handshake_server.cc +12 -8
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/internal.h +94 -71
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/s3_both.cc +10 -10
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/s3_lib.cc +4 -5
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/s3_pkt.cc +21 -22
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_aead_ctx.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_asn1.cc +30 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_buffer.cc +34 -15
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_cert.cc +4 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_cipher.cc +0 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_file.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_key_share.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_lib.cc +19 -15
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_privkey.cc +13 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_session.cc +66 -6
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_stat.cc +6 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_transcript.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_versions.cc +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_x509.cc +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/t1_enc.cc +6 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/t1_lib.cc +53 -219
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_both.cc +1 -1
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_client.cc +101 -31
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_enc.cc +28 -76
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_server.cc +111 -104
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls_method.cc +64 -26
- data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls_record.cc +7 -2
- data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/curve25519_32.h +245 -175
- data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/curve25519_64.h +135 -75
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3147 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/p256_64.h +512 -503
- metadata +648 -503
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +0 -1917
- data/src/core/lib/gprpp/inlined_vector.h +0 -246
- data/src/core/lib/gprpp/optional.h +0 -74
- data/src/core/lib/gprpp/string_view.h +0 -169
- data/src/core/lib/iomgr/logical_thread.cc +0 -103
- data/src/core/lib/iomgr/logical_thread.h +0 -52
- data/src/core/lib/json/json.cc +0 -94
- data/src/core/tsi/grpc_shadow_boringssl.h +0 -3297
- data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +0 -860
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +0 -9501
- data/third_party/boringssl/crypto/fipsmodule/ec/scalar.c +0 -96
- data/third_party/boringssl/crypto/fipsmodule/ec/simple_mul.c +0 -84
- data/third_party/boringssl/third_party/fiat/p256.c +0 -1063
- data/third_party/boringssl/third_party/fiat/p256_32.h +0 -3226
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: src/ruby/bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.12'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
26
|
+
version: '3.12'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: googleapis-common-protos-types
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,42 +100,42 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
103
|
+
version: '13.0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
110
|
+
version: '13.0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: rake-compiler
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: '1.
|
117
|
+
version: '1.1'
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: '1.
|
124
|
+
version: '1.1'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: rake-compiler-dock
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 0
|
131
|
+
version: '1.0'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 0
|
138
|
+
version: '1.0'
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: rspec
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,7 +199,7 @@ dependencies:
|
|
199
199
|
- !ruby/object:Gem::Version
|
200
200
|
version: '0.10'
|
201
201
|
description: Send RPCs from Ruby using GRPC
|
202
|
-
email:
|
202
|
+
email: grpc-io@googlegroups.com
|
203
203
|
executables: []
|
204
204
|
extensions:
|
205
205
|
- src/ruby/ext/grpc/extconf.rb
|
@@ -236,6 +236,7 @@ files:
|
|
236
236
|
- include/grpc/impl/codegen/slice.h
|
237
237
|
- include/grpc/impl/codegen/status.h
|
238
238
|
- include/grpc/impl/codegen/sync.h
|
239
|
+
- include/grpc/impl/codegen/sync_abseil.h
|
239
240
|
- include/grpc/impl/codegen/sync_custom.h
|
240
241
|
- include/grpc/impl/codegen/sync_generic.h
|
241
242
|
- include/grpc/impl/codegen/sync_posix.h
|
@@ -256,6 +257,7 @@ files:
|
|
256
257
|
- include/grpc/support/port_platform.h
|
257
258
|
- include/grpc/support/string_util.h
|
258
259
|
- include/grpc/support/sync.h
|
260
|
+
- include/grpc/support/sync_abseil.h
|
259
261
|
- include/grpc/support/sync_custom.h
|
260
262
|
- include/grpc/support/sync_generic.h
|
261
263
|
- include/grpc/support/sync_posix.h
|
@@ -263,7 +265,6 @@ files:
|
|
263
265
|
- include/grpc/support/thd_id.h
|
264
266
|
- include/grpc/support/time.h
|
265
267
|
- include/grpc/support/workaround_list.h
|
266
|
-
- src/boringssl/err_data.c
|
267
268
|
- src/core/ext/filters/census/grpc_context.cc
|
268
269
|
- src/core/ext/filters/client_channel/backend_metric.cc
|
269
270
|
- src/core/ext/filters/client_channel/backend_metric.h
|
@@ -288,6 +289,10 @@ files:
|
|
288
289
|
- src/core/ext/filters/client_channel/http_proxy.h
|
289
290
|
- src/core/ext/filters/client_channel/lb_policy.cc
|
290
291
|
- src/core/ext/filters/client_channel/lb_policy.h
|
292
|
+
- src/core/ext/filters/client_channel/lb_policy/address_filtering.cc
|
293
|
+
- src/core/ext/filters/client_channel/lb_policy/address_filtering.h
|
294
|
+
- src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc
|
295
|
+
- src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h
|
291
296
|
- src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc
|
292
297
|
- src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h
|
293
298
|
- src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc
|
@@ -301,11 +306,15 @@ files:
|
|
301
306
|
- src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc
|
302
307
|
- src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h
|
303
308
|
- src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc
|
309
|
+
- src/core/ext/filters/client_channel/lb_policy/priority/priority.cc
|
304
310
|
- src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc
|
305
311
|
- src/core/ext/filters/client_channel/lb_policy/subchannel_list.h
|
312
|
+
- src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc
|
306
313
|
- src/core/ext/filters/client_channel/lb_policy/xds/cds.cc
|
307
|
-
- src/core/ext/filters/client_channel/lb_policy/xds/
|
314
|
+
- src/core/ext/filters/client_channel/lb_policy/xds/eds.cc
|
315
|
+
- src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc
|
308
316
|
- src/core/ext/filters/client_channel/lb_policy/xds/xds.h
|
317
|
+
- src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc
|
309
318
|
- src/core/ext/filters/client_channel/lb_policy_factory.h
|
310
319
|
- src/core/ext/filters/client_channel/lb_policy_registry.cc
|
311
320
|
- src/core/ext/filters/client_channel/lb_policy_registry.h
|
@@ -350,6 +359,9 @@ files:
|
|
350
359
|
- src/core/ext/filters/client_channel/server_address.h
|
351
360
|
- src/core/ext/filters/client_channel/service_config.cc
|
352
361
|
- src/core/ext/filters/client_channel/service_config.h
|
362
|
+
- src/core/ext/filters/client_channel/service_config_call_data.h
|
363
|
+
- src/core/ext/filters/client_channel/service_config_parser.cc
|
364
|
+
- src/core/ext/filters/client_channel/service_config_parser.h
|
353
365
|
- src/core/ext/filters/client_channel/subchannel.cc
|
354
366
|
- src/core/ext/filters/client_channel/subchannel.h
|
355
367
|
- src/core/ext/filters/client_channel/subchannel_interface.h
|
@@ -376,6 +388,8 @@ files:
|
|
376
388
|
- src/core/ext/filters/http/http_filters_plugin.cc
|
377
389
|
- src/core/ext/filters/http/message_compress/message_compress_filter.cc
|
378
390
|
- src/core/ext/filters/http/message_compress/message_compress_filter.h
|
391
|
+
- src/core/ext/filters/http/message_compress/message_decompress_filter.cc
|
392
|
+
- src/core/ext/filters/http/message_compress/message_decompress_filter.h
|
379
393
|
- src/core/ext/filters/http/server/http_server_filter.cc
|
380
394
|
- src/core/ext/filters/http/server/http_server_filter.h
|
381
395
|
- src/core/ext/filters/max_age/max_age_filter.cc
|
@@ -447,10 +461,22 @@ files:
|
|
447
461
|
- src/core/ext/transport/inproc/inproc_plugin.cc
|
448
462
|
- src/core/ext/transport/inproc/inproc_transport.cc
|
449
463
|
- src/core/ext/transport/inproc/inproc_transport.h
|
464
|
+
- src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c
|
465
|
+
- src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h
|
466
|
+
- src/core/ext/upb-generated/envoy/annotations/resource.upb.c
|
467
|
+
- src/core/ext/upb-generated/envoy/annotations/resource.upb.h
|
450
468
|
- src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c
|
451
469
|
- src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h
|
470
|
+
- src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c
|
471
|
+
- src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h
|
472
|
+
- src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c
|
473
|
+
- src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h
|
474
|
+
- src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c
|
475
|
+
- src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h
|
452
476
|
- src/core/ext/upb-generated/envoy/api/v2/cds.upb.c
|
453
477
|
- src/core/ext/upb-generated/envoy/api/v2/cds.upb.h
|
478
|
+
- src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c
|
479
|
+
- src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h
|
454
480
|
- src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c
|
455
481
|
- src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h
|
456
482
|
- src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c
|
@@ -459,10 +485,14 @@ files:
|
|
459
485
|
- src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h
|
460
486
|
- src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c
|
461
487
|
- src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h
|
488
|
+
- src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c
|
489
|
+
- src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h
|
462
490
|
- src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c
|
463
491
|
- src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h
|
464
492
|
- src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c
|
465
493
|
- src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h
|
494
|
+
- src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c
|
495
|
+
- src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h
|
466
496
|
- src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c
|
467
497
|
- src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h
|
468
498
|
- src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c
|
@@ -471,24 +501,70 @@ files:
|
|
471
501
|
- src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h
|
472
502
|
- src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c
|
473
503
|
- src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h
|
504
|
+
- src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c
|
505
|
+
- src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h
|
474
506
|
- src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c
|
475
507
|
- src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h
|
476
508
|
- src/core/ext/upb-generated/envoy/api/v2/eds.upb.c
|
477
509
|
- src/core/ext/upb-generated/envoy/api/v2/eds.upb.h
|
510
|
+
- src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c
|
511
|
+
- src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h
|
478
512
|
- src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c
|
479
513
|
- src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h
|
514
|
+
- src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c
|
515
|
+
- src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h
|
480
516
|
- src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c
|
481
517
|
- src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h
|
518
|
+
- src/core/ext/upb-generated/envoy/api/v2/lds.upb.c
|
519
|
+
- src/core/ext/upb-generated/envoy/api/v2/lds.upb.h
|
520
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener.upb.c
|
521
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener.upb.h
|
522
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c
|
523
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h
|
524
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c
|
525
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h
|
526
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c
|
527
|
+
- src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h
|
528
|
+
- src/core/ext/upb-generated/envoy/api/v2/rds.upb.c
|
529
|
+
- src/core/ext/upb-generated/envoy/api/v2/rds.upb.h
|
530
|
+
- src/core/ext/upb-generated/envoy/api/v2/route.upb.c
|
531
|
+
- src/core/ext/upb-generated/envoy/api/v2/route.upb.h
|
532
|
+
- src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c
|
533
|
+
- src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h
|
534
|
+
- src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c
|
535
|
+
- src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h
|
536
|
+
- src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c
|
537
|
+
- src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h
|
538
|
+
- src/core/ext/upb-generated/envoy/api/v2/srds.upb.c
|
539
|
+
- src/core/ext/upb-generated/envoy/api/v2/srds.upb.h
|
540
|
+
- src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c
|
541
|
+
- src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h
|
542
|
+
- src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c
|
543
|
+
- src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h
|
544
|
+
- src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c
|
545
|
+
- src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h
|
546
|
+
- src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c
|
547
|
+
- src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h
|
482
548
|
- src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c
|
483
549
|
- src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h
|
484
550
|
- src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c
|
485
551
|
- src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h
|
486
552
|
- src/core/ext/upb-generated/envoy/type/http.upb.c
|
487
553
|
- src/core/ext/upb-generated/envoy/type/http.upb.h
|
554
|
+
- src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c
|
555
|
+
- src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h
|
556
|
+
- src/core/ext/upb-generated/envoy/type/matcher/string.upb.c
|
557
|
+
- src/core/ext/upb-generated/envoy/type/matcher/string.upb.h
|
558
|
+
- src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c
|
559
|
+
- src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h
|
488
560
|
- src/core/ext/upb-generated/envoy/type/percent.upb.c
|
489
561
|
- src/core/ext/upb-generated/envoy/type/percent.upb.h
|
490
562
|
- src/core/ext/upb-generated/envoy/type/range.upb.c
|
491
563
|
- src/core/ext/upb-generated/envoy/type/range.upb.h
|
564
|
+
- src/core/ext/upb-generated/envoy/type/semantic_version.upb.c
|
565
|
+
- src/core/ext/upb-generated/envoy/type/semantic_version.upb.h
|
566
|
+
- src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c
|
567
|
+
- src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h
|
492
568
|
- src/core/ext/upb-generated/gogoproto/gogo.upb.c
|
493
569
|
- src/core/ext/upb-generated/gogoproto/gogo.upb.h
|
494
570
|
- src/core/ext/upb-generated/google/api/annotations.upb.c
|
@@ -521,6 +597,12 @@ files:
|
|
521
597
|
- src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h
|
522
598
|
- src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c
|
523
599
|
- src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h
|
600
|
+
- src/core/ext/upb-generated/udpa/annotations/migrate.upb.c
|
601
|
+
- src/core/ext/upb-generated/udpa/annotations/migrate.upb.h
|
602
|
+
- src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c
|
603
|
+
- src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h
|
604
|
+
- src/core/ext/upb-generated/udpa/annotations/status.upb.c
|
605
|
+
- src/core/ext/upb-generated/udpa/annotations/status.upb.h
|
524
606
|
- src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c
|
525
607
|
- src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h
|
526
608
|
- src/core/ext/upb-generated/validate/validate.upb.c
|
@@ -598,6 +680,7 @@ files:
|
|
598
680
|
- src/core/lib/gpr/string_windows.cc
|
599
681
|
- src/core/lib/gpr/string_windows.h
|
600
682
|
- src/core/lib/gpr/sync.cc
|
683
|
+
- src/core/lib/gpr/sync_abseil.cc
|
601
684
|
- src/core/lib/gpr/sync_posix.cc
|
602
685
|
- src/core/lib/gpr/sync_windows.cc
|
603
686
|
- src/core/lib/gpr/time.cc
|
@@ -629,17 +712,14 @@ files:
|
|
629
712
|
- src/core/lib/gprpp/global_config_generic.h
|
630
713
|
- src/core/lib/gprpp/host_port.cc
|
631
714
|
- src/core/lib/gprpp/host_port.h
|
632
|
-
- src/core/lib/gprpp/inlined_vector.h
|
633
715
|
- src/core/lib/gprpp/manual_constructor.h
|
634
716
|
- src/core/lib/gprpp/map.h
|
635
717
|
- src/core/lib/gprpp/memory.h
|
636
718
|
- src/core/lib/gprpp/mpscq.cc
|
637
719
|
- src/core/lib/gprpp/mpscq.h
|
638
|
-
- src/core/lib/gprpp/optional.h
|
639
720
|
- src/core/lib/gprpp/orphanable.h
|
640
721
|
- src/core/lib/gprpp/ref_counted.h
|
641
722
|
- src/core/lib/gprpp/ref_counted_ptr.h
|
642
|
-
- src/core/lib/gprpp/string_view.h
|
643
723
|
- src/core/lib/gprpp/sync.h
|
644
724
|
- src/core/lib/gprpp/thd.h
|
645
725
|
- src/core/lib/gprpp/thd_posix.cc
|
@@ -661,6 +741,7 @@ files:
|
|
661
741
|
- src/core/lib/iomgr/closure.h
|
662
742
|
- src/core/lib/iomgr/combiner.cc
|
663
743
|
- src/core/lib/iomgr/combiner.h
|
744
|
+
- src/core/lib/iomgr/dualstack_socket_posix.cc
|
664
745
|
- src/core/lib/iomgr/dynamic_annotations.h
|
665
746
|
- src/core/lib/iomgr/endpoint.cc
|
666
747
|
- src/core/lib/iomgr/endpoint.h
|
@@ -675,6 +756,8 @@ files:
|
|
675
756
|
- src/core/lib/iomgr/error_cfstream.cc
|
676
757
|
- src/core/lib/iomgr/error_cfstream.h
|
677
758
|
- src/core/lib/iomgr/error_internal.h
|
759
|
+
- src/core/lib/iomgr/ev_apple.cc
|
760
|
+
- src/core/lib/iomgr/ev_apple.h
|
678
761
|
- src/core/lib/iomgr/ev_epoll1_linux.cc
|
679
762
|
- src/core/lib/iomgr/ev_epoll1_linux.h
|
680
763
|
- src/core/lib/iomgr/ev_epollex_linux.cc
|
@@ -722,8 +805,6 @@ files:
|
|
722
805
|
- src/core/lib/iomgr/load_file.h
|
723
806
|
- src/core/lib/iomgr/lockfree_event.cc
|
724
807
|
- src/core/lib/iomgr/lockfree_event.h
|
725
|
-
- src/core/lib/iomgr/logical_thread.cc
|
726
|
-
- src/core/lib/iomgr/logical_thread.h
|
727
808
|
- src/core/lib/iomgr/nameser.h
|
728
809
|
- src/core/lib/iomgr/poller/eventmanager_libuv.cc
|
729
810
|
- src/core/lib/iomgr/poller/eventmanager_libuv.h
|
@@ -740,9 +821,11 @@ files:
|
|
740
821
|
- src/core/lib/iomgr/pollset_set_windows.cc
|
741
822
|
- src/core/lib/iomgr/pollset_set_windows.h
|
742
823
|
- src/core/lib/iomgr/pollset_uv.cc
|
824
|
+
- src/core/lib/iomgr/pollset_uv.h
|
743
825
|
- src/core/lib/iomgr/pollset_windows.cc
|
744
826
|
- src/core/lib/iomgr/pollset_windows.h
|
745
827
|
- src/core/lib/iomgr/port.h
|
828
|
+
- src/core/lib/iomgr/python_util.h
|
746
829
|
- src/core/lib/iomgr/resolve_address.cc
|
747
830
|
- src/core/lib/iomgr/resolve_address.h
|
748
831
|
- src/core/lib/iomgr/resolve_address_custom.cc
|
@@ -801,6 +884,7 @@ files:
|
|
801
884
|
- src/core/lib/iomgr/timer_custom.cc
|
802
885
|
- src/core/lib/iomgr/timer_custom.h
|
803
886
|
- src/core/lib/iomgr/timer_generic.cc
|
887
|
+
- src/core/lib/iomgr/timer_generic.h
|
804
888
|
- src/core/lib/iomgr/timer_heap.cc
|
805
889
|
- src/core/lib/iomgr/timer_heap.h
|
806
890
|
- src/core/lib/iomgr/timer_manager.cc
|
@@ -817,7 +901,8 @@ files:
|
|
817
901
|
- src/core/lib/iomgr/wakeup_fd_pipe.h
|
818
902
|
- src/core/lib/iomgr/wakeup_fd_posix.cc
|
819
903
|
- src/core/lib/iomgr/wakeup_fd_posix.h
|
820
|
-
- src/core/lib/
|
904
|
+
- src/core/lib/iomgr/work_serializer.cc
|
905
|
+
- src/core/lib/iomgr/work_serializer.h
|
821
906
|
- src/core/lib/json/json.h
|
822
907
|
- src/core/lib/json/json_reader.cc
|
823
908
|
- src/core/lib/json/json_writer.cc
|
@@ -1015,7 +1100,6 @@ files:
|
|
1015
1100
|
- src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h
|
1016
1101
|
- src/core/tsi/fake_transport_security.cc
|
1017
1102
|
- src/core/tsi/fake_transport_security.h
|
1018
|
-
- src/core/tsi/grpc_shadow_boringssl.h
|
1019
1103
|
- src/core/tsi/local_transport_security.cc
|
1020
1104
|
- src/core/tsi/local_transport_security.h
|
1021
1105
|
- src/core/tsi/ssl/session_cache/ssl_session.h
|
@@ -1107,6 +1191,7 @@ files:
|
|
1107
1191
|
- src/ruby/spec/client_auth_spec.rb
|
1108
1192
|
- src/ruby/spec/client_server_spec.rb
|
1109
1193
|
- src/ruby/spec/compression_options_spec.rb
|
1194
|
+
- src/ruby/spec/debug_message_spec.rb
|
1110
1195
|
- src/ruby/spec/error_sanity_spec.rb
|
1111
1196
|
- src/ruby/spec/errors_spec.rb
|
1112
1197
|
- src/ruby/spec/generic/active_call_spec.rb
|
@@ -1150,6 +1235,7 @@ files:
|
|
1150
1235
|
- third_party/abseil-cpp/absl/base/internal/cycleclock.cc
|
1151
1236
|
- third_party/abseil-cpp/absl/base/internal/cycleclock.h
|
1152
1237
|
- third_party/abseil-cpp/absl/base/internal/endian.h
|
1238
|
+
- third_party/abseil-cpp/absl/base/internal/errno_saver.h
|
1153
1239
|
- third_party/abseil-cpp/absl/base/internal/hide_ptr.h
|
1154
1240
|
- third_party/abseil-cpp/absl/base/internal/identity.h
|
1155
1241
|
- third_party/abseil-cpp/absl/base/internal/inline_variable.h
|
@@ -1214,6 +1300,19 @@ files:
|
|
1214
1300
|
- third_party/abseil-cpp/absl/strings/internal/ostringstream.h
|
1215
1301
|
- third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h
|
1216
1302
|
- third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h
|
1303
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc
|
1304
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/arg.h
|
1305
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc
|
1306
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/bind.h
|
1307
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/checker.h
|
1308
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc
|
1309
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/extension.h
|
1310
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc
|
1311
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h
|
1312
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/output.cc
|
1313
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/output.h
|
1314
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc
|
1315
|
+
- third_party/abseil-cpp/absl/strings/internal/str_format/parser.h
|
1217
1316
|
- third_party/abseil-cpp/absl/strings/internal/str_join_internal.h
|
1218
1317
|
- third_party/abseil-cpp/absl/strings/internal/str_split_internal.h
|
1219
1318
|
- third_party/abseil-cpp/absl/strings/internal/utf8.cc
|
@@ -1224,6 +1323,7 @@ files:
|
|
1224
1323
|
- third_party/abseil-cpp/absl/strings/numbers.h
|
1225
1324
|
- third_party/abseil-cpp/absl/strings/str_cat.cc
|
1226
1325
|
- third_party/abseil-cpp/absl/strings/str_cat.h
|
1326
|
+
- third_party/abseil-cpp/absl/strings/str_format.h
|
1227
1327
|
- third_party/abseil-cpp/absl/strings/str_join.h
|
1228
1328
|
- third_party/abseil-cpp/absl/strings/str_replace.cc
|
1229
1329
|
- third_party/abseil-cpp/absl/strings/str_replace.h
|
@@ -1234,6 +1334,37 @@ files:
|
|
1234
1334
|
- third_party/abseil-cpp/absl/strings/strip.h
|
1235
1335
|
- third_party/abseil-cpp/absl/strings/substitute.cc
|
1236
1336
|
- third_party/abseil-cpp/absl/strings/substitute.h
|
1337
|
+
- third_party/abseil-cpp/absl/time/civil_time.cc
|
1338
|
+
- third_party/abseil-cpp/absl/time/civil_time.h
|
1339
|
+
- third_party/abseil-cpp/absl/time/clock.cc
|
1340
|
+
- third_party/abseil-cpp/absl/time/clock.h
|
1341
|
+
- third_party/abseil-cpp/absl/time/duration.cc
|
1342
|
+
- third_party/abseil-cpp/absl/time/format.cc
|
1343
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h
|
1344
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h
|
1345
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h
|
1346
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h
|
1347
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc
|
1348
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc
|
1349
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h
|
1350
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc
|
1351
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc
|
1352
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h
|
1353
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc
|
1354
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h
|
1355
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc
|
1356
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h
|
1357
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc
|
1358
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h
|
1359
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc
|
1360
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc
|
1361
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h
|
1362
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h
|
1363
|
+
- third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc
|
1364
|
+
- third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc
|
1365
|
+
- third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc
|
1366
|
+
- third_party/abseil-cpp/absl/time/time.cc
|
1367
|
+
- third_party/abseil-cpp/absl/time/time.h
|
1237
1368
|
- third_party/abseil-cpp/absl/types/bad_optional_access.cc
|
1238
1369
|
- third_party/abseil-cpp/absl/types/bad_optional_access.h
|
1239
1370
|
- third_party/abseil-cpp/absl/types/internal/optional.h
|
@@ -1246,459 +1377,472 @@ files:
|
|
1246
1377
|
- third_party/address_sorting/address_sorting_posix.c
|
1247
1378
|
- third_party/address_sorting/address_sorting_windows.c
|
1248
1379
|
- third_party/address_sorting/include/address_sorting/address_sorting.h
|
1249
|
-
- third_party/boringssl/
|
1250
|
-
- third_party/boringssl/crypto/asn1/
|
1251
|
-
- third_party/boringssl/crypto/asn1/
|
1252
|
-
- third_party/boringssl/crypto/asn1/
|
1253
|
-
- third_party/boringssl/crypto/asn1/
|
1254
|
-
- third_party/boringssl/crypto/asn1/
|
1255
|
-
- third_party/boringssl/crypto/asn1/
|
1256
|
-
- third_party/boringssl/crypto/asn1/
|
1257
|
-
- third_party/boringssl/crypto/asn1/
|
1258
|
-
- third_party/boringssl/crypto/asn1/
|
1259
|
-
- third_party/boringssl/crypto/asn1/
|
1260
|
-
- third_party/boringssl/crypto/asn1/
|
1261
|
-
- third_party/boringssl/crypto/asn1/
|
1262
|
-
- third_party/boringssl/crypto/asn1/
|
1263
|
-
- third_party/boringssl/crypto/asn1/
|
1264
|
-
- third_party/boringssl/crypto/asn1/
|
1265
|
-
- third_party/boringssl/crypto/asn1/
|
1266
|
-
- third_party/boringssl/crypto/asn1/
|
1267
|
-
- third_party/boringssl/crypto/asn1/
|
1268
|
-
- third_party/boringssl/crypto/asn1/
|
1269
|
-
- third_party/boringssl/crypto/asn1/
|
1270
|
-
- third_party/boringssl/crypto/asn1/
|
1271
|
-
- third_party/boringssl/crypto/asn1/
|
1272
|
-
- third_party/boringssl/crypto/asn1/
|
1273
|
-
- third_party/boringssl/crypto/asn1/
|
1274
|
-
- third_party/boringssl/crypto/asn1/
|
1275
|
-
- third_party/boringssl/crypto/asn1/
|
1276
|
-
- third_party/boringssl/crypto/asn1/
|
1277
|
-
- third_party/boringssl/crypto/asn1/
|
1278
|
-
- third_party/boringssl/crypto/asn1/
|
1279
|
-
- third_party/boringssl/crypto/asn1/
|
1280
|
-
- third_party/boringssl/crypto/
|
1281
|
-
- third_party/boringssl/crypto/
|
1282
|
-
- third_party/boringssl/crypto/bio/
|
1283
|
-
- third_party/boringssl/crypto/bio/
|
1284
|
-
- third_party/boringssl/crypto/bio/
|
1285
|
-
- third_party/boringssl/crypto/bio/
|
1286
|
-
- third_party/boringssl/crypto/bio/
|
1287
|
-
- third_party/boringssl/crypto/bio/
|
1288
|
-
- third_party/boringssl/crypto/bio/
|
1289
|
-
- third_party/boringssl/crypto/bio/
|
1290
|
-
- third_party/boringssl/crypto/bio/
|
1291
|
-
- third_party/boringssl/crypto/bio/
|
1292
|
-
- third_party/boringssl/crypto/
|
1293
|
-
- third_party/boringssl/crypto/bn_extra/
|
1294
|
-
- third_party/boringssl/crypto/
|
1295
|
-
- third_party/boringssl/crypto/
|
1296
|
-
- third_party/boringssl/crypto/bytestring/
|
1297
|
-
- third_party/boringssl/crypto/bytestring/
|
1298
|
-
- third_party/boringssl/crypto/bytestring/
|
1299
|
-
- third_party/boringssl/crypto/bytestring/
|
1300
|
-
- third_party/boringssl/crypto/bytestring/
|
1301
|
-
- third_party/boringssl/crypto/
|
1302
|
-
- third_party/boringssl/crypto/chacha/
|
1303
|
-
- third_party/boringssl/crypto/
|
1304
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1305
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1306
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1307
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1308
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1309
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1310
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1311
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1312
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1313
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1314
|
-
- third_party/boringssl/crypto/cipher_extra/
|
1315
|
-
- third_party/boringssl/crypto/
|
1316
|
-
- third_party/boringssl/crypto/
|
1317
|
-
- third_party/boringssl/crypto/conf/
|
1318
|
-
- third_party/boringssl/crypto/conf/
|
1319
|
-
- third_party/boringssl/crypto/
|
1320
|
-
- third_party/boringssl/crypto/cpu-aarch64-
|
1321
|
-
- third_party/boringssl/crypto/cpu-
|
1322
|
-
- third_party/boringssl/crypto/cpu-arm-linux.
|
1323
|
-
- third_party/boringssl/crypto/cpu-arm.
|
1324
|
-
- third_party/boringssl/crypto/cpu-
|
1325
|
-
- third_party/boringssl/crypto/cpu-
|
1326
|
-
- third_party/boringssl/crypto/
|
1327
|
-
- third_party/boringssl/crypto/
|
1328
|
-
- third_party/boringssl/crypto/
|
1329
|
-
- third_party/boringssl/crypto/
|
1330
|
-
- third_party/boringssl/crypto/
|
1331
|
-
- third_party/boringssl/crypto/
|
1332
|
-
- third_party/boringssl/crypto/
|
1333
|
-
- third_party/boringssl/crypto/
|
1334
|
-
- third_party/boringssl/crypto/
|
1335
|
-
- third_party/boringssl/crypto/
|
1336
|
-
- third_party/boringssl/crypto/
|
1337
|
-
- third_party/boringssl/crypto/
|
1338
|
-
- third_party/boringssl/crypto/
|
1339
|
-
- third_party/boringssl/crypto/
|
1340
|
-
- third_party/boringssl/crypto/
|
1341
|
-
- third_party/boringssl/crypto/
|
1342
|
-
- third_party/boringssl/crypto/
|
1343
|
-
- third_party/boringssl/crypto/
|
1344
|
-
- third_party/boringssl/crypto/
|
1345
|
-
- third_party/boringssl/crypto/
|
1346
|
-
- third_party/boringssl/crypto/
|
1347
|
-
- third_party/boringssl/crypto/
|
1348
|
-
- third_party/boringssl/crypto/evp/
|
1349
|
-
- third_party/boringssl/crypto/evp/
|
1350
|
-
- third_party/boringssl/crypto/evp/
|
1351
|
-
- third_party/boringssl/crypto/evp/
|
1352
|
-
- third_party/boringssl/crypto/evp/
|
1353
|
-
- third_party/boringssl/crypto/evp/
|
1354
|
-
- third_party/boringssl/crypto/evp/
|
1355
|
-
- third_party/boringssl/crypto/evp/
|
1356
|
-
- third_party/boringssl/crypto/evp/
|
1357
|
-
- third_party/boringssl/crypto/evp/
|
1358
|
-
- third_party/boringssl/crypto/evp/
|
1359
|
-
- third_party/boringssl/crypto/evp/
|
1360
|
-
- third_party/boringssl/crypto/
|
1361
|
-
- third_party/boringssl/crypto/
|
1362
|
-
- third_party/boringssl/crypto/
|
1363
|
-
- third_party/boringssl/crypto/
|
1364
|
-
- third_party/boringssl/crypto/
|
1365
|
-
- third_party/boringssl/crypto/
|
1366
|
-
- third_party/boringssl/crypto/
|
1367
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1368
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1369
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1370
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1371
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1372
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1373
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1374
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1375
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1376
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1377
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1378
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1379
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1380
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1381
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1382
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1383
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1384
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1385
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1386
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1387
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1388
|
-
- third_party/boringssl/crypto/fipsmodule/bn/
|
1389
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1390
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1391
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1392
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1393
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1394
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1395
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1396
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1397
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1398
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1399
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1400
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1401
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1402
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1403
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1404
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1405
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1406
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1407
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1408
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1409
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1410
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1411
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1412
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1413
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1414
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1415
|
-
- third_party/boringssl/crypto/fipsmodule/ec/
|
1416
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1417
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1418
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1419
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1420
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1421
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1422
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1423
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1424
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1425
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1426
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1427
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1428
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1429
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1430
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1431
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1432
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1433
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1434
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1435
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1436
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1437
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1438
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1439
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1440
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1441
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1442
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1443
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1444
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1445
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1446
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1447
|
-
- third_party/boringssl/crypto/fipsmodule/
|
1448
|
-
- third_party/boringssl/crypto/
|
1449
|
-
- third_party/boringssl/crypto/
|
1450
|
-
- third_party/boringssl/crypto/
|
1451
|
-
- third_party/boringssl/crypto/
|
1452
|
-
- third_party/boringssl/crypto/
|
1453
|
-
- third_party/boringssl/crypto/
|
1454
|
-
- third_party/boringssl/crypto/
|
1455
|
-
- third_party/boringssl/crypto/
|
1456
|
-
- third_party/boringssl/crypto/
|
1457
|
-
- third_party/boringssl/crypto/
|
1458
|
-
- third_party/boringssl/crypto/
|
1459
|
-
- third_party/boringssl/crypto/
|
1460
|
-
- third_party/boringssl/crypto/
|
1461
|
-
- third_party/boringssl/crypto/
|
1462
|
-
- third_party/boringssl/crypto/
|
1463
|
-
- third_party/boringssl/crypto/
|
1464
|
-
- third_party/boringssl/crypto/
|
1465
|
-
- third_party/boringssl/crypto/
|
1466
|
-
- third_party/boringssl/crypto/
|
1467
|
-
- third_party/boringssl/crypto/
|
1468
|
-
- third_party/boringssl/crypto/
|
1469
|
-
- third_party/boringssl/crypto/
|
1470
|
-
- third_party/boringssl/crypto/
|
1471
|
-
- third_party/boringssl/crypto/
|
1472
|
-
- third_party/boringssl/crypto/
|
1473
|
-
- third_party/boringssl/crypto/
|
1474
|
-
- third_party/boringssl/crypto/
|
1475
|
-
- third_party/boringssl/crypto/
|
1476
|
-
- third_party/boringssl/crypto/
|
1477
|
-
- third_party/boringssl/crypto/
|
1478
|
-
- third_party/boringssl/crypto/
|
1479
|
-
- third_party/boringssl/crypto/
|
1480
|
-
- third_party/boringssl/crypto/
|
1481
|
-
- third_party/boringssl/crypto/
|
1482
|
-
- third_party/boringssl/crypto/
|
1483
|
-
- third_party/boringssl/crypto/
|
1484
|
-
- third_party/boringssl/crypto/
|
1485
|
-
- third_party/boringssl/crypto/
|
1486
|
-
- third_party/boringssl/crypto/
|
1487
|
-
- third_party/boringssl/crypto/
|
1488
|
-
- third_party/boringssl/crypto/
|
1489
|
-
- third_party/boringssl/crypto/
|
1490
|
-
- third_party/boringssl/crypto/
|
1491
|
-
- third_party/boringssl/crypto/
|
1492
|
-
- third_party/boringssl/crypto/
|
1493
|
-
- third_party/boringssl/crypto/
|
1494
|
-
- third_party/boringssl/crypto/
|
1495
|
-
- third_party/boringssl/crypto/
|
1496
|
-
- third_party/boringssl/crypto/
|
1497
|
-
- third_party/boringssl/crypto/
|
1498
|
-
- third_party/boringssl/crypto/
|
1499
|
-
- third_party/boringssl/crypto/
|
1500
|
-
- third_party/boringssl/crypto/
|
1501
|
-
- third_party/boringssl/crypto/
|
1502
|
-
- third_party/boringssl/crypto/
|
1503
|
-
- third_party/boringssl/crypto/
|
1504
|
-
- third_party/boringssl/crypto/
|
1505
|
-
- third_party/boringssl/crypto/
|
1506
|
-
- third_party/boringssl/crypto/
|
1507
|
-
- third_party/boringssl/crypto/
|
1508
|
-
- third_party/boringssl/crypto/
|
1509
|
-
- third_party/boringssl/crypto/
|
1510
|
-
- third_party/boringssl/crypto/x509/
|
1511
|
-
- third_party/boringssl/crypto/x509/
|
1512
|
-
- third_party/boringssl/crypto/x509/
|
1513
|
-
- third_party/boringssl/crypto/x509/
|
1514
|
-
- third_party/boringssl/crypto/x509/
|
1515
|
-
- third_party/boringssl/crypto/x509/
|
1516
|
-
- third_party/boringssl/crypto/x509/
|
1517
|
-
- third_party/boringssl/crypto/x509/
|
1518
|
-
- third_party/boringssl/crypto/x509/
|
1519
|
-
- third_party/boringssl/crypto/x509/
|
1520
|
-
- third_party/boringssl/crypto/x509/
|
1521
|
-
- third_party/boringssl/crypto/x509/
|
1522
|
-
- third_party/boringssl/crypto/x509/
|
1523
|
-
- third_party/boringssl/crypto/x509/
|
1524
|
-
- third_party/boringssl/crypto/x509/
|
1525
|
-
- third_party/boringssl/crypto/x509/
|
1526
|
-
- third_party/boringssl/crypto/x509/
|
1527
|
-
- third_party/boringssl/crypto/x509/
|
1528
|
-
- third_party/boringssl/crypto/x509/
|
1529
|
-
- third_party/boringssl/crypto/x509/
|
1530
|
-
- third_party/boringssl/crypto/x509/
|
1531
|
-
- third_party/boringssl/crypto/x509/
|
1532
|
-
- third_party/boringssl/crypto/x509/
|
1533
|
-
- third_party/boringssl/crypto/x509/
|
1534
|
-
- third_party/boringssl/crypto/x509/
|
1535
|
-
- third_party/boringssl/crypto/x509/
|
1536
|
-
- third_party/boringssl/crypto/x509/
|
1537
|
-
- third_party/boringssl/crypto/x509/
|
1538
|
-
- third_party/boringssl/crypto/x509/
|
1539
|
-
- third_party/boringssl/crypto/x509/
|
1540
|
-
- third_party/boringssl/crypto/x509/
|
1541
|
-
- third_party/boringssl/crypto/x509/
|
1542
|
-
- third_party/boringssl/crypto/x509/
|
1543
|
-
- third_party/boringssl/crypto/x509/
|
1544
|
-
- third_party/boringssl/crypto/x509/
|
1545
|
-
- third_party/boringssl/crypto/x509/
|
1546
|
-
- third_party/boringssl/crypto/
|
1547
|
-
- third_party/boringssl/crypto/
|
1548
|
-
- third_party/boringssl/crypto/
|
1549
|
-
- third_party/boringssl/crypto/
|
1550
|
-
- third_party/boringssl/crypto/
|
1551
|
-
- third_party/boringssl/crypto/
|
1552
|
-
- third_party/boringssl/crypto/
|
1553
|
-
- third_party/boringssl/crypto/
|
1554
|
-
- third_party/boringssl/crypto/
|
1555
|
-
- third_party/boringssl/crypto/
|
1556
|
-
- third_party/boringssl/crypto/
|
1557
|
-
- third_party/boringssl/crypto/
|
1558
|
-
- third_party/boringssl/crypto/
|
1559
|
-
- third_party/boringssl/crypto/
|
1560
|
-
- third_party/boringssl/crypto/
|
1561
|
-
- third_party/boringssl/crypto/
|
1562
|
-
- third_party/boringssl/crypto/x509v3/
|
1563
|
-
- third_party/boringssl/crypto/x509v3/
|
1564
|
-
- third_party/boringssl/crypto/x509v3/
|
1565
|
-
- third_party/boringssl/crypto/x509v3/
|
1566
|
-
- third_party/boringssl/crypto/x509v3/
|
1567
|
-
- third_party/boringssl/crypto/x509v3/
|
1568
|
-
- third_party/boringssl/crypto/x509v3/
|
1569
|
-
- third_party/boringssl/crypto/x509v3/
|
1570
|
-
- third_party/boringssl/crypto/x509v3/
|
1571
|
-
- third_party/boringssl/crypto/x509v3/
|
1572
|
-
- third_party/boringssl/crypto/x509v3/
|
1573
|
-
- third_party/boringssl/crypto/x509v3/
|
1574
|
-
- third_party/boringssl/crypto/x509v3/
|
1575
|
-
- third_party/boringssl/crypto/x509v3/
|
1576
|
-
- third_party/boringssl/crypto/x509v3/
|
1577
|
-
- third_party/boringssl/crypto/x509v3/
|
1578
|
-
- third_party/boringssl/crypto/x509v3/
|
1579
|
-
- third_party/boringssl/crypto/x509v3/
|
1580
|
-
- third_party/boringssl/crypto/x509v3/
|
1581
|
-
- third_party/boringssl/crypto/x509v3/
|
1582
|
-
- third_party/boringssl/
|
1583
|
-
- third_party/boringssl/
|
1584
|
-
- third_party/boringssl/
|
1585
|
-
- third_party/boringssl/
|
1586
|
-
- third_party/boringssl/
|
1587
|
-
- third_party/boringssl/
|
1588
|
-
- third_party/boringssl/
|
1589
|
-
- third_party/boringssl/
|
1590
|
-
- third_party/boringssl/
|
1591
|
-
- third_party/boringssl/
|
1592
|
-
- third_party/boringssl/
|
1593
|
-
- third_party/boringssl/
|
1594
|
-
- third_party/boringssl/
|
1595
|
-
- third_party/boringssl/
|
1596
|
-
- third_party/boringssl/
|
1597
|
-
- third_party/boringssl/
|
1598
|
-
- third_party/boringssl/include/openssl/
|
1599
|
-
- third_party/boringssl/include/openssl/
|
1600
|
-
- third_party/boringssl/include/openssl/
|
1601
|
-
- third_party/boringssl/include/openssl/
|
1602
|
-
- third_party/boringssl/include/openssl/
|
1603
|
-
- third_party/boringssl/include/openssl/
|
1604
|
-
- third_party/boringssl/include/openssl/
|
1605
|
-
- third_party/boringssl/include/openssl/
|
1606
|
-
- third_party/boringssl/include/openssl/
|
1607
|
-
- third_party/boringssl/include/openssl/
|
1608
|
-
- third_party/boringssl/include/openssl/
|
1609
|
-
- third_party/boringssl/include/openssl/
|
1610
|
-
- third_party/boringssl/include/openssl/
|
1611
|
-
- third_party/boringssl/include/openssl/
|
1612
|
-
- third_party/boringssl/include/openssl/
|
1613
|
-
- third_party/boringssl/include/openssl/
|
1614
|
-
- third_party/boringssl/include/openssl/
|
1615
|
-
- third_party/boringssl/include/openssl/
|
1616
|
-
- third_party/boringssl/include/openssl/
|
1617
|
-
- third_party/boringssl/include/openssl/
|
1618
|
-
- third_party/boringssl/include/openssl/
|
1619
|
-
- third_party/boringssl/include/openssl/
|
1620
|
-
- third_party/boringssl/include/openssl/
|
1621
|
-
- third_party/boringssl/include/openssl/
|
1622
|
-
- third_party/boringssl/include/openssl/
|
1623
|
-
- third_party/boringssl/include/openssl/
|
1624
|
-
- third_party/boringssl/include/openssl/
|
1625
|
-
- third_party/boringssl/include/openssl/
|
1626
|
-
- third_party/boringssl/include/openssl/
|
1627
|
-
- third_party/boringssl/include/openssl/
|
1628
|
-
- third_party/boringssl/include/openssl/
|
1629
|
-
- third_party/boringssl/include/openssl/
|
1630
|
-
- third_party/boringssl/include/openssl/
|
1631
|
-
- third_party/boringssl/include/openssl/
|
1632
|
-
- third_party/boringssl/include/openssl/
|
1633
|
-
- third_party/boringssl/include/openssl/
|
1634
|
-
- third_party/boringssl/include/openssl/
|
1635
|
-
- third_party/boringssl/include/openssl/
|
1636
|
-
- third_party/boringssl/include/openssl/
|
1637
|
-
- third_party/boringssl/include/openssl/
|
1638
|
-
- third_party/boringssl/include/openssl/
|
1639
|
-
- third_party/boringssl/include/openssl/
|
1640
|
-
- third_party/boringssl/include/openssl/
|
1641
|
-
- third_party/boringssl/include/openssl/
|
1642
|
-
- third_party/boringssl/include/openssl/
|
1643
|
-
- third_party/boringssl/include/openssl/
|
1644
|
-
- third_party/boringssl/include/openssl/
|
1645
|
-
- third_party/boringssl/include/openssl/
|
1646
|
-
- third_party/boringssl/include/openssl/
|
1647
|
-
- third_party/boringssl/include/openssl/
|
1648
|
-
- third_party/boringssl/include/openssl/
|
1649
|
-
- third_party/boringssl/include/openssl/
|
1650
|
-
- third_party/boringssl/include/openssl/
|
1651
|
-
- third_party/boringssl/include/openssl/
|
1652
|
-
- third_party/boringssl/include/openssl/
|
1653
|
-
- third_party/boringssl/include/openssl/
|
1654
|
-
- third_party/boringssl/include/openssl/
|
1655
|
-
- third_party/boringssl/include/openssl/
|
1656
|
-
- third_party/boringssl/include/openssl/
|
1657
|
-
- third_party/boringssl/
|
1658
|
-
- third_party/boringssl/
|
1659
|
-
- third_party/boringssl/
|
1660
|
-
- third_party/boringssl/
|
1661
|
-
- third_party/boringssl/
|
1662
|
-
- third_party/boringssl/
|
1663
|
-
- third_party/boringssl/
|
1664
|
-
- third_party/boringssl/ssl
|
1665
|
-
- third_party/boringssl/
|
1666
|
-
- third_party/boringssl/
|
1667
|
-
- third_party/boringssl/
|
1668
|
-
- third_party/boringssl/
|
1669
|
-
- third_party/boringssl/
|
1670
|
-
- third_party/boringssl/
|
1671
|
-
- third_party/boringssl/
|
1672
|
-
- third_party/boringssl/
|
1673
|
-
- third_party/boringssl/
|
1674
|
-
- third_party/boringssl/ssl/
|
1675
|
-
- third_party/boringssl/ssl/
|
1676
|
-
- third_party/boringssl/ssl/
|
1677
|
-
- third_party/boringssl/ssl/
|
1678
|
-
- third_party/boringssl/ssl/
|
1679
|
-
- third_party/boringssl/ssl/
|
1680
|
-
- third_party/boringssl/ssl/
|
1681
|
-
- third_party/boringssl/ssl/
|
1682
|
-
- third_party/boringssl/ssl/
|
1683
|
-
- third_party/boringssl/ssl/
|
1684
|
-
- third_party/boringssl/ssl/
|
1685
|
-
- third_party/boringssl/ssl/
|
1686
|
-
- third_party/boringssl/ssl/
|
1687
|
-
- third_party/boringssl/ssl/
|
1688
|
-
- third_party/boringssl/ssl/
|
1689
|
-
- third_party/boringssl/ssl/
|
1690
|
-
- third_party/boringssl/ssl/
|
1691
|
-
- third_party/boringssl/ssl/
|
1692
|
-
- third_party/boringssl/ssl/
|
1693
|
-
- third_party/boringssl/ssl/
|
1694
|
-
- third_party/boringssl/
|
1695
|
-
- third_party/boringssl/
|
1696
|
-
- third_party/boringssl/
|
1697
|
-
- third_party/boringssl/
|
1698
|
-
- third_party/boringssl/
|
1699
|
-
- third_party/boringssl/
|
1700
|
-
- third_party/boringssl/
|
1701
|
-
- third_party/boringssl/
|
1380
|
+
- third_party/boringssl-with-bazel/err_data.c
|
1381
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c
|
1382
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c
|
1383
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c
|
1384
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c
|
1385
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c
|
1386
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c
|
1387
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c
|
1388
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c
|
1389
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c
|
1390
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c
|
1391
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c
|
1392
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c
|
1393
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c
|
1394
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c
|
1395
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c
|
1396
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c
|
1397
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c
|
1398
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c
|
1399
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h
|
1400
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c
|
1401
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c
|
1402
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c
|
1403
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c
|
1404
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c
|
1405
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c
|
1406
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c
|
1407
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c
|
1408
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c
|
1409
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c
|
1410
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c
|
1411
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c
|
1412
|
+
- third_party/boringssl-with-bazel/src/crypto/base64/base64.c
|
1413
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/bio.c
|
1414
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c
|
1415
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/connect.c
|
1416
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/fd.c
|
1417
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/file.c
|
1418
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c
|
1419
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/internal.h
|
1420
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/pair.c
|
1421
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/printf.c
|
1422
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/socket.c
|
1423
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c
|
1424
|
+
- third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c
|
1425
|
+
- third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c
|
1426
|
+
- third_party/boringssl-with-bazel/src/crypto/buf/buf.c
|
1427
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c
|
1428
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c
|
1429
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c
|
1430
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c
|
1431
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h
|
1432
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c
|
1433
|
+
- third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c
|
1434
|
+
- third_party/boringssl-with-bazel/src/crypto/chacha/internal.h
|
1435
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c
|
1436
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c
|
1437
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c
|
1438
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c
|
1439
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c
|
1440
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c
|
1441
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c
|
1442
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c
|
1443
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c
|
1444
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c
|
1445
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h
|
1446
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c
|
1447
|
+
- third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c
|
1448
|
+
- third_party/boringssl-with-bazel/src/crypto/conf/conf.c
|
1449
|
+
- third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h
|
1450
|
+
- third_party/boringssl-with-bazel/src/crypto/conf/internal.h
|
1451
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c
|
1452
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c
|
1453
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c
|
1454
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.h
|
1455
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-arm.c
|
1456
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-intel.c
|
1457
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c
|
1458
|
+
- third_party/boringssl-with-bazel/src/crypto/crypto.c
|
1459
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c
|
1460
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h
|
1461
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h
|
1462
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c
|
1463
|
+
- third_party/boringssl-with-bazel/src/crypto/dh/check.c
|
1464
|
+
- third_party/boringssl-with-bazel/src/crypto/dh/dh.c
|
1465
|
+
- third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c
|
1466
|
+
- third_party/boringssl-with-bazel/src/crypto/dh/params.c
|
1467
|
+
- third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c
|
1468
|
+
- third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c
|
1469
|
+
- third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c
|
1470
|
+
- third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c
|
1471
|
+
- third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c
|
1472
|
+
- third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c
|
1473
|
+
- third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h
|
1474
|
+
- third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c
|
1475
|
+
- third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c
|
1476
|
+
- third_party/boringssl-with-bazel/src/crypto/engine/engine.c
|
1477
|
+
- third_party/boringssl-with-bazel/src/crypto/err/err.c
|
1478
|
+
- third_party/boringssl-with-bazel/src/crypto/err/internal.h
|
1479
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c
|
1480
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/evp.c
|
1481
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c
|
1482
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c
|
1483
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/internal.h
|
1484
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c
|
1485
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c
|
1486
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c
|
1487
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c
|
1488
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c
|
1489
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c
|
1490
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c
|
1491
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c
|
1492
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c
|
1493
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c
|
1494
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/print.c
|
1495
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c
|
1496
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/sign.c
|
1497
|
+
- third_party/boringssl-with-bazel/src/crypto/ex_data.c
|
1498
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c
|
1499
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c
|
1500
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h
|
1501
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c
|
1502
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c
|
1503
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c
|
1504
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c
|
1505
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c
|
1506
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c
|
1507
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c
|
1508
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c
|
1509
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c
|
1510
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c
|
1511
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c
|
1512
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c
|
1513
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c
|
1514
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c
|
1515
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c
|
1516
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h
|
1517
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c
|
1518
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c
|
1519
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c
|
1520
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c
|
1521
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c
|
1522
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c
|
1523
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c
|
1524
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h
|
1525
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c
|
1526
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c
|
1527
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c
|
1528
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c
|
1529
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c
|
1530
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_des.c
|
1531
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h
|
1532
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h
|
1533
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c
|
1534
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h
|
1535
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c
|
1536
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c
|
1537
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h
|
1538
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h
|
1539
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c
|
1540
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c
|
1541
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c
|
1542
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c
|
1543
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h
|
1544
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c
|
1545
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c
|
1546
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h
|
1547
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c
|
1548
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.h
|
1549
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c
|
1550
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h
|
1551
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c
|
1552
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c
|
1553
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c
|
1554
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c
|
1555
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c
|
1556
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c
|
1557
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c
|
1558
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c
|
1559
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c
|
1560
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c
|
1561
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c
|
1562
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h
|
1563
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c
|
1564
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c
|
1565
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c
|
1566
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c
|
1567
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c
|
1568
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c
|
1569
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h
|
1570
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c
|
1571
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c
|
1572
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c
|
1573
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c
|
1574
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h
|
1575
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h
|
1576
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h
|
1577
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c
|
1578
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c
|
1579
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c
|
1580
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h
|
1581
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c
|
1582
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c
|
1583
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c
|
1584
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c
|
1585
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h
|
1586
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c
|
1587
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c
|
1588
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c
|
1589
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c
|
1590
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h
|
1591
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c
|
1592
|
+
- third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c
|
1593
|
+
- third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c
|
1594
|
+
- third_party/boringssl-with-bazel/src/crypto/hrss/internal.h
|
1595
|
+
- third_party/boringssl-with-bazel/src/crypto/internal.h
|
1596
|
+
- third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c
|
1597
|
+
- third_party/boringssl-with-bazel/src/crypto/mem.c
|
1598
|
+
- third_party/boringssl-with-bazel/src/crypto/obj/obj.c
|
1599
|
+
- third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h
|
1600
|
+
- third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c
|
1601
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c
|
1602
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c
|
1603
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c
|
1604
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c
|
1605
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c
|
1606
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c
|
1607
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c
|
1608
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c
|
1609
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h
|
1610
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c
|
1611
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c
|
1612
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h
|
1613
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c
|
1614
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c
|
1615
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c
|
1616
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h
|
1617
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c
|
1618
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c
|
1619
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c
|
1620
|
+
- third_party/boringssl-with-bazel/src/crypto/pool/internal.h
|
1621
|
+
- third_party/boringssl-with-bazel/src/crypto/pool/pool.c
|
1622
|
+
- third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c
|
1623
|
+
- third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c
|
1624
|
+
- third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c
|
1625
|
+
- third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c
|
1626
|
+
- third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c
|
1627
|
+
- third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c
|
1628
|
+
- third_party/boringssl-with-bazel/src/crypto/refcount_c11.c
|
1629
|
+
- third_party/boringssl-with-bazel/src/crypto/refcount_lock.c
|
1630
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c
|
1631
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c
|
1632
|
+
- third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c
|
1633
|
+
- third_party/boringssl-with-bazel/src/crypto/stack/stack.c
|
1634
|
+
- third_party/boringssl-with-bazel/src/crypto/thread.c
|
1635
|
+
- third_party/boringssl-with-bazel/src/crypto/thread_none.c
|
1636
|
+
- third_party/boringssl-with-bazel/src/crypto/thread_pthread.c
|
1637
|
+
- third_party/boringssl-with-bazel/src/crypto/thread_win.c
|
1638
|
+
- third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h
|
1639
|
+
- third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c
|
1640
|
+
- third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c
|
1641
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c
|
1642
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c
|
1643
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c
|
1644
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c
|
1645
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c
|
1646
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c
|
1647
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c
|
1648
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/by_file.c
|
1649
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/charmap.h
|
1650
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c
|
1651
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/internal.h
|
1652
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c
|
1653
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c
|
1654
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_req.c
|
1655
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c
|
1656
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c
|
1657
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h
|
1658
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509.c
|
1659
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c
|
1660
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c
|
1661
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c
|
1662
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c
|
1663
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c
|
1664
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c
|
1665
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c
|
1666
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c
|
1667
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c
|
1668
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c
|
1669
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c
|
1670
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c
|
1671
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c
|
1672
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c
|
1673
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c
|
1674
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c
|
1675
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509name.c
|
1676
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c
|
1677
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c
|
1678
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c
|
1679
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_all.c
|
1680
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c
|
1681
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c
|
1682
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c
|
1683
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_info.c
|
1684
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_name.c
|
1685
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c
|
1686
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c
|
1687
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_req.c
|
1688
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c
|
1689
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c
|
1690
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_val.c
|
1691
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c
|
1692
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c
|
1693
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h
|
1694
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h
|
1695
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c
|
1696
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c
|
1697
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h
|
1698
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c
|
1699
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c
|
1700
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c
|
1701
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c
|
1702
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c
|
1703
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c
|
1704
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c
|
1705
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c
|
1706
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c
|
1707
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c
|
1708
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c
|
1709
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c
|
1710
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c
|
1711
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c
|
1712
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c
|
1713
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c
|
1714
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c
|
1715
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c
|
1716
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c
|
1717
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c
|
1718
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c
|
1719
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c
|
1720
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c
|
1721
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c
|
1722
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c
|
1723
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c
|
1724
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c
|
1725
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c
|
1726
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c
|
1727
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c
|
1728
|
+
- third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c
|
1729
|
+
- third_party/boringssl-with-bazel/src/include/openssl/aead.h
|
1730
|
+
- third_party/boringssl-with-bazel/src/include/openssl/aes.h
|
1731
|
+
- third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h
|
1732
|
+
- third_party/boringssl-with-bazel/src/include/openssl/asn1.h
|
1733
|
+
- third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h
|
1734
|
+
- third_party/boringssl-with-bazel/src/include/openssl/asn1t.h
|
1735
|
+
- third_party/boringssl-with-bazel/src/include/openssl/base.h
|
1736
|
+
- third_party/boringssl-with-bazel/src/include/openssl/base64.h
|
1737
|
+
- third_party/boringssl-with-bazel/src/include/openssl/bio.h
|
1738
|
+
- third_party/boringssl-with-bazel/src/include/openssl/blowfish.h
|
1739
|
+
- third_party/boringssl-with-bazel/src/include/openssl/bn.h
|
1740
|
+
- third_party/boringssl-with-bazel/src/include/openssl/buf.h
|
1741
|
+
- third_party/boringssl-with-bazel/src/include/openssl/buffer.h
|
1742
|
+
- third_party/boringssl-with-bazel/src/include/openssl/bytestring.h
|
1743
|
+
- third_party/boringssl-with-bazel/src/include/openssl/cast.h
|
1744
|
+
- third_party/boringssl-with-bazel/src/include/openssl/chacha.h
|
1745
|
+
- third_party/boringssl-with-bazel/src/include/openssl/cipher.h
|
1746
|
+
- third_party/boringssl-with-bazel/src/include/openssl/cmac.h
|
1747
|
+
- third_party/boringssl-with-bazel/src/include/openssl/conf.h
|
1748
|
+
- third_party/boringssl-with-bazel/src/include/openssl/cpu.h
|
1749
|
+
- third_party/boringssl-with-bazel/src/include/openssl/crypto.h
|
1750
|
+
- third_party/boringssl-with-bazel/src/include/openssl/curve25519.h
|
1751
|
+
- third_party/boringssl-with-bazel/src/include/openssl/des.h
|
1752
|
+
- third_party/boringssl-with-bazel/src/include/openssl/dh.h
|
1753
|
+
- third_party/boringssl-with-bazel/src/include/openssl/digest.h
|
1754
|
+
- third_party/boringssl-with-bazel/src/include/openssl/dsa.h
|
1755
|
+
- third_party/boringssl-with-bazel/src/include/openssl/dtls1.h
|
1756
|
+
- third_party/boringssl-with-bazel/src/include/openssl/e_os2.h
|
1757
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ec.h
|
1758
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ec_key.h
|
1759
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ecdh.h
|
1760
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h
|
1761
|
+
- third_party/boringssl-with-bazel/src/include/openssl/engine.h
|
1762
|
+
- third_party/boringssl-with-bazel/src/include/openssl/err.h
|
1763
|
+
- third_party/boringssl-with-bazel/src/include/openssl/evp.h
|
1764
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ex_data.h
|
1765
|
+
- third_party/boringssl-with-bazel/src/include/openssl/hkdf.h
|
1766
|
+
- third_party/boringssl-with-bazel/src/include/openssl/hmac.h
|
1767
|
+
- third_party/boringssl-with-bazel/src/include/openssl/hrss.h
|
1768
|
+
- third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h
|
1769
|
+
- third_party/boringssl-with-bazel/src/include/openssl/lhash.h
|
1770
|
+
- third_party/boringssl-with-bazel/src/include/openssl/md4.h
|
1771
|
+
- third_party/boringssl-with-bazel/src/include/openssl/md5.h
|
1772
|
+
- third_party/boringssl-with-bazel/src/include/openssl/mem.h
|
1773
|
+
- third_party/boringssl-with-bazel/src/include/openssl/nid.h
|
1774
|
+
- third_party/boringssl-with-bazel/src/include/openssl/obj.h
|
1775
|
+
- third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h
|
1776
|
+
- third_party/boringssl-with-bazel/src/include/openssl/objects.h
|
1777
|
+
- third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h
|
1778
|
+
- third_party/boringssl-with-bazel/src/include/openssl/opensslv.h
|
1779
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h
|
1780
|
+
- third_party/boringssl-with-bazel/src/include/openssl/pem.h
|
1781
|
+
- third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h
|
1782
|
+
- third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h
|
1783
|
+
- third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h
|
1784
|
+
- third_party/boringssl-with-bazel/src/include/openssl/poly1305.h
|
1785
|
+
- third_party/boringssl-with-bazel/src/include/openssl/pool.h
|
1786
|
+
- third_party/boringssl-with-bazel/src/include/openssl/rand.h
|
1787
|
+
- third_party/boringssl-with-bazel/src/include/openssl/rc4.h
|
1788
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ripemd.h
|
1789
|
+
- third_party/boringssl-with-bazel/src/include/openssl/rsa.h
|
1790
|
+
- third_party/boringssl-with-bazel/src/include/openssl/safestack.h
|
1791
|
+
- third_party/boringssl-with-bazel/src/include/openssl/sha.h
|
1792
|
+
- third_party/boringssl-with-bazel/src/include/openssl/siphash.h
|
1793
|
+
- third_party/boringssl-with-bazel/src/include/openssl/span.h
|
1794
|
+
- third_party/boringssl-with-bazel/src/include/openssl/srtp.h
|
1795
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ssl.h
|
1796
|
+
- third_party/boringssl-with-bazel/src/include/openssl/ssl3.h
|
1797
|
+
- third_party/boringssl-with-bazel/src/include/openssl/stack.h
|
1798
|
+
- third_party/boringssl-with-bazel/src/include/openssl/thread.h
|
1799
|
+
- third_party/boringssl-with-bazel/src/include/openssl/tls1.h
|
1800
|
+
- third_party/boringssl-with-bazel/src/include/openssl/trust_token.h
|
1801
|
+
- third_party/boringssl-with-bazel/src/include/openssl/type_check.h
|
1802
|
+
- third_party/boringssl-with-bazel/src/include/openssl/x509.h
|
1803
|
+
- third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h
|
1804
|
+
- third_party/boringssl-with-bazel/src/include/openssl/x509v3.h
|
1805
|
+
- third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc
|
1806
|
+
- third_party/boringssl-with-bazel/src/ssl/d1_both.cc
|
1807
|
+
- third_party/boringssl-with-bazel/src/ssl/d1_lib.cc
|
1808
|
+
- third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc
|
1809
|
+
- third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc
|
1810
|
+
- third_party/boringssl-with-bazel/src/ssl/dtls_method.cc
|
1811
|
+
- third_party/boringssl-with-bazel/src/ssl/dtls_record.cc
|
1812
|
+
- third_party/boringssl-with-bazel/src/ssl/handoff.cc
|
1813
|
+
- third_party/boringssl-with-bazel/src/ssl/handshake.cc
|
1814
|
+
- third_party/boringssl-with-bazel/src/ssl/handshake_client.cc
|
1815
|
+
- third_party/boringssl-with-bazel/src/ssl/handshake_server.cc
|
1816
|
+
- third_party/boringssl-with-bazel/src/ssl/internal.h
|
1817
|
+
- third_party/boringssl-with-bazel/src/ssl/s3_both.cc
|
1818
|
+
- third_party/boringssl-with-bazel/src/ssl/s3_lib.cc
|
1819
|
+
- third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc
|
1820
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc
|
1821
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc
|
1822
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc
|
1823
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc
|
1824
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc
|
1825
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_file.cc
|
1826
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc
|
1827
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc
|
1828
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc
|
1829
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_session.cc
|
1830
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc
|
1831
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc
|
1832
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc
|
1833
|
+
- third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc
|
1834
|
+
- third_party/boringssl-with-bazel/src/ssl/t1_enc.cc
|
1835
|
+
- third_party/boringssl-with-bazel/src/ssl/t1_lib.cc
|
1836
|
+
- third_party/boringssl-with-bazel/src/ssl/tls13_both.cc
|
1837
|
+
- third_party/boringssl-with-bazel/src/ssl/tls13_client.cc
|
1838
|
+
- third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc
|
1839
|
+
- third_party/boringssl-with-bazel/src/ssl/tls13_server.cc
|
1840
|
+
- third_party/boringssl-with-bazel/src/ssl/tls_method.cc
|
1841
|
+
- third_party/boringssl-with-bazel/src/ssl/tls_record.cc
|
1842
|
+
- third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h
|
1843
|
+
- third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h
|
1844
|
+
- third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h
|
1845
|
+
- third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h
|
1702
1846
|
- third_party/cares/ares_build.h
|
1703
1847
|
- third_party/cares/cares/ares.h
|
1704
1848
|
- third_party/cares/cares/ares__close_sockets.c
|
@@ -1833,50 +1977,51 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1833
1977
|
version: 2.3.0
|
1834
1978
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1835
1979
|
requirements:
|
1836
|
-
- - "
|
1980
|
+
- - ">="
|
1837
1981
|
- !ruby/object:Gem::Version
|
1838
|
-
version:
|
1982
|
+
version: '0'
|
1839
1983
|
requirements: []
|
1840
|
-
rubygems_version: 3.1.
|
1984
|
+
rubygems_version: 3.1.4
|
1841
1985
|
signing_key:
|
1842
1986
|
specification_version: 4
|
1843
1987
|
summary: GRPC system in Ruby
|
1844
1988
|
test_files:
|
1845
|
-
- src/ruby/spec/
|
1846
|
-
- src/ruby/spec/client_auth_spec.rb
|
1847
|
-
- src/ruby/spec/channel_credentials_spec.rb
|
1848
|
-
- src/ruby/spec/server_spec.rb
|
1849
|
-
- src/ruby/spec/time_consts_spec.rb
|
1850
|
-
- src/ruby/spec/pb/duplicate/codegen_spec.rb
|
1989
|
+
- src/ruby/spec/spec_helper.rb
|
1851
1990
|
- src/ruby/spec/pb/health/checker_spec.rb
|
1991
|
+
- src/ruby/spec/pb/duplicate/codegen_spec.rb
|
1992
|
+
- src/ruby/spec/pb/codegen/package_option_spec.rb
|
1852
1993
|
- src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto
|
1853
|
-
- src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto
|
1854
1994
|
- src/ruby/spec/pb/codegen/grpc/testing/package_options.proto
|
1855
|
-
- src/ruby/spec/pb/codegen/
|
1856
|
-
- src/ruby/spec/testdata/client.pem
|
1857
|
-
- src/ruby/spec/testdata/ca.pem
|
1858
|
-
- src/ruby/spec/testdata/server1.key
|
1859
|
-
- src/ruby/spec/testdata/server1.pem
|
1860
|
-
- src/ruby/spec/testdata/README
|
1861
|
-
- src/ruby/spec/testdata/client.key
|
1862
|
-
- src/ruby/spec/channel_spec.rb
|
1995
|
+
- src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto
|
1863
1996
|
- src/ruby/spec/errors_spec.rb
|
1864
|
-
- src/ruby/spec/
|
1865
|
-
- src/ruby/spec/
|
1997
|
+
- src/ruby/spec/call_spec.rb
|
1998
|
+
- src/ruby/spec/compression_options_spec.rb
|
1999
|
+
- src/ruby/spec/server_credentials_spec.rb
|
1866
2000
|
- src/ruby/spec/call_credentials_spec.rb
|
1867
2001
|
- src/ruby/spec/client_server_spec.rb
|
1868
|
-
- src/ruby/spec/
|
1869
|
-
- src/ruby/spec/
|
1870
|
-
- src/ruby/spec/
|
1871
|
-
- src/ruby/spec/generic/rpc_server_pool_spec.rb
|
1872
|
-
- src/ruby/spec/generic/client_interceptors_spec.rb
|
2002
|
+
- src/ruby/spec/error_sanity_spec.rb
|
2003
|
+
- src/ruby/spec/channel_spec.rb
|
2004
|
+
- src/ruby/spec/server_spec.rb
|
1873
2005
|
- src/ruby/spec/generic/client_stub_spec.rb
|
1874
2006
|
- src/ruby/spec/generic/rpc_server_spec.rb
|
1875
|
-
- src/ruby/spec/generic/
|
2007
|
+
- src/ruby/spec/generic/active_call_spec.rb
|
2008
|
+
- src/ruby/spec/generic/rpc_server_pool_spec.rb
|
2009
|
+
- src/ruby/spec/generic/client_interceptors_spec.rb
|
2010
|
+
- src/ruby/spec/generic/rpc_desc_spec.rb
|
1876
2011
|
- src/ruby/spec/generic/interceptor_registry_spec.rb
|
2012
|
+
- src/ruby/spec/generic/service_spec.rb
|
1877
2013
|
- src/ruby/spec/generic/server_interceptors_spec.rb
|
1878
|
-
- src/ruby/spec/
|
1879
|
-
- src/ruby/spec/
|
2014
|
+
- src/ruby/spec/testdata/client.key
|
2015
|
+
- src/ruby/spec/testdata/client.pem
|
2016
|
+
- src/ruby/spec/testdata/ca.pem
|
2017
|
+
- src/ruby/spec/testdata/server1.key
|
2018
|
+
- src/ruby/spec/testdata/server1.pem
|
2019
|
+
- src/ruby/spec/testdata/README
|
2020
|
+
- src/ruby/spec/support/helpers.rb
|
2021
|
+
- src/ruby/spec/support/services.rb
|
2022
|
+
- src/ruby/spec/debug_message_spec.rb
|
2023
|
+
- src/ruby/spec/google_rpc_status_utils_spec.rb
|
2024
|
+
- src/ruby/spec/time_consts_spec.rb
|
2025
|
+
- src/ruby/spec/channel_credentials_spec.rb
|
1880
2026
|
- src/ruby/spec/channel_connection_spec.rb
|
1881
|
-
- src/ruby/spec/
|
1882
|
-
- src/ruby/spec/error_sanity_spec.rb
|
2027
|
+
- src/ruby/spec/client_auth_spec.rb
|