grpc 1.69.0 → 1.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +249 -283
- data/include/grpc/event_engine/endpoint_config.h +5 -5
- data/include/grpc/event_engine/event_engine.h +44 -5
- data/include/grpc/status.h +1 -1
- data/include/grpc/support/atm.h +0 -13
- data/include/grpc/support/json.h +16 -16
- data/src/core/call/request_buffer.cc +224 -0
- data/src/core/call/request_buffer.h +192 -0
- data/src/core/channelz/channelz.cc +2 -2
- data/src/core/channelz/channelz.h +3 -22
- data/src/core/channelz/channelz_registry.cc +0 -7
- data/src/core/client_channel/client_channel.cc +18 -29
- data/src/core/client_channel/client_channel.h +2 -2
- data/src/core/client_channel/client_channel_args.h +21 -0
- data/src/core/client_channel/client_channel_filter.cc +54 -131
- data/src/core/client_channel/client_channel_filter.h +11 -9
- data/src/core/client_channel/client_channel_plugin.cc +2 -1
- data/src/core/client_channel/client_channel_service_config.cc +1 -1
- data/src/core/client_channel/client_channel_service_config.h +5 -5
- data/src/core/client_channel/direct_channel.cc +1 -1
- data/src/core/client_channel/direct_channel.h +1 -1
- data/src/core/client_channel/lb_metadata.cc +7 -8
- data/src/core/client_channel/lb_metadata.h +3 -3
- data/src/core/client_channel/load_balanced_call_destination.cc +4 -4
- data/src/core/client_channel/retry_filter.cc +1 -1
- data/src/core/client_channel/retry_filter.h +1 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +10 -12
- data/src/core/client_channel/retry_filter_legacy_call_data.h +7 -7
- data/src/core/client_channel/retry_interceptor.cc +408 -0
- data/src/core/client_channel/retry_interceptor.h +157 -0
- data/src/core/client_channel/retry_service_config.cc +1 -1
- data/src/core/client_channel/retry_service_config.h +16 -3
- data/src/core/client_channel/retry_throttle.cc +33 -18
- data/src/core/client_channel/retry_throttle.h +3 -3
- data/src/core/client_channel/subchannel.cc +43 -76
- data/src/core/client_channel/subchannel.h +4 -4
- data/src/core/client_channel/subchannel_stream_client.cc +0 -1
- data/src/core/client_channel/subchannel_stream_client.h +3 -3
- data/src/core/config/config_vars.cc +1 -0
- data/src/core/config/config_vars.h +1 -0
- data/src/core/config/load_config.cc +3 -2
- data/src/core/config/load_config.h +1 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +4 -11
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +7 -7
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +1 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +8 -15
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +6 -6
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +0 -7
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +6 -6
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +1 -1
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -6
- data/src/core/ext/filters/http/client/http_client_filter.h +4 -4
- data/src/core/ext/filters/http/client_authority_filter.cc +6 -11
- data/src/core/ext/filters/http/client_authority_filter.h +6 -6
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +18 -22
- data/src/core/ext/filters/http/message_compress/compression_filter.h +18 -13
- data/src/core/ext/filters/http/server/http_server_filter.cc +3 -8
- data/src/core/ext/filters/http/server/http_server_filter.h +4 -4
- data/src/core/ext/filters/message_size/message_size_filter.cc +13 -25
- data/src/core/ext/filters/message_size/message_size_filter.h +20 -21
- data/src/core/ext/filters/rbac/rbac_filter.cc +0 -7
- data/src/core/ext/filters/rbac/rbac_filter.h +6 -6
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +3 -3
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +1 -6
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +4 -4
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +1 -1
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +2 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -2
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +4 -3
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +612 -100
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +189 -13
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +4 -4
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +85 -59
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +7 -7
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/flow_control.h +3 -3
- data/src/core/ext/transport/chttp2/transport/frame.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/frame.h +5 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +8 -8
- data/src/core/ext/transport/chttp2/transport/frame_security.cc +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +32 -31
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +6 -7
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +19 -8
- data/src/core/ext/transport/chttp2/transport/parsing.cc +14 -14
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +2 -2
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +2 -2
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/writing.cc +16 -22
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -3
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +15 -10
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +16 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +3 -2
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +66 -36
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +19 -17
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +116 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +31 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +97 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h +151 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c +60 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +228 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +65 -17
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +6 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +7 -106
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +7 -28
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +0 -2
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +85 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +25 -3
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +152 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +40 -10
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +253 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +70 -13
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +4 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +0 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +16 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +3 -2
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +60 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +13 -2
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +102 -24
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +28 -19
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +37 -7
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +7 -5
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +251 -18
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +41 -16
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb.h +142 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +33 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +7 -4
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +11 -10
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +6 -4
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +418 -413
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +161 -153
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +270 -261
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +29 -19
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +15 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +58 -65
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +0 -5
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +73 -63
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +49 -48
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +117 -100
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +917 -898
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +15 -18
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +33 -33
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +460 -457
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +16 -19
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +95 -95
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +202 -191
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +19 -17
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +148 -135
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +23 -22
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +41 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +26 -19
- data/src/core/filter/blackboard.cc +2 -2
- data/src/core/filter/filter_args.h +112 -0
- data/src/core/handshaker/handshaker.cc +0 -3
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +4 -6
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +31 -32
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +4 -4
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +5 -5
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +5 -5
- data/src/core/handshaker/proxy_mapper.h +4 -4
- data/src/core/handshaker/proxy_mapper_registry.cc +5 -6
- data/src/core/handshaker/proxy_mapper_registry.h +4 -4
- data/src/core/handshaker/security/secure_endpoint.cc +2 -2
- data/src/core/handshaker/security/security_handshaker.cc +3 -5
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +6 -4
- data/src/core/lib/channel/channel_args.cc +13 -13
- data/src/core/lib/channel/channel_args.h +8 -8
- data/src/core/lib/channel/connected_channel.cc +1 -1
- data/src/core/lib/channel/promise_based_filter.cc +9 -9
- data/src/core/lib/channel/promise_based_filter.h +84 -159
- data/src/core/lib/compression/compression.cc +3 -2
- data/src/core/lib/compression/compression_internal.cc +9 -9
- data/src/core/lib/compression/compression_internal.h +3 -3
- data/src/core/lib/debug/trace_flags.cc +5 -2
- data/src/core/lib/debug/trace_flags.h +2 -1
- data/src/core/lib/event_engine/ares_resolver.cc +9 -11
- data/src/core/lib/event_engine/ares_resolver.h +6 -10
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -4
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +2 -4
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +6 -7
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +2 -4
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +2 -4
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +3 -7
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +2 -4
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +5 -7
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +6 -7
- data/src/core/lib/event_engine/common_closures.h +2 -4
- data/src/core/lib/event_engine/default_event_engine.cc +62 -33
- data/src/core/lib/event_engine/default_event_engine.h +24 -33
- data/src/core/lib/event_engine/default_event_engine_factory.cc +6 -12
- data/src/core/lib/event_engine/default_event_engine_factory.h +2 -4
- data/src/core/lib/event_engine/event_engine.cc +2 -4
- data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -4
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +2 -4
- data/src/core/lib/event_engine/extensions/supports_fd.h +2 -4
- data/src/core/lib/event_engine/extensions/tcp_trace.h +2 -4
- data/src/core/lib/event_engine/forkable.cc +2 -4
- data/src/core/lib/event_engine/forkable.h +2 -4
- data/src/core/lib/event_engine/grpc_polled_fd.h +2 -4
- data/src/core/lib/event_engine/handle_containers.h +2 -4
- data/src/core/lib/event_engine/memory_allocator_factory.h +2 -4
- data/src/core/lib/event_engine/poller.h +2 -4
- data/src/core/lib/event_engine/posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +4 -50
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +2 -4
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -51
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/event_poller.h +2 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -4
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +2 -4
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -4
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +20 -10
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +2 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +9 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +2 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +2 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +3 -5
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +2 -4
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +2 -4
- data/src/core/lib/event_engine/posix_engine/timer.cc +4 -6
- data/src/core/lib/event_engine/posix_engine/timer.h +4 -6
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -4
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +5 -7
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +4 -6
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +4 -8
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +24 -25
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -4
- data/src/core/lib/event_engine/query_extensions.h +2 -4
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -4
- data/src/core/lib/event_engine/resolved_address.cc +2 -4
- data/src/core/lib/event_engine/resolved_address_internal.h +2 -4
- data/src/core/lib/event_engine/shim.cc +2 -4
- data/src/core/lib/event_engine/shim.h +2 -4
- data/src/core/lib/event_engine/slice.cc +2 -4
- data/src/core/lib/event_engine/slice_buffer.cc +2 -4
- data/src/core/lib/event_engine/tcp_socket_utils.cc +6 -8
- data/src/core/lib/event_engine/tcp_socket_utils.h +5 -7
- data/src/core/lib/event_engine/thread_local.cc +2 -4
- data/src/core/lib/event_engine/thread_local.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -18
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -4
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +3 -5
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +2 -4
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +2 -4
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +2 -4
- data/src/core/lib/event_engine/time_util.cc +2 -4
- data/src/core/lib/event_engine/time_util.h +2 -4
- data/src/core/lib/event_engine/utils.cc +2 -4
- data/src/core/lib/event_engine/utils.h +2 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +2 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +2 -4
- data/src/core/lib/event_engine/windows/iocp.cc +2 -4
- data/src/core/lib/event_engine/windows/iocp.h +2 -4
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +2 -4
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +2 -4
- data/src/core/lib/event_engine/windows/win_socket.cc +2 -4
- data/src/core/lib/event_engine/windows/win_socket.h +2 -4
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +2 -4
- data/src/core/lib/event_engine/windows/windows_endpoint.h +4 -6
- data/src/core/lib/event_engine/windows/windows_engine.cc +3 -4
- data/src/core/lib/event_engine/windows/windows_engine.h +2 -4
- data/src/core/lib/event_engine/windows/windows_listener.cc +2 -4
- data/src/core/lib/event_engine/windows/windows_listener.h +2 -4
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -4
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -4
- data/src/core/lib/event_engine/work_queue/work_queue.h +2 -4
- data/src/core/lib/experiments/experiments.cc +147 -207
- data/src/core/lib/experiments/experiments.h +79 -96
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/cfstream_handle.cc +0 -2
- data/src/core/lib/iomgr/closure.h +1 -4
- data/src/core/lib/iomgr/combiner.cc +0 -1
- data/src/core/lib/iomgr/error.cc +2 -2
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +0 -1
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +1 -3
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +0 -1
- data/src/core/lib/iomgr/exec_ctx.cc +1 -7
- data/src/core/lib/iomgr/exec_ctx.h +1 -132
- data/src/core/lib/iomgr/executor.cc +0 -11
- data/src/core/lib/iomgr/resolve_address_posix.cc +0 -2
- data/src/core/lib/iomgr/resolve_address_windows.cc +0 -2
- data/src/core/lib/iomgr/socket_utils_posix.cc +3 -2
- data/src/core/lib/iomgr/tcp_posix.cc +3 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +1 -3
- data/src/core/lib/iomgr/tcp_server_windows.cc +0 -1
- data/src/core/lib/iomgr/timer_manager.cc +1 -9
- data/src/core/lib/promise/activity.cc +2 -0
- data/src/core/lib/promise/activity.h +33 -12
- data/src/core/lib/promise/detail/join_state.h +16 -68
- data/src/core/lib/promise/detail/promise_factory.h +85 -25
- data/src/core/lib/promise/detail/promise_like.h +16 -19
- data/src/core/lib/promise/detail/seq_state.h +102 -315
- data/src/core/lib/promise/for_each.h +14 -5
- data/src/core/lib/promise/if.h +48 -20
- data/src/core/lib/promise/interceptor_list.h +9 -9
- data/src/core/lib/promise/latch.h +14 -6
- data/src/core/lib/promise/loop.h +58 -18
- data/src/core/lib/promise/map.h +145 -49
- data/src/core/lib/promise/party.cc +84 -15
- data/src/core/lib/promise/party.h +229 -32
- data/src/core/lib/promise/pipe.h +12 -12
- data/src/core/lib/promise/poll.h +8 -5
- data/src/core/lib/promise/prioritized_race.h +16 -22
- data/src/core/lib/promise/promise.h +2 -3
- data/src/core/lib/promise/race.h +4 -12
- data/src/core/lib/promise/seq.h +41 -6
- data/src/core/lib/promise/sleep.cc +3 -3
- data/src/core/lib/promise/sleep.h +15 -1
- data/src/core/lib/promise/status_flag.h +19 -3
- data/src/core/lib/promise/try_join.h +119 -5
- data/src/core/lib/promise/try_seq.h +39 -12
- data/src/core/lib/resource_quota/arena.h +87 -0
- data/src/core/lib/resource_quota/connection_quota.h +4 -0
- data/src/core/lib/resource_quota/memory_quota.cc +53 -49
- data/src/core/lib/resource_quota/memory_quota.h +4 -4
- data/src/core/lib/security/authorization/evaluate_args.cc +3 -3
- data/src/core/lib/security/authorization/evaluate_args.h +3 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +0 -7
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +6 -6
- data/src/core/lib/security/authorization/matchers.h +3 -3
- data/src/core/lib/security/authorization/rbac_policy.cc +1 -1
- data/src/core/lib/security/authorization/rbac_policy.h +3 -3
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +1 -2
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +1 -3
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -1
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +1 -1
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -2
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +1 -1
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +1 -2
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +0 -1
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +4 -4
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +3 -3
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +0 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +2 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +12 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +14 -14
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +23 -15
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +3 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +1 -2
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -2
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +4 -5
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +4 -4
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +2 -1
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +3 -3
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +9 -9
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +13 -13
- data/src/core/lib/security/transport/auth_filters.h +95 -7
- data/src/core/lib/security/transport/client_auth_filter.cc +96 -6
- data/src/core/lib/security/transport/server_auth_filter.cc +0 -8
- data/src/core/lib/slice/slice_buffer.cc +2 -2
- data/src/core/lib/slice/slice_buffer.h +2 -2
- data/src/core/lib/surface/call.cc +0 -4
- data/src/core/lib/surface/call.h +4 -3
- data/src/core/lib/surface/call_utils.cc +2 -2
- data/src/core/lib/surface/call_utils.h +10 -4
- data/src/core/lib/surface/channel.cc +6 -14
- data/src/core/lib/surface/channel.h +3 -3
- data/src/core/lib/surface/channel_init.cc +1 -1
- data/src/core/lib/surface/client_call.cc +56 -41
- data/src/core/lib/surface/client_call.h +7 -2
- data/src/core/lib/surface/completion_queue.cc +10 -49
- data/src/core/lib/surface/event_string.cc +7 -1
- data/src/core/lib/surface/filter_stack_call.cc +2 -4
- data/src/core/lib/surface/filter_stack_call.h +1 -1
- data/src/core/lib/surface/init.cc +17 -12
- data/src/core/lib/surface/init_internally.h +13 -2
- data/src/core/lib/surface/legacy_channel.cc +10 -8
- data/src/core/lib/surface/legacy_channel.h +2 -2
- data/src/core/lib/surface/server_call.cc +116 -84
- data/src/core/lib/surface/server_call.h +2 -0
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/call_filters.cc +10 -4
- data/src/core/lib/transport/call_filters.h +108 -59
- data/src/core/lib/transport/call_spine.cc +12 -49
- data/src/core/lib/transport/call_spine.h +174 -7
- data/src/core/lib/transport/call_state.h +140 -47
- data/src/core/lib/transport/connectivity_state.cc +8 -9
- data/src/core/lib/transport/connectivity_state.h +2 -4
- data/src/core/lib/transport/http2_errors.h +5 -3
- data/src/core/lib/transport/interception_chain.cc +8 -0
- data/src/core/lib/transport/interception_chain.h +36 -7
- data/src/core/lib/transport/metadata.h +88 -0
- data/src/core/lib/transport/metadata_batch.cc +2 -2
- data/src/core/lib/transport/metadata_batch.h +79 -18
- data/src/core/lib/transport/timeout_encoding.cc +15 -15
- data/src/core/lib/transport/timeout_encoding.h +3 -2
- data/src/core/lib/transport/transport.cc +0 -1
- data/src/core/lib/transport/transport.h +12 -7
- data/src/core/load_balancing/backend_metric_parser.cc +21 -28
- data/src/core/load_balancing/endpoint_list.cc +11 -1
- data/src/core/load_balancing/endpoint_list.h +20 -13
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +1 -6
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +4 -4
- data/src/core/load_balancing/grpclb/grpclb.cc +21 -38
- data/src/core/load_balancing/health_check_client.cc +16 -48
- data/src/core/load_balancing/health_check_client_internal.h +7 -7
- data/src/core/load_balancing/lb_policy.cc +4 -6
- data/src/core/load_balancing/lb_policy.h +4 -12
- data/src/core/load_balancing/lb_policy_registry.cc +10 -8
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +57 -68
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +4 -3
- data/src/core/load_balancing/pick_first/pick_first.cc +110 -77
- data/src/core/load_balancing/priority/priority.cc +8 -13
- data/src/core/load_balancing/ring_hash/ring_hash.cc +210 -158
- data/src/core/load_balancing/ring_hash/ring_hash.h +4 -11
- data/src/core/load_balancing/rls/rls.cc +105 -194
- data/src/core/load_balancing/rls/rls.h +97 -1
- data/src/core/load_balancing/round_robin/round_robin.cc +14 -19
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +4 -4
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +2 -2
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +20 -29
- data/src/core/load_balancing/weighted_target/weighted_target.cc +7 -15
- data/src/core/load_balancing/xds/cds.cc +11 -15
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +15 -18
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +10 -18
- data/src/core/load_balancing/xds/xds_override_host.cc +45 -92
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +10 -12
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +11 -11
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +10 -15
- data/src/core/resolver/dns/native/dns_resolver.cc +1 -1
- data/src/core/resolver/fake/fake_resolver.cc +10 -11
- data/src/core/resolver/fake/fake_resolver.h +2 -2
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +9 -12
- data/src/core/resolver/polling_resolver.cc +2 -5
- data/src/core/resolver/polling_resolver.h +3 -3
- data/src/core/resolver/resolver_registry.cc +4 -3
- data/src/core/resolver/xds/xds_config.cc +6 -6
- data/src/core/resolver/xds/xds_config.h +2 -2
- data/src/core/resolver/xds/xds_dependency_manager.cc +190 -183
- data/src/core/resolver/xds/xds_dependency_manager.h +28 -18
- data/src/core/resolver/xds/xds_resolver.cc +81 -122
- data/src/core/server/server.cc +353 -95
- data/src/core/server/server.h +214 -65
- data/src/core/server/server_call_tracer_filter.cc +3 -7
- data/src/core/server/server_config_selector_filter.cc +8 -15
- data/src/core/server/xds_server_config_fetcher.cc +93 -159
- data/src/core/service_config/service_config_channel_arg_filter.cc +7 -19
- data/src/core/service_config/service_config_impl.cc +3 -3
- data/src/core/telemetry/call_tracer.cc +8 -8
- data/src/core/telemetry/call_tracer.h +6 -5
- data/src/core/telemetry/metrics.cc +3 -3
- data/src/core/telemetry/metrics.h +2 -8
- data/src/core/telemetry/tcp_tracer.h +32 -32
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +3 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +14 -14
- data/src/core/tsi/fake_transport_security.cc +5 -0
- data/src/core/util/backoff.cc +15 -4
- data/src/core/util/dump_args.h +1 -9
- data/src/core/util/env.h +3 -4
- data/src/core/util/examine_stack.cc +2 -2
- data/src/core/util/examine_stack.h +3 -4
- data/src/core/util/gpr_time.cc +0 -2
- data/src/core/util/http_client/httpcli.cc +69 -22
- data/src/core/util/http_client/httpcli.h +18 -8
- data/src/core/util/http_client/httpcli_security_connector.cc +2 -2
- data/src/core/util/json/json_channel_args.h +2 -1
- data/src/core/util/json/json_object_loader.cc +4 -4
- data/src/core/util/json/json_object_loader.h +12 -12
- data/src/core/util/json/json_reader.cc +4 -4
- data/src/core/util/json/json_writer.cc +3 -3
- data/src/core/util/latent_see.cc +3 -3
- data/src/core/util/latent_see.h +2 -2
- data/src/core/util/linux/env.cc +3 -4
- data/src/core/util/lru_cache.h +4 -4
- data/src/core/util/match.h +7 -7
- data/src/core/util/matchers.cc +1 -2
- data/src/core/util/matchers.h +7 -12
- data/src/core/util/posix/env.cc +2 -2
- data/src/core/util/posix/sync.cc +0 -1
- data/src/core/util/posix/time.cc +0 -1
- data/src/core/util/ref_counted.h +1 -0
- data/src/core/util/ref_counted_ptr.h +1 -1
- data/src/core/util/ring_buffer.h +4 -5
- data/src/core/util/status_helper.cc +16 -20
- data/src/core/util/status_helper.h +5 -5
- data/src/core/util/sync_abseil.cc +0 -1
- data/src/core/util/table.h +6 -21
- data/src/core/util/time.cc +1 -1
- data/src/core/util/time.h +3 -3
- data/src/core/util/time_precise.cc +0 -1
- data/src/core/util/type_list.h +56 -0
- data/src/core/util/uri.cc +6 -4
- data/src/core/util/uri.h +7 -0
- data/src/core/util/useful.h +13 -15
- data/src/core/util/validation_errors.cc +5 -5
- data/src/core/util/wait_for_single_owner.h +62 -0
- data/src/core/util/windows/env.cc +3 -3
- data/src/core/util/windows/sync.cc +0 -1
- data/src/core/util/windows/time.cc +0 -1
- data/src/core/util/work_serializer.cc +27 -267
- data/src/core/util/work_serializer.h +3 -27
- data/src/core/xds/grpc/certificate_provider_store.cc +12 -17
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +2 -2
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +1 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +11 -14
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +2 -2
- data/src/core/xds/grpc/xds_certificate_provider.cc +15 -15
- data/src/core/xds/grpc/xds_client_grpc.cc +7 -8
- data/src/core/xds/grpc/xds_cluster.h +4 -4
- data/src/core/xds/grpc/xds_cluster_parser.cc +26 -26
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +4 -4
- data/src/core/xds/grpc/xds_common_types.cc +2 -2
- data/src/core/xds/grpc/xds_common_types.h +4 -4
- data/src/core/xds/grpc/xds_common_types_parser.cc +29 -31
- data/src/core/xds/grpc/xds_common_types_parser.h +8 -7
- data/src/core/xds/grpc/xds_endpoint.cc +3 -4
- data/src/core/xds/grpc/xds_endpoint_parser.cc +68 -37
- data/src/core/xds/grpc/xds_health_status.cc +4 -4
- data/src/core/xds/grpc/xds_health_status.h +4 -3
- data/src/core/xds/grpc/xds_http_fault_filter.cc +18 -20
- data/src/core/xds/grpc/xds_http_fault_filter.h +4 -3
- data/src/core/xds/grpc/xds_http_filter.h +3 -3
- data/src/core/xds/grpc/xds_http_filter_registry.cc +7 -7
- data/src/core/xds/grpc/xds_http_filter_registry.h +3 -3
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +7 -7
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +4 -3
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +30 -23
- data/src/core/xds/grpc/xds_http_rbac_filter.h +4 -3
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +10 -10
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +4 -3
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +4 -4
- data/src/core/xds/grpc/xds_listener.cc +4 -6
- data/src/core/xds/grpc/xds_listener.h +10 -10
- data/src/core/xds/grpc/xds_listener_parser.cc +58 -51
- data/src/core/xds/grpc/xds_listener_parser.h +2 -1
- data/src/core/xds/grpc/xds_metadata.cc +5 -5
- data/src/core/xds/grpc/xds_metadata.h +8 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +65 -52
- data/src/core/xds/grpc/xds_route_config.cc +9 -15
- data/src/core/xds/grpc/xds_route_config.h +9 -9
- data/src/core/xds/grpc/xds_route_config_parser.cc +114 -116
- data/src/core/xds/grpc/xds_route_config_parser.h +4 -4
- data/src/core/xds/grpc/xds_routing.cc +6 -6
- data/src/core/xds/grpc/xds_routing.h +5 -5
- data/src/core/xds/grpc/xds_server_grpc.cc +22 -1
- data/src/core/xds/grpc/xds_server_grpc.h +5 -2
- data/src/core/xds/grpc/xds_server_grpc_interface.h +33 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +5 -6
- data/src/core/xds/xds_client/lrs_client.cc +71 -83
- data/src/core/xds/xds_client/lrs_client.h +8 -8
- data/src/core/xds/xds_client/xds_api.cc +5 -228
- data/src/core/xds/xds_client/xds_api.h +1 -133
- data/src/core/xds/xds_client/xds_bootstrap.cc +11 -1
- data/src/core/xds/xds_client/xds_bootstrap.h +7 -0
- data/src/core/xds/xds_client/xds_client.cc +1030 -704
- data/src/core/xds/xds_client/xds_client.h +135 -29
- data/src/core/xds/xds_client/xds_resource_type.h +2 -3
- data/src/core/xds/xds_client/xds_resource_type_impl.h +13 -8
- data/src/ruby/ext/grpc/extconf.rb +1 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_bitstr.c → a_bitstr.cc} +16 -57
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc +47 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_int.c → a_int.cc} +15 -56
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_mbstr.c → a_mbstr.cc} +22 -62
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_object.c → a_object.cc} +14 -56
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.cc +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_strex.c → a_strex.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_strnid.c → a_strnid.cc} +20 -59
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_time.c → a_time.cc} +41 -76
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{a_type.c → a_type.cc} +17 -59
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.cc +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{asn1_lib.c → asn1_lib.cc} +17 -59
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.cc +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.cc +63 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +13 -57
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{posix_time.c → posix_time.cc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{tasn_dec.c → tasn_dec.cc} +17 -58
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{tasn_enc.c → tasn_enc.cc} +22 -61
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc +164 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{tasn_new.c → tasn_new.cc} +20 -61
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +84 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/{tasn_utl.c → tasn_utl.cc} +26 -65
- data/third_party/boringssl-with-bazel/src/crypto/base64/{base64.c → base64.cc} +22 -67
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +19 -13
- data/third_party/boringssl-with-bazel/src/crypto/bio/{bio.c → bio.cc} +45 -113
- data/third_party/boringssl-with-bazel/src/crypto/bio/{bio_mem.c → bio_mem.cc} +21 -62
- data/third_party/boringssl-with-bazel/src/crypto/bio/{connect.c → connect.cc} +40 -73
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.cc +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/{fd.c → fd.cc} +14 -56
- data/third_party/boringssl-with-bazel/src/crypto/bio/{file.c → file.cc} +17 -59
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.cc +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/bio/{pair.c → pair.cc} +37 -71
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.cc +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/{socket_helper.c → socket_helper.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/blake2/{blake2.c → blake2.cc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/{bn_extra/bn_asn1.c → bn/bn_asn1.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{bn_extra/convert.c → bn/convert.cc} +34 -76
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.cc +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/{ber.c → ber.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/{cbb.c → cbb.cc} +45 -61
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/{cbs.c → cbs.cc} +42 -41
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/{unicode.c → unicode.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/chacha/{chacha.c → chacha.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +18 -18
- data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra/e_aesctrhmac.c → cipher/e_aesctrhmac.cc} +18 -23
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra/e_aesgcmsiv.c → cipher/e_aesgcmsiv.cc} +42 -38
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra/e_chacha20poly1305.c → cipher/e_chacha20poly1305.cc} +13 -20
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_des.cc +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_null.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra/e_rc2.c → cipher/e_rc2.cc} +50 -88
- data/third_party/boringssl-with-bazel/src/crypto/cipher/e_rc4.cc +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra/e_tls.c → cipher/e_tls.cc} +14 -13
- data/third_party/boringssl-with-bazel/src/crypto/cipher/get_cipher.cc +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra → cipher}/internal.h +29 -69
- data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra/tls_cbc.c → cipher/tls_cbc.cc} +13 -51
- data/third_party/boringssl-with-bazel/src/crypto/conf/{conf.c → conf.cc} +31 -72
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_apple.c → cpu_aarch64_apple.cc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_fuchsia.c → cpu_aarch64_fuchsia.cc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_linux.c → cpu_aarch64_linux.cc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_openbsd.c → cpu_aarch64_openbsd.cc} +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_sysreg.c → cpu_aarch64_sysreg.cc} +15 -14
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_arm_freebsd.c → cpu_arm_freebsd.cc} +15 -15
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_arm_linux.c → cpu_arm_linux.cc} +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{cpu_intel.c → cpu_intel.cc} +60 -99
- data/third_party/boringssl-with-bazel/src/crypto/{crypto.c → crypto.cc} +18 -23
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/{curve25519.c → curve25519.cc} +40 -43
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/{spake25519.c → spake25519.cc} +34 -28
- data/third_party/boringssl-with-bazel/src/crypto/des/{des.c → des.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +27 -69
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +124 -0
- data/third_party/boringssl-with-bazel/src/crypto/{dh_extra/params.c → dh/params.cc} +13 -51
- data/third_party/boringssl-with-bazel/src/crypto/{digest_extra/digest_extra.c → digest/digest_extra.cc} +126 -86
- data/third_party/boringssl-with-bazel/src/crypto/dsa/{dsa.c → dsa.cc} +166 -212
- data/third_party/boringssl-with-bazel/src/crypto/dsa/{dsa_asn1.c → dsa_asn1.cc} +13 -53
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +13 -15
- data/third_party/boringssl-with-bazel/src/crypto/{ec_extra/ec_asn1.c → ec/ec_asn1.cc} +59 -61
- data/third_party/boringssl-with-bazel/src/crypto/{ec_extra/ec_derive.c → ec/ec_derive.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{ec_extra/hash_to_curve.c → ec/hash_to_curve.cc} +79 -77
- data/third_party/boringssl-with-bazel/src/crypto/{ec_extra → ec}/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/ecdh/ecdh.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/{ecdsa_extra/ecdsa_asn1.c → ecdsa/ecdsa_asn1.cc} +32 -86
- data/third_party/boringssl-with-bazel/src/crypto/engine/{engine.c → engine.cc} +24 -20
- data/third_party/boringssl-with-bazel/src/crypto/err/{err.c → err.cc} +41 -134
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/{evp.c → evp.cc} +37 -88
- data/third_party/boringssl-with-bazel/src/crypto/evp/{evp_asn1.c → evp_asn1.cc} +122 -198
- data/third_party/boringssl-with-bazel/src/crypto/evp/{evp_ctx.c → evp_ctx.cc} +20 -63
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_dh.c → p_dh.cc} +38 -22
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_dh_asn1.c → p_dh_asn1.cc} +51 -29
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_dsa_asn1.c → p_dsa_asn1.cc} +75 -134
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_ec.c → p_ec.cc} +31 -75
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_ec_asn1.c → p_ec_asn1.cc} +36 -82
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_ed25519.c → p_ed25519.cc} +34 -31
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_ed25519_asn1.c → p_ed25519_asn1.cc} +26 -25
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_hkdf.c → p_hkdf.cc} +30 -26
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_rsa.c → p_rsa.cc} +54 -91
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_rsa_asn1.c → p_rsa_asn1.cc} +26 -69
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_x25519.c → p_x25519.cc} +34 -31
- data/third_party/boringssl-with-bazel/src/crypto/evp/{p_x25519_asn1.c → p_x25519_asn1.cc} +30 -29
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/{print.c → print.cc} +17 -56
- data/third_party/boringssl-with-bazel/src/crypto/evp/{scrypt.c → scrypt.cc} +20 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.cc +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +191 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c.inc → aes_nohw.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/{modes/cbc.c.inc → aes/cbc.cc.inc} +13 -47
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/{modes/cfb.c.inc → aes/cfb.cc.inc} +13 -47
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ctr.cc.inc +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/{modes/gcm.c.inc → aes/gcm.cc.inc} +175 -314
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/{modes/gcm_nohw.c.inc → aes/gcm_nohw.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +419 -70
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c.inc → key_wrap.cc.inc} +14 -48
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +84 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ofb.cc.inc +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/{modes/polyval.c.inc → aes/polyval.cc.inc} +14 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/{bcm.c → bcm.cc} +116 -113
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +665 -25
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c.inc → add.cc.inc} +14 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c.inc → x86_64-gcc.cc.inc} +19 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c.inc → bn.cc.inc} +25 -79
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c.inc → bytes.cc.inc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c.inc → cmp.cc.inc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c.inc → ctx.cc.inc} +20 -63
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c.inc → div.cc.inc} +42 -93
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c.inc → div_extra.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c.inc → exponentiation.cc.inc} +38 -131
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c.inc → gcd.cc.inc} +16 -113
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c.inc → gcd_extra.cc.inc} +45 -37
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c.inc → generic.cc.inc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +25 -134
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c.inc → montgomery.cc.inc} +24 -126
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c.inc → montgomery_inv.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c.inc → mul.cc.inc} +24 -70
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c.inc → prime.cc.inc} +44 -141
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c.inc → random.cc.inc} +13 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c.inc → rsaz_exp.cc.inc} +18 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +20 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c.inc → shift.cc.inc} +16 -59
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c.inc → sqrt.cc.inc} +13 -53
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c.inc → aead.cc.inc} +30 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c.inc → cipher.cc.inc} +20 -65
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c.inc → e_aes.cc.inc} +113 -335
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c.inc → e_aesccm.cc.inc} +21 -58
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +14 -65
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c.inc → cmac.cc.inc} +19 -53
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +26 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c.inc → check.cc.inc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c.inc → dh.cc.inc} +28 -74
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +13 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c.inc → digest.cc.inc} +30 -68
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc +178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +13 -47
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c.inc → digestsign.cc.inc} +14 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +91 -91
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c.inc → ec.cc.inc} +24 -81
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c.inc → ec_key.cc.inc} +26 -86
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c.inc → ec_montgomery.cc.inc} +14 -66
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c.inc → felem.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +19 -66
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c.inc → oct.cc.inc} +19 -72
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c.inc → p224-64.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h +15 -10
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c.inc → p256-nistz.cc.inc} +37 -30
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +22 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c.inc → p256.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c.inc → scalar.cc.inc} +21 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c.inc → simple.cc.inc} +14 -66
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c.inc → simple_mul.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c.inc → util.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c.inc → wnaf.cc.inc} +38 -81
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c.inc → ecdsa.cc.inc} +19 -58
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c.inc → hkdf.cc.inc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c.inc → hmac.cc.inc} +16 -57
- data/third_party/boringssl-with-bazel/src/crypto/{keccak → fipsmodule/keccak}/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{keccak/keccak.c → fipsmodule/keccak/keccak.cc.inc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +1993 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +1165 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c.inc → ctrdrbg.cc.inc} +22 -28
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +18 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c.inc → rand.cc.inc} +34 -30
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc +147 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +13 -56
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c.inc → padding.cc.inc} +32 -73
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c.inc → rsa.cc.inc} +93 -148
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c.inc → rsa_impl.cc.inc} +82 -137
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c.inc → fips.cc.inc} +26 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c.inc → self_check.cc.inc} +68 -64
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +34 -34
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c.inc → service_indicator.cc.inc} +23 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +43 -57
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c.inc → sha1.cc.inc} +39 -88
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c.inc → sha256.cc.inc} +50 -110
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c.inc → sha512.cc.inc} +61 -131
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/address.h +119 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.cc.inc +169 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.cc.inc +161 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/params.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +329 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.cc.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.h +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.cc.inc +171 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c.inc → kdf.cc.inc} +13 -51
- data/third_party/boringssl-with-bazel/src/crypto/hpke/{hpke.c → hpke.cc} +19 -16
- data/third_party/boringssl-with-bazel/src/crypto/hrss/{hrss.c → hrss.cc} +73 -122
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +242 -442
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/kyber/{kyber.c → kyber.cc} +52 -28
- data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +31 -75
- data/third_party/boringssl-with-bazel/src/crypto/lhash/{lhash.c → lhash.cc} +21 -62
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/md4/md4.c.inc → md4/md4.cc} +21 -67
- data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/md5/md5.c.inc → md5/md5.cc} +17 -58
- data/third_party/boringssl-with-bazel/src/crypto/{mem.c → mem.cc} +47 -77
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +97 -1042
- data/third_party/boringssl-with-bazel/src/crypto/obj/{obj.c → obj.cc} +40 -85
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +14 -56
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.cc +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.cc +149 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_info.c → pem_info.cc} +20 -60
- data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_lib.c → pem_lib.cc} +59 -107
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_pk8.c → pem_pk8.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/pem/{pem_pkey.c → pem_pkey.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.cc +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.cc +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/{pkcs7.c → pkcs7.cc} +17 -17
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/{pkcs7_x509.c → pkcs7_x509.cc} +40 -37
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +13 -54
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/{p5_pbev2.c → p5_pbev2.cc} +13 -54
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/{pkcs8.c → pkcs8.cc} +170 -210
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/{pkcs8_x509.c → pkcs8_x509.cc} +101 -149
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/{poly1305.c → poly1305.cc} +15 -15
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/{poly1305_arm.c → poly1305_arm.cc} +16 -14
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/{poly1305_vec.c → poly1305_vec.cc} +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/pool/{pool.c → pool.cc} +24 -23
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/deterministic.c → rand/deterministic.cc} +14 -14
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/fork_detect.c → rand/fork_detect.cc} +23 -24
- data/third_party/boringssl-with-bazel/src/crypto/rand/forkunsafe.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/getentropy.c → rand/getentropy.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra → rand}/getrandom_fillin.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +42 -0
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/passive.c → rand/passive.cc} +34 -30
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/rand_extra.c → rand/rand.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/rand/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/urandom.c → rand/urandom.cc} +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/{rand_extra/windows.c → rand/windows.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.cc +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/{refcount.c → refcount.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +36 -0
- data/third_party/boringssl-with-bazel/src/crypto/{rsa_extra/rsa_asn1.c → rsa/rsa_asn1.cc} +13 -54
- data/third_party/boringssl-with-bazel/src/crypto/{rsa_extra/rsa_crypt.c → rsa/rsa_crypt.cc} +94 -133
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_extra.cc +19 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_print.cc +27 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/{siphash.c → siphash.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc +113 -0
- data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/spake2plus/spake2plus.cc +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/{stack.c → stack.cc} +23 -61
- data/third_party/boringssl-with-bazel/src/crypto/thread.cc +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/{thread_none.c → thread_none.cc} +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/{thread_pthread.c → thread_pthread.cc} +21 -20
- data/third_party/boringssl-with-bazel/src/crypto/{thread_win.c → thread_win.cc} +33 -29
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/{pmbtoken.c → pmbtoken.cc} +159 -171
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/{trust_token.c → trust_token.cc} +32 -34
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/{voprf.c → voprf.cc} +178 -182
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +97 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{algorithm.c → algorithm.cc} +14 -56
- data/third_party/boringssl-with-bazel/src/crypto/x509/{asn1_gen.c → asn1_gen.cc} +19 -62
- data/third_party/boringssl-with-bazel/src/crypto/x509/{by_dir.c → by_dir.cc} +32 -77
- data/third_party/boringssl-with-bazel/src/crypto/x509/{by_file.c → by_file.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.cc +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +13 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/{name_print.c → name_print.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{policy.c → policy.cc} +200 -190
- data/third_party/boringssl-with-bazel/src/crypto/x509/{rsa_pss.c → rsa_pss.cc} +59 -96
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.cc +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{t_req.c → t_req.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{t_x509.c → t_x509.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_akey.c → v3_akey.cc} +17 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.cc +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_alt.c → v3_alt.cc} +17 -58
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc +102 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_conf.c → v3_conf.cc} +18 -60
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_cpols.c → v3_cpols.cc} +60 -98
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_crld.c → v3_crld.cc} +16 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_genn.c → v3_genn.cc} +20 -62
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_info.c → v3_info.cc} +20 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_lib.c → v3_lib.cc} +23 -63
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_ncons.c → v3_ncons.cc} +15 -56
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_ocsp.c → v3_ocsp.cc} +17 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc +101 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_pmaps.c → v3_pmaps.cc} +15 -56
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_prn.c → v3_prn.cc} +15 -56
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_purp.c → v3_purp.cc} +29 -63
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{v3_utl.c → v3_utl.cc} +30 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.cc +47 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_att.c → x509_att.cc} +16 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_cmp.c → x509_cmp.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.cc +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.cc +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_ext.c → x509_ext.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_lu.c → x509_lu.cc} +20 -65
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_obj.c → x509_obj.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_req.c → x509_req.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_set.c → x509_set.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_trs.c → x509_trs.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_txt.c → x509_txt.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_v3.c → x509_v3.cc} +15 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_vfy.c → x509_vfy.cc} +229 -267
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509_vpm.c → x509_vpm.cc} +68 -68
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509cset.c → x509cset.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x509name.c → x509name.cc} +13 -55
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.cc +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +107 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x_all.c → x_all.cc} +23 -61
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.cc +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x_crl.c → x_crl.cc} +19 -61
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.cc +36 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x_name.c → x_name.cc} +52 -87
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x_pubkey.c → x_pubkey.cc} +17 -57
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.cc +74 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.cc +51 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.cc +34 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.cc +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x_x509.c → x_x509.cc} +61 -99
- data/third_party/boringssl-with-bazel/src/crypto/x509/{x_x509a.c → x_x509a.cc} +17 -57
- data/third_party/boringssl-with-bazel/src/gen/crypto/{err_data.c → err_data.cc} +468 -453
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +13 -47
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +13 -51
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +14 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +23 -62
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +248 -328
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +24 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +82 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -121
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +31 -16
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +31 -59
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +25 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +19 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +17 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +14 -66
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +31 -72
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +14 -65
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +13 -51
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -107
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +14 -56
- data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +13 -107
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +20 -26
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +13 -37
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +27 -69
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +22 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +23 -63
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +15 -95
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +174 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +24 -32
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +358 -290
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +15 -114
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +23 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +15 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +27 -156
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +15 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +13 -55
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +14 -61
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +13 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +13 -53
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +15 -14
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +680 -434
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +129 -174
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +176 -131
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +21 -127
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +107 -104
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +311 -312
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +54 -47
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +677 -475
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +66 -73
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +61 -153
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +198 -331
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +88 -212
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +949 -531
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +47 -157
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +29 -159
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +18 -112
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +103 -196
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +52 -145
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +15 -20
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +117 -157
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +229 -365
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +216 -31
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +13 -109
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +34 -33
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +194 -350
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +38 -83
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +101 -236
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +17 -91
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +109 -157
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +44 -30
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +66 -195
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -176
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +58 -42
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +146 -94
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +251 -180
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +236 -107
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +64 -117
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +52 -134
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +6 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +3 -0
- metadata +357 -348
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +0 -426
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +0 -87
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +0 -32
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +0 -408
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +0 -124
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +0 -38
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +0 -108
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +0 -33
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -67
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -48
- data/src/core/util/atm.cc +0 -34
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +0 -95
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +0 -84
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +0 -151
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +0 -85
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +0 -74
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +0 -183
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +0 -103
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +0 -105
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +0 -212
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -126
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +0 -92
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +0 -192
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -102
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +0 -189
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +0 -158
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +0 -127
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +0 -152
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +0 -228
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +0 -41
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +0 -18
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +0 -165
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +0 -1539
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +0 -58
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +0 -124
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +0 -156
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +0 -236
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +0 -127
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c.inc +0 -124
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c.inc +0 -146
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c.inc +0 -304
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c.inc +0 -130
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +0 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +0 -37
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c.inc +0 -196
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +0 -428
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c.inc +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c.inc +0 -241
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +0 -73
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +0 -1687
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +0 -90
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -243
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -64
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +0 -42
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +0 -37
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +0 -46
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +0 -98
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +0 -101
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +0 -50
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +0 -54
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +0 -150
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +0 -61
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +0 -71
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +0 -140
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +0 -53
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +0 -44
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +0 -70
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +0 -45
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +0 -110
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +0 -94
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +0 -136
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +0 -145
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c +0 -73
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c +0 -135
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c +0 -141
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c +0 -112
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c +0 -121
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c +0 -142
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c +0 -170
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -89
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +0 -108
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +0 -86
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +0 -109
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +0 -133
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +0 -149
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +0 -97
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +0 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +0 -116
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +0 -93
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +0 -79
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +0 -70
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +0 -129
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +0 -90
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.71.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gRPC Authors
|
8
8
|
bindir: src/ruby/bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 2025-03-06 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-protobuf
|
@@ -133,14 +133,14 @@ dependencies:
|
|
133
133
|
requirements:
|
134
134
|
- - "~>"
|
135
135
|
- !ruby/object:Gem::Version
|
136
|
-
version: '1.
|
136
|
+
version: '1.9'
|
137
137
|
type: :development
|
138
138
|
prerelease: false
|
139
139
|
version_requirements: !ruby/object:Gem::Requirement
|
140
140
|
requirements:
|
141
141
|
- - "~>"
|
142
142
|
- !ruby/object:Gem::Version
|
143
|
-
version: '1.
|
143
|
+
version: '1.9'
|
144
144
|
- !ruby/object:Gem::Dependency
|
145
145
|
name: rspec
|
146
146
|
requirement: !ruby/object:Gem::Requirement
|
@@ -288,6 +288,8 @@ files:
|
|
288
288
|
- include/grpc/support/thd_id.h
|
289
289
|
- include/grpc/support/time.h
|
290
290
|
- include/grpc/support/workaround_list.h
|
291
|
+
- src/core/call/request_buffer.cc
|
292
|
+
- src/core/call/request_buffer.h
|
291
293
|
- src/core/channelz/channel_trace.cc
|
292
294
|
- src/core/channelz/channel_trace.h
|
293
295
|
- src/core/channelz/channelz.cc
|
@@ -298,6 +300,7 @@ files:
|
|
298
300
|
- src/core/client_channel/backup_poller.h
|
299
301
|
- src/core/client_channel/client_channel.cc
|
300
302
|
- src/core/client_channel/client_channel.h
|
303
|
+
- src/core/client_channel/client_channel_args.h
|
301
304
|
- src/core/client_channel/client_channel_factory.cc
|
302
305
|
- src/core/client_channel/client_channel_factory.h
|
303
306
|
- src/core/client_channel/client_channel_filter.cc
|
@@ -324,6 +327,8 @@ files:
|
|
324
327
|
- src/core/client_channel/retry_filter.h
|
325
328
|
- src/core/client_channel/retry_filter_legacy_call_data.cc
|
326
329
|
- src/core/client_channel/retry_filter_legacy_call_data.h
|
330
|
+
- src/core/client_channel/retry_interceptor.cc
|
331
|
+
- src/core/client_channel/retry_interceptor.h
|
327
332
|
- src/core/client_channel/retry_service_config.cc
|
328
333
|
- src/core/client_channel/retry_service_config.h
|
329
334
|
- src/core/client_channel/retry_throttle.cc
|
@@ -549,6 +554,9 @@ files:
|
|
549
554
|
- src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h
|
550
555
|
- src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c
|
551
556
|
- src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h
|
557
|
+
- src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb.h
|
558
|
+
- src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.c
|
559
|
+
- src/core/ext/upb-gen/envoy/config/core/v3/socket_cmsg_headers.upb_minitable.h
|
552
560
|
- src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h
|
553
561
|
- src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c
|
554
562
|
- src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h
|
@@ -618,9 +626,6 @@ files:
|
|
618
626
|
- src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h
|
619
627
|
- src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c
|
620
628
|
- src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h
|
621
|
-
- src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h
|
622
|
-
- src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c
|
623
|
-
- src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h
|
624
629
|
- src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h
|
625
630
|
- src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c
|
626
631
|
- src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h
|
@@ -723,6 +728,9 @@ files:
|
|
723
728
|
- src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h
|
724
729
|
- src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c
|
725
730
|
- src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h
|
731
|
+
- src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb.h
|
732
|
+
- src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.c
|
733
|
+
- src/core/ext/upb-gen/envoy/type/matcher/v3/address.upb_minitable.h
|
726
734
|
- src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h
|
727
735
|
- src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c
|
728
736
|
- src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h
|
@@ -828,9 +836,6 @@ files:
|
|
828
836
|
- src/core/ext/upb-gen/google/rpc/status.upb.h
|
829
837
|
- src/core/ext/upb-gen/google/rpc/status.upb_minitable.c
|
830
838
|
- src/core/ext/upb-gen/google/rpc/status.upb_minitable.h
|
831
|
-
- src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h
|
832
|
-
- src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c
|
833
|
-
- src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h
|
834
839
|
- src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h
|
835
840
|
- src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c
|
836
841
|
- src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h
|
@@ -1016,6 +1021,8 @@ files:
|
|
1016
1021
|
- src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h
|
1017
1022
|
- src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c
|
1018
1023
|
- src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h
|
1024
|
+
- src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c
|
1025
|
+
- src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h
|
1019
1026
|
- src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c
|
1020
1027
|
- src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h
|
1021
1028
|
- src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c
|
@@ -1062,8 +1069,6 @@ files:
|
|
1062
1069
|
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h
|
1063
1070
|
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c
|
1064
1071
|
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h
|
1065
|
-
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c
|
1066
|
-
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h
|
1067
1072
|
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c
|
1068
1073
|
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h
|
1069
1074
|
- src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c
|
@@ -1122,6 +1127,8 @@ files:
|
|
1122
1127
|
- src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h
|
1123
1128
|
- src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c
|
1124
1129
|
- src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h
|
1130
|
+
- src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c
|
1131
|
+
- src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h
|
1125
1132
|
- src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c
|
1126
1133
|
- src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h
|
1127
1134
|
- src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c
|
@@ -1192,8 +1199,6 @@ files:
|
|
1192
1199
|
- src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h
|
1193
1200
|
- src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c
|
1194
1201
|
- src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h
|
1195
|
-
- src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c
|
1196
|
-
- src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h
|
1197
1202
|
- src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c
|
1198
1203
|
- src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h
|
1199
1204
|
- src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c
|
@@ -1258,6 +1263,7 @@ files:
|
|
1258
1263
|
- src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h
|
1259
1264
|
- src/core/filter/blackboard.cc
|
1260
1265
|
- src/core/filter/blackboard.h
|
1266
|
+
- src/core/filter/filter_args.h
|
1261
1267
|
- src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc
|
1262
1268
|
- src/core/handshaker/endpoint_info/endpoint_info_handshaker.h
|
1263
1269
|
- src/core/handshaker/handshaker.cc
|
@@ -2006,7 +2012,6 @@ files:
|
|
2006
2012
|
- src/core/tsi/transport_security_interface.h
|
2007
2013
|
- src/core/util/alloc.cc
|
2008
2014
|
- src/core/util/alloc.h
|
2009
|
-
- src/core/util/atm.cc
|
2010
2015
|
- src/core/util/atomic_utils.h
|
2011
2016
|
- src/core/util/avl.h
|
2012
2017
|
- src/core/util/backoff.cc
|
@@ -2141,6 +2146,7 @@ files:
|
|
2141
2146
|
- src/core/util/uuid_v4.h
|
2142
2147
|
- src/core/util/validation_errors.cc
|
2143
2148
|
- src/core/util/validation_errors.h
|
2149
|
+
- src/core/util/wait_for_single_owner.h
|
2144
2150
|
- src/core/util/windows/cpu.cc
|
2145
2151
|
- src/core/util/windows/directory_reader.cc
|
2146
2152
|
- src/core/util/windows/env.cc
|
@@ -2211,6 +2217,7 @@ files:
|
|
2211
2217
|
- src/core/xds/grpc/xds_routing.h
|
2212
2218
|
- src/core/xds/grpc/xds_server_grpc.cc
|
2213
2219
|
- src/core/xds/grpc/xds_server_grpc.h
|
2220
|
+
- src/core/xds/grpc/xds_server_grpc_interface.h
|
2214
2221
|
- src/core/xds/grpc/xds_transport_grpc.cc
|
2215
2222
|
- src/core/xds/grpc/xds_transport_grpc.h
|
2216
2223
|
- src/core/xds/xds_client/lrs_client.cc
|
@@ -2799,382 +2806,384 @@ files:
|
|
2799
2806
|
- third_party/address_sorting/address_sorting_posix.c
|
2800
2807
|
- third_party/address_sorting/address_sorting_windows.c
|
2801
2808
|
- third_party/address_sorting/include/address_sorting/address_sorting.h
|
2802
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.
|
2803
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.
|
2804
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.
|
2805
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.
|
2806
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.
|
2807
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.
|
2808
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_int.
|
2809
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.
|
2810
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_object.
|
2811
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.
|
2812
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.
|
2813
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.
|
2814
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_time.
|
2815
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_type.
|
2816
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.
|
2817
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.
|
2818
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.
|
2819
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.
|
2820
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/f_int.
|
2821
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/f_string.
|
2809
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc
|
2810
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.cc
|
2811
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.cc
|
2812
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.cc
|
2813
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.cc
|
2814
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.cc
|
2815
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc
|
2816
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.cc
|
2817
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_object.cc
|
2818
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.cc
|
2819
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.cc
|
2820
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.cc
|
2821
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_time.cc
|
2822
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_type.cc
|
2823
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.cc
|
2824
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.cc
|
2825
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.cc
|
2826
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.cc
|
2827
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/f_int.cc
|
2828
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/f_string.cc
|
2822
2829
|
- third_party/boringssl-with-bazel/src/crypto/asn1/internal.h
|
2823
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.
|
2824
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.
|
2825
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.
|
2826
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.
|
2827
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.
|
2828
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.
|
2829
|
-
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.
|
2830
|
-
- third_party/boringssl-with-bazel/src/crypto/base64/base64.
|
2830
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.cc
|
2831
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc
|
2832
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc
|
2833
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.cc
|
2834
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.cc
|
2835
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc
|
2836
|
+
- third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.cc
|
2837
|
+
- third_party/boringssl-with-bazel/src/crypto/base64/base64.cc
|
2831
2838
|
- third_party/boringssl-with-bazel/src/crypto/bcm_support.h
|
2832
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/bio.
|
2833
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.
|
2834
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/connect.
|
2835
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/errno.
|
2836
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/fd.
|
2837
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/file.
|
2838
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/hexdump.
|
2839
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/bio.cc
|
2840
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.cc
|
2841
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/connect.cc
|
2842
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/errno.cc
|
2843
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/fd.cc
|
2844
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/file.cc
|
2845
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/hexdump.cc
|
2839
2846
|
- third_party/boringssl-with-bazel/src/crypto/bio/internal.h
|
2840
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/pair.
|
2841
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/printf.
|
2842
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/socket.
|
2843
|
-
- third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.
|
2844
|
-
- third_party/boringssl-with-bazel/src/crypto/blake2/blake2.
|
2845
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2846
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2847
|
-
- third_party/boringssl-with-bazel/src/crypto/buf/buf.
|
2848
|
-
- third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.
|
2849
|
-
- third_party/boringssl-with-bazel/src/crypto/bytestring/ber.
|
2850
|
-
- third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.
|
2851
|
-
- third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.
|
2847
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/pair.cc
|
2848
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/printf.cc
|
2849
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/socket.cc
|
2850
|
+
- third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc
|
2851
|
+
- third_party/boringssl-with-bazel/src/crypto/blake2/blake2.cc
|
2852
|
+
- third_party/boringssl-with-bazel/src/crypto/bn/bn_asn1.cc
|
2853
|
+
- third_party/boringssl-with-bazel/src/crypto/bn/convert.cc
|
2854
|
+
- third_party/boringssl-with-bazel/src/crypto/buf/buf.cc
|
2855
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.cc
|
2856
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/ber.cc
|
2857
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc
|
2858
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc
|
2852
2859
|
- third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h
|
2853
|
-
- third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.
|
2854
|
-
- third_party/boringssl-with-bazel/src/crypto/chacha/chacha.
|
2860
|
+
- third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.cc
|
2861
|
+
- third_party/boringssl-with-bazel/src/crypto/chacha/chacha.cc
|
2855
2862
|
- third_party/boringssl-with-bazel/src/crypto/chacha/internal.h
|
2856
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2857
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2858
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2859
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2860
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2861
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2862
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2863
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2864
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2865
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2866
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2867
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2868
|
-
- third_party/boringssl-with-bazel/src/crypto/conf/conf.
|
2863
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc
|
2864
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_aesctrhmac.cc
|
2865
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc
|
2866
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_chacha20poly1305.cc
|
2867
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_des.cc
|
2868
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_null.cc
|
2869
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_rc2.cc
|
2870
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_rc4.cc
|
2871
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/e_tls.cc
|
2872
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/get_cipher.cc
|
2873
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/internal.h
|
2874
|
+
- third_party/boringssl-with-bazel/src/crypto/cipher/tls_cbc.cc
|
2875
|
+
- third_party/boringssl-with-bazel/src/crypto/conf/conf.cc
|
2869
2876
|
- third_party/boringssl-with-bazel/src/crypto/conf/internal.h
|
2870
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.
|
2871
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.
|
2872
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.
|
2873
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.
|
2874
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.
|
2875
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.
|
2876
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.
|
2877
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.
|
2877
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc
|
2878
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc
|
2879
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc
|
2880
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc
|
2881
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc
|
2882
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc
|
2883
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc
|
2884
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc
|
2878
2885
|
- third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h
|
2879
|
-
- third_party/boringssl-with-bazel/src/crypto/cpu_intel.
|
2880
|
-
- third_party/boringssl-with-bazel/src/crypto/crypto.
|
2881
|
-
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.
|
2882
|
-
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.
|
2886
|
+
- third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc
|
2887
|
+
- third_party/boringssl-with-bazel/src/crypto/crypto.cc
|
2888
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.cc
|
2889
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.cc
|
2883
2890
|
- third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h
|
2884
2891
|
- third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h
|
2885
|
-
- third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.
|
2886
|
-
- third_party/boringssl-with-bazel/src/crypto/des/des.
|
2892
|
+
- third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.cc
|
2893
|
+
- third_party/boringssl-with-bazel/src/crypto/des/des.cc
|
2887
2894
|
- third_party/boringssl-with-bazel/src/crypto/des/internal.h
|
2888
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2889
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2890
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2891
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2892
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2893
|
-
- third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c
|
2894
|
-
- third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c
|
2895
|
+
- third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc
|
2896
|
+
- third_party/boringssl-with-bazel/src/crypto/dh/params.cc
|
2897
|
+
- third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc
|
2898
|
+
- third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc
|
2899
|
+
- third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc
|
2895
2900
|
- third_party/boringssl-with-bazel/src/crypto/dsa/internal.h
|
2896
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2897
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2898
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2899
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2900
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2901
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
2902
|
-
- third_party/boringssl-with-bazel/src/crypto/engine/engine.
|
2903
|
-
- third_party/boringssl-with-bazel/src/crypto/err/err.
|
2901
|
+
- third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc
|
2902
|
+
- third_party/boringssl-with-bazel/src/crypto/ec/ec_derive.cc
|
2903
|
+
- third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc
|
2904
|
+
- third_party/boringssl-with-bazel/src/crypto/ec/internal.h
|
2905
|
+
- third_party/boringssl-with-bazel/src/crypto/ecdh/ecdh.cc
|
2906
|
+
- third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc
|
2907
|
+
- third_party/boringssl-with-bazel/src/crypto/engine/engine.cc
|
2908
|
+
- third_party/boringssl-with-bazel/src/crypto/err/err.cc
|
2904
2909
|
- third_party/boringssl-with-bazel/src/crypto/err/internal.h
|
2905
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/evp.
|
2906
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.
|
2907
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.
|
2910
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/evp.cc
|
2911
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc
|
2912
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc
|
2908
2913
|
- third_party/boringssl-with-bazel/src/crypto/evp/internal.h
|
2909
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_dh.
|
2910
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.
|
2911
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.
|
2912
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_ec.
|
2913
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.
|
2914
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.
|
2915
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.
|
2916
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.
|
2917
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.
|
2918
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.
|
2919
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.
|
2920
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.
|
2921
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.
|
2922
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/print.
|
2923
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/scrypt.
|
2924
|
-
- third_party/boringssl-with-bazel/src/crypto/evp/sign.
|
2925
|
-
- third_party/boringssl-with-bazel/src/crypto/ex_data.
|
2926
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.
|
2927
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.
|
2914
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_dh.cc
|
2915
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.cc
|
2916
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc
|
2917
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ec.cc
|
2918
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc
|
2919
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.cc
|
2920
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc
|
2921
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.cc
|
2922
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.cc
|
2923
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc
|
2924
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.cc
|
2925
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc
|
2926
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.cc
|
2927
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/print.cc
|
2928
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/scrypt.cc
|
2929
|
+
- third_party/boringssl-with-bazel/src/crypto/evp/sign.cc
|
2930
|
+
- third_party/boringssl-with-bazel/src/crypto/ex_data.cc
|
2931
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc
|
2932
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.cc.inc
|
2933
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cbc.cc.inc
|
2934
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/cfb.cc.inc
|
2935
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ctr.cc.inc
|
2936
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc
|
2937
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm_nohw.cc.inc
|
2928
2938
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h
|
2929
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.
|
2930
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.
|
2931
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/
|
2939
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc
|
2940
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc
|
2941
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/ofb.cc.inc
|
2942
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/polyval.cc.inc
|
2943
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc
|
2932
2944
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h
|
2933
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.
|
2934
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.
|
2935
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.
|
2936
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.
|
2937
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.
|
2938
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.
|
2939
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.
|
2940
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.
|
2941
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.
|
2942
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.
|
2943
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.
|
2944
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.
|
2945
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.cc.inc
|
2946
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.cc.inc
|
2947
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.cc.inc
|
2948
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.cc.inc
|
2949
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.cc.inc
|
2950
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.cc.inc
|
2951
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc
|
2952
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.cc.inc
|
2953
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc
|
2954
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc
|
2955
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc
|
2956
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.cc.inc
|
2945
2957
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h
|
2946
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.
|
2947
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.
|
2948
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.
|
2949
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.
|
2950
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.
|
2951
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.
|
2952
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.
|
2958
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc
|
2959
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc
|
2960
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.cc.inc
|
2961
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc
|
2962
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc
|
2963
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.cc.inc
|
2964
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.cc.inc
|
2953
2965
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h
|
2954
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.
|
2955
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.
|
2956
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.
|
2957
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.
|
2958
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.
|
2959
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.
|
2966
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc
|
2967
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc
|
2968
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.cc.inc
|
2969
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.cc.inc
|
2970
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc
|
2971
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.cc.inc
|
2960
2972
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h
|
2961
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.
|
2973
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.cc.inc
|
2962
2974
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h
|
2963
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.
|
2964
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.
|
2975
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc
|
2976
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc
|
2965
2977
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h
|
2966
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.
|
2967
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.
|
2978
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc
|
2979
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.cc.inc
|
2968
2980
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h
|
2969
2981
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h
|
2970
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.
|
2982
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.cc.inc
|
2971
2983
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h
|
2972
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.
|
2973
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.
|
2974
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.
|
2975
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.
|
2984
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc
|
2985
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc
|
2986
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.cc.inc
|
2987
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.cc.inc
|
2976
2988
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h
|
2977
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.
|
2978
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.
|
2989
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc
|
2990
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.cc.inc
|
2979
2991
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h
|
2980
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.
|
2992
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.cc.inc
|
2981
2993
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h
|
2982
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.
|
2994
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.cc.inc
|
2983
2995
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h
|
2984
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.
|
2985
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.
|
2986
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.
|
2987
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.
|
2988
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.
|
2989
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.
|
2990
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.
|
2996
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.cc.inc
|
2997
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc
|
2998
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.cc.inc
|
2999
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.cc.inc
|
3000
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.cc.inc
|
3001
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.cc.inc
|
3002
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.cc.inc
|
2991
3003
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h
|
2992
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.
|
2993
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.
|
2994
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.
|
2995
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/
|
2996
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/
|
2997
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/
|
2998
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/
|
2999
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/
|
3000
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c.inc
|
3001
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c.inc
|
3002
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c.inc
|
3003
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h
|
3004
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c.inc
|
3005
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c.inc
|
3006
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c.inc
|
3004
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.cc
|
3005
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.cc.inc
|
3006
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.cc.inc
|
3007
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h
|
3008
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/keccak.cc.inc
|
3009
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc
|
3010
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc
|
3011
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.cc.inc
|
3007
3012
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h
|
3008
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.
|
3009
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.
|
3013
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc
|
3014
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.cc.inc
|
3010
3015
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h
|
3011
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.
|
3012
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.
|
3013
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.
|
3014
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.
|
3015
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.
|
3016
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc
|
3017
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc
|
3018
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc
|
3019
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.cc.inc
|
3020
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc
|
3016
3021
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h
|
3017
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.
|
3022
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.cc.inc
|
3018
3023
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h
|
3019
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.
|
3020
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.
|
3021
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.
|
3024
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.cc.inc
|
3025
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.cc.inc
|
3026
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.cc.inc
|
3027
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/address.h
|
3028
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.cc.inc
|
3029
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fors.h
|
3030
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.cc.inc
|
3031
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/merkle.h
|
3032
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/params.h
|
3033
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc
|
3034
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.cc.inc
|
3035
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/thash.h
|
3036
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.cc.inc
|
3037
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/wots.h
|
3022
3038
|
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h
|
3023
|
-
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.
|
3024
|
-
- third_party/boringssl-with-bazel/src/crypto/hpke/hpke.
|
3025
|
-
- third_party/boringssl-with-bazel/src/crypto/hrss/hrss.
|
3039
|
+
- third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.cc.inc
|
3040
|
+
- third_party/boringssl-with-bazel/src/crypto/hpke/hpke.cc
|
3041
|
+
- third_party/boringssl-with-bazel/src/crypto/hrss/hrss.cc
|
3026
3042
|
- third_party/boringssl-with-bazel/src/crypto/hrss/internal.h
|
3027
3043
|
- third_party/boringssl-with-bazel/src/crypto/internal.h
|
3028
|
-
- third_party/boringssl-with-bazel/src/crypto/keccak/internal.h
|
3029
|
-
- third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c
|
3030
3044
|
- third_party/boringssl-with-bazel/src/crypto/kyber/internal.h
|
3031
|
-
- third_party/boringssl-with-bazel/src/crypto/kyber/kyber.
|
3045
|
+
- third_party/boringssl-with-bazel/src/crypto/kyber/kyber.cc
|
3032
3046
|
- third_party/boringssl-with-bazel/src/crypto/lhash/internal.h
|
3033
|
-
- third_party/boringssl-with-bazel/src/crypto/lhash/lhash.
|
3034
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3035
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3036
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3037
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3047
|
+
- third_party/boringssl-with-bazel/src/crypto/lhash/lhash.cc
|
3048
|
+
- third_party/boringssl-with-bazel/src/crypto/md4/md4.cc
|
3049
|
+
- third_party/boringssl-with-bazel/src/crypto/md5/internal.h
|
3050
|
+
- third_party/boringssl-with-bazel/src/crypto/md5/md5.cc
|
3051
|
+
- third_party/boringssl-with-bazel/src/crypto/mem.cc
|
3052
|
+
- third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.cc
|
3038
3053
|
- third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc
|
3039
|
-
- third_party/boringssl-with-bazel/src/crypto/obj/obj.
|
3054
|
+
- third_party/boringssl-with-bazel/src/crypto/obj/obj.cc
|
3040
3055
|
- third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h
|
3041
|
-
- third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.
|
3042
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3043
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3044
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3045
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3046
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3047
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3048
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3049
|
-
- third_party/boringssl-with-bazel/src/crypto/pem/
|
3056
|
+
- third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.cc
|
3057
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/internal.h
|
3058
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_all.cc
|
3059
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_info.cc
|
3060
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc
|
3061
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.cc
|
3062
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.cc
|
3063
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.cc
|
3064
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.cc
|
3065
|
+
- third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.cc
|
3050
3066
|
- third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h
|
3051
|
-
- third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.
|
3052
|
-
- third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.
|
3067
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc
|
3068
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc
|
3053
3069
|
- third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h
|
3054
|
-
- third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.
|
3055
|
-
- third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.
|
3056
|
-
- third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.
|
3070
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc
|
3071
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc
|
3072
|
+
- third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc
|
3057
3073
|
- third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h
|
3058
|
-
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.
|
3059
|
-
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.
|
3060
|
-
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.
|
3074
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.cc
|
3075
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.cc
|
3076
|
+
- third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.cc
|
3061
3077
|
- third_party/boringssl-with-bazel/src/crypto/pool/internal.h
|
3062
|
-
- third_party/boringssl-with-bazel/src/crypto/pool/pool.
|
3063
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3064
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3065
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3066
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3067
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3068
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3069
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3070
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3071
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3072
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3073
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3074
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3075
|
-
- third_party/boringssl-with-bazel/src/crypto/rc4/rc4.
|
3076
|
-
- third_party/boringssl-with-bazel/src/crypto/refcount.
|
3077
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3078
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3079
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3080
|
-
- third_party/boringssl-with-bazel/src/crypto/rsa_extra
|
3081
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3082
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3083
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3084
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3085
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3086
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3087
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3088
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3089
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3090
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3091
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3092
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3093
|
-
- third_party/boringssl-with-bazel/src/crypto/
|
3094
|
-
- third_party/boringssl-with-bazel/src/crypto/spx/wots.c
|
3095
|
-
- third_party/boringssl-with-bazel/src/crypto/spx/wots.h
|
3096
|
-
- third_party/boringssl-with-bazel/src/crypto/stack/stack.c
|
3097
|
-
- third_party/boringssl-with-bazel/src/crypto/thread.c
|
3098
|
-
- third_party/boringssl-with-bazel/src/crypto/thread_none.c
|
3099
|
-
- third_party/boringssl-with-bazel/src/crypto/thread_pthread.c
|
3100
|
-
- third_party/boringssl-with-bazel/src/crypto/thread_win.c
|
3078
|
+
- third_party/boringssl-with-bazel/src/crypto/pool/pool.cc
|
3079
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc
|
3080
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc
|
3081
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/forkunsafe.cc
|
3082
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc
|
3083
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/getrandom_fillin.h
|
3084
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/ios.cc
|
3085
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/passive.cc
|
3086
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/rand.cc
|
3087
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/sysrand_internal.h
|
3088
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc
|
3089
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc
|
3090
|
+
- third_party/boringssl-with-bazel/src/crypto/rand/windows.cc
|
3091
|
+
- third_party/boringssl-with-bazel/src/crypto/rc4/rc4.cc
|
3092
|
+
- third_party/boringssl-with-bazel/src/crypto/refcount.cc
|
3093
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa/internal.h
|
3094
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa/rsa_asn1.cc
|
3095
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc
|
3096
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa/rsa_extra.cc
|
3097
|
+
- third_party/boringssl-with-bazel/src/crypto/rsa/rsa_print.cc
|
3098
|
+
- third_party/boringssl-with-bazel/src/crypto/sha/sha1.cc
|
3099
|
+
- third_party/boringssl-with-bazel/src/crypto/sha/sha256.cc
|
3100
|
+
- third_party/boringssl-with-bazel/src/crypto/sha/sha512.cc
|
3101
|
+
- third_party/boringssl-with-bazel/src/crypto/siphash/siphash.cc
|
3102
|
+
- third_party/boringssl-with-bazel/src/crypto/slhdsa/slhdsa.cc
|
3103
|
+
- third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h
|
3104
|
+
- third_party/boringssl-with-bazel/src/crypto/spake2plus/spake2plus.cc
|
3105
|
+
- third_party/boringssl-with-bazel/src/crypto/stack/stack.cc
|
3106
|
+
- third_party/boringssl-with-bazel/src/crypto/thread.cc
|
3107
|
+
- third_party/boringssl-with-bazel/src/crypto/thread_none.cc
|
3108
|
+
- third_party/boringssl-with-bazel/src/crypto/thread_pthread.cc
|
3109
|
+
- third_party/boringssl-with-bazel/src/crypto/thread_win.cc
|
3101
3110
|
- third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h
|
3102
|
-
- third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.
|
3103
|
-
- third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.
|
3104
|
-
- third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.
|
3105
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/a_digest.
|
3106
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/a_sign.
|
3107
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/a_verify.
|
3108
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/algorithm.
|
3109
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.
|
3110
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/by_dir.
|
3111
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/by_file.
|
3111
|
+
- third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.cc
|
3112
|
+
- third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.cc
|
3113
|
+
- third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.cc
|
3114
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_digest.cc
|
3115
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc
|
3116
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/a_verify.cc
|
3117
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/algorithm.cc
|
3118
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc
|
3119
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/by_dir.cc
|
3120
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/by_file.cc
|
3112
3121
|
- third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h
|
3113
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.
|
3122
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.cc
|
3114
3123
|
- third_party/boringssl-with-bazel/src/crypto/x509/internal.h
|
3115
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/name_print.
|
3116
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/policy.
|
3117
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.
|
3118
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/t_crl.
|
3119
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/t_req.
|
3120
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/t_x509.
|
3121
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.
|
3122
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.
|
3123
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.
|
3124
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.
|
3125
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.
|
3126
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.
|
3127
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.
|
3128
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.
|
3129
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.
|
3130
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.
|
3131
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.
|
3132
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.
|
3133
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.
|
3134
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_info.
|
3135
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_int.
|
3136
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.
|
3137
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.
|
3138
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.
|
3139
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.
|
3140
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.
|
3141
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.
|
3142
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.
|
3143
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.
|
3144
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.
|
3145
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509.
|
3146
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_att.
|
3147
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.
|
3148
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.
|
3149
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_def.
|
3150
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.
|
3151
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.
|
3152
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.
|
3153
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_req.
|
3154
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_set.
|
3155
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.
|
3156
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.
|
3157
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.
|
3158
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.
|
3159
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.
|
3160
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509cset.
|
3161
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509name.
|
3162
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509rset.
|
3163
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x509spki.
|
3164
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_algor.
|
3165
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_all.
|
3166
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.
|
3167
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_crl.
|
3168
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_exten.
|
3169
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_name.
|
3170
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.
|
3171
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_req.
|
3172
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_sig.
|
3173
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_spki.
|
3174
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_val.
|
3175
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_x509.
|
3176
|
-
- third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.
|
3177
|
-
- third_party/boringssl-with-bazel/src/gen/crypto/err_data.
|
3124
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/name_print.cc
|
3125
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/policy.cc
|
3126
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.cc
|
3127
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_crl.cc
|
3128
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_req.cc
|
3129
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_x509.cc
|
3130
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.cc
|
3131
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.cc
|
3132
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.cc
|
3133
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.cc
|
3134
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.cc
|
3135
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.cc
|
3136
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc
|
3137
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.cc
|
3138
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.cc
|
3139
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.cc
|
3140
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.cc
|
3141
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.cc
|
3142
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.cc
|
3143
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc
|
3144
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_int.cc
|
3145
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.cc
|
3146
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.cc
|
3147
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.cc
|
3148
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.cc
|
3149
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.cc
|
3150
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.cc
|
3151
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.cc
|
3152
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.cc
|
3153
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.cc
|
3154
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509.cc
|
3155
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_att.cc
|
3156
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.cc
|
3157
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.cc
|
3158
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_def.cc
|
3159
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.cc
|
3160
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.cc
|
3161
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.cc
|
3162
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_req.cc
|
3163
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_set.cc
|
3164
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.cc
|
3165
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.cc
|
3166
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.cc
|
3167
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc
|
3168
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.cc
|
3169
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509cset.cc
|
3170
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509name.cc
|
3171
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509rset.cc
|
3172
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x509spki.cc
|
3173
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc
|
3174
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_all.cc
|
3175
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.cc
|
3176
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_crl.cc
|
3177
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_exten.cc
|
3178
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc
|
3179
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.cc
|
3180
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_req.cc
|
3181
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_sig.cc
|
3182
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_spki.cc
|
3183
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_val.cc
|
3184
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc
|
3185
|
+
- third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc
|
3186
|
+
- third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc
|
3178
3187
|
- third_party/boringssl-with-bazel/src/include/openssl/aead.h
|
3179
3188
|
- third_party/boringssl-with-bazel/src/include/openssl/aes.h
|
3180
3189
|
- third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h
|
@@ -3184,6 +3193,7 @@ files:
|
|
3184
3193
|
- third_party/boringssl-with-bazel/src/include/openssl/asn1t.h
|
3185
3194
|
- third_party/boringssl-with-bazel/src/include/openssl/base.h
|
3186
3195
|
- third_party/boringssl-with-bazel/src/include/openssl/base64.h
|
3196
|
+
- third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h
|
3187
3197
|
- third_party/boringssl-with-bazel/src/include/openssl/bio.h
|
3188
3198
|
- third_party/boringssl-with-bazel/src/include/openssl/blake2.h
|
3189
3199
|
- third_party/boringssl-with-bazel/src/include/openssl/blowfish.h
|
@@ -3215,9 +3225,7 @@ files:
|
|
3215
3225
|
- third_party/boringssl-with-bazel/src/include/openssl/evp.h
|
3216
3226
|
- third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h
|
3217
3227
|
- third_party/boringssl-with-bazel/src/include/openssl/ex_data.h
|
3218
|
-
- third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h
|
3219
3228
|
- third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h
|
3220
|
-
- third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h
|
3221
3229
|
- third_party/boringssl-with-bazel/src/include/openssl/hkdf.h
|
3222
3230
|
- third_party/boringssl-with-bazel/src/include/openssl/hmac.h
|
3223
3231
|
- third_party/boringssl-with-bazel/src/include/openssl/hpke.h
|
@@ -3252,6 +3260,7 @@ files:
|
|
3252
3260
|
- third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h
|
3253
3261
|
- third_party/boringssl-with-bazel/src/include/openssl/sha.h
|
3254
3262
|
- third_party/boringssl-with-bazel/src/include/openssl/siphash.h
|
3263
|
+
- third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h
|
3255
3264
|
- third_party/boringssl-with-bazel/src/include/openssl/span.h
|
3256
3265
|
- third_party/boringssl-with-bazel/src/include/openssl/srtp.h
|
3257
3266
|
- third_party/boringssl-with-bazel/src/include/openssl/ssl.h
|
@@ -3659,7 +3668,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
3659
3668
|
- !ruby/object:Gem::Version
|
3660
3669
|
version: '0'
|
3661
3670
|
requirements: []
|
3662
|
-
rubygems_version: 3.6.
|
3671
|
+
rubygems_version: 3.6.5
|
3663
3672
|
specification_version: 4
|
3664
3673
|
summary: GRPC system in Ruby
|
3665
3674
|
test_files:
|