grpc 1.30.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/Makefile +20074 -0
- data/etc/roots.pem +4644 -0
- data/include/grpc/byte_buffer.h +27 -0
- data/include/grpc/byte_buffer_reader.h +26 -0
- data/include/grpc/census.h +40 -0
- data/include/grpc/compression.h +75 -0
- data/include/grpc/fork.h +26 -0
- data/include/grpc/grpc.h +540 -0
- data/include/grpc/grpc_cronet.h +38 -0
- data/include/grpc/grpc_posix.h +59 -0
- data/include/grpc/grpc_security.h +1019 -0
- data/include/grpc/grpc_security_constants.h +146 -0
- data/include/grpc/impl/codegen/atm.h +95 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +91 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +85 -0
- data/include/grpc/impl/codegen/atm_windows.h +128 -0
- data/include/grpc/impl/codegen/byte_buffer.h +101 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +42 -0
- data/include/grpc/impl/codegen/compression_types.h +108 -0
- data/include/grpc/impl/codegen/connectivity_state.h +44 -0
- data/include/grpc/impl/codegen/fork.h +48 -0
- data/include/grpc/impl/codegen/gpr_slice.h +69 -0
- data/include/grpc/impl/codegen/gpr_types.h +59 -0
- data/include/grpc/impl/codegen/grpc_types.h +785 -0
- data/include/grpc/impl/codegen/log.h +112 -0
- data/include/grpc/impl/codegen/port_platform.h +720 -0
- data/include/grpc/impl/codegen/propagation_bits.h +52 -0
- data/include/grpc/impl/codegen/slice.h +127 -0
- data/include/grpc/impl/codegen/status.h +154 -0
- data/include/grpc/impl/codegen/sync.h +65 -0
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/impl/codegen/sync_custom.h +38 -0
- data/include/grpc/impl/codegen/sync_generic.h +48 -0
- data/include/grpc/impl/codegen/sync_posix.h +52 -0
- data/include/grpc/impl/codegen/sync_windows.h +36 -0
- data/include/grpc/load_reporting.h +48 -0
- data/include/grpc/module.modulemap +64 -0
- data/include/grpc/slice.h +172 -0
- data/include/grpc/slice_buffer.h +84 -0
- data/include/grpc/status.h +26 -0
- data/include/grpc/support/alloc.h +52 -0
- data/include/grpc/support/atm.h +26 -0
- data/include/grpc/support/atm_gcc_atomic.h +26 -0
- data/include/grpc/support/atm_gcc_sync.h +26 -0
- data/include/grpc/support/atm_windows.h +26 -0
- data/include/grpc/support/cpu.h +44 -0
- data/include/grpc/support/log.h +26 -0
- data/include/grpc/support/log_windows.h +38 -0
- data/include/grpc/support/port_platform.h +24 -0
- data/include/grpc/support/string_util.h +51 -0
- data/include/grpc/support/sync.h +282 -0
- data/include/grpc/support/sync_abseil.h +26 -0
- data/include/grpc/support/sync_custom.h +26 -0
- data/include/grpc/support/sync_generic.h +26 -0
- data/include/grpc/support/sync_posix.h +26 -0
- data/include/grpc/support/sync_windows.h +26 -0
- data/include/grpc/support/thd_id.h +44 -0
- data/include/grpc/support/time.h +92 -0
- data/include/grpc/support/workaround_list.h +31 -0
- data/src/core/ext/filters/census/grpc_context.cc +38 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +81 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +36 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +181 -0
- data/src/core/ext/filters/client_channel/backup_poller.h +41 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +264 -0
- data/src/core/ext/filters/client_channel/client_channel.cc +4059 -0
- data/src/core/ext/filters/client_channel/client_channel.h +82 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +95 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +78 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +55 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +47 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +70 -0
- data/src/core/ext/filters/client_channel/connector.h +79 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +179 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +68 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +606 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.h +175 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +389 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +34 -0
- data/src/core/ext/filters/client_channel/http_proxy.cc +216 -0
- data/src/core/ext/filters/client_channel/http_proxy.h +28 -0
- data/src/core/ext/filters/client_channel/lb_policy.cc +138 -0
- data/src/core/ext/filters/client_channel/lb_policy.h +421 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +297 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +157 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +29 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1754 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +43 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +45 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +121 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +91 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +75 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +193 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +74 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +509 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +504 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +448 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +417 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +32 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +47 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +182 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +65 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +96 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +57 -0
- data/src/core/ext/filters/client_channel/parse_address.cc +238 -0
- data/src/core/ext/filters/client_channel/parse_address.h +53 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +54 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +89 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +50 -0
- data/src/core/ext/filters/client_channel/resolver.cc +85 -0
- data/src/core/ext/filters/client_channel/resolver.h +144 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +535 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +484 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +104 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +177 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +107 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +897 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +819 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +97 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +68 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +38 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +34 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +28 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +318 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +383 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +93 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +188 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +184 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +73 -0
- data/src/core/ext/filters/client_channel/resolver_registry.cc +197 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +89 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +443 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +127 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +348 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +123 -0
- data/src/core/ext/filters/client_channel/retry_throttle.cc +191 -0
- data/src/core/ext/filters/client_channel/retry_throttle.h +77 -0
- data/src/core/ext/filters/client_channel/server_address.cc +48 -0
- data/src/core/ext/filters/client_channel/server_address.h +90 -0
- data/src/core/ext/filters/client_channel/service_config.cc +221 -0
- data/src/core/ext/filters/client_channel/service_config.h +123 -0
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +1127 -0
- data/src/core/ext/filters/client_channel/subchannel.h +427 -0
- data/src/core/ext/filters/client_channel/subchannel_interface.h +94 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +97 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +91 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +1906 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.h +280 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +342 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +88 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +46 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +26 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +106 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +2367 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.h +309 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +115 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +211 -0
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +440 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +386 -0
- data/src/core/ext/filters/deadline/deadline_filter.h +90 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +596 -0
- data/src/core/ext/filters/http/client/http_client_filter.h +31 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +159 -0
- data/src/core/ext/filters/http/client_authority_filter.h +34 -0
- data/src/core/ext/filters/http/http_filters_plugin.cc +104 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +546 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.h +53 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +528 -0
- data/src/core/ext/filters/http/server/http_server_filter.h +29 -0
- data/src/core/ext/filters/max_age/max_age_filter.cc +556 -0
- data/src/core/ext/filters/max_age/max_age_filter.h +26 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +423 -0
- data/src/core/ext/filters/message_size/message_size_filter.h +59 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +210 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +27 -0
- data/src/core/ext/filters/workarounds/workaround_utils.cc +53 -0
- data/src/core/ext/filters/workarounds/workaround_utils.h +39 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +44 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +36 -0
- data/src/core/ext/transport/chttp2/client/authority.cc +42 -0
- data/src/core/ext/transport/chttp2/client/authority.h +36 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +206 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +58 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +112 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +79 -0
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +225 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +451 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +33 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +45 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +75 -0
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +250 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +56 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +230 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +42 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +37 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +3346 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +52 -0
- data/src/core/ext/transport/chttp2/transport/context_list.cc +69 -0
- data/src/core/ext/transport/chttp2/transport/context_list.h +53 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +408 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +474 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +47 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +307 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.h +82 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +187 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +62 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +133 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +122 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +50 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +242 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +60 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +123 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +44 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +900 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +107 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1761 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +117 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +246 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +148 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +62 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +61 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +92 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +32 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +66 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +58 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +864 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +803 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +216 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +177 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.h +67 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +56 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +60 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +706 -0
- data/src/core/ext/transport/inproc/inproc_plugin.cc +28 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +1296 -0
- data/src/core/ext/transport/inproc/inproc_transport.h +35 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +21 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +403 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1447 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +218 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +69 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +305 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +328 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +313 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +897 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +96 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +322 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +642 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +172 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +673 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +80 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +152 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +518 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +129 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +392 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +92 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +266 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +324 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +109 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +399 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +145 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +30 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +815 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +3032 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +228 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +316 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1132 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +24 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +50 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.h +36 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +144 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +39 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +87 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +50 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +89 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +17 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +18 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +66 -0
- data/src/core/ext/upb-generated/google/api/http.upb.h +190 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +486 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1696 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +22 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +50 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +79 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +215 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +106 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +238 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +33 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +74 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +49 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +126 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +212 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +693 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +42 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +109 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +36 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +84 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +141 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +393 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +58 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +144 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +448 -0
- data/src/core/ext/upb-generated/validate/validate.upb.h +2073 -0
- data/src/core/lib/avl/avl.cc +306 -0
- data/src/core/lib/avl/avl.h +94 -0
- data/src/core/lib/backoff/backoff.cc +78 -0
- data/src/core/lib/backoff/backoff.h +89 -0
- data/src/core/lib/channel/channel_args.cc +380 -0
- data/src/core/lib/channel/channel_args.h +135 -0
- data/src/core/lib/channel/channel_stack.cc +252 -0
- data/src/core/lib/channel/channel_stack.h +304 -0
- data/src/core/lib/channel/channel_stack_builder.cc +323 -0
- data/src/core/lib/channel/channel_stack_builder.h +166 -0
- data/src/core/lib/channel/channel_trace.cc +194 -0
- data/src/core/lib/channel/channel_trace.h +134 -0
- data/src/core/lib/channel/channelz.cc +543 -0
- data/src/core/lib/channel/channelz.h +334 -0
- data/src/core/lib/channel/channelz_registry.cc +267 -0
- data/src/core/lib/channel/channelz_registry.h +97 -0
- data/src/core/lib/channel/connected_channel.cc +246 -0
- data/src/core/lib/channel/connected_channel.h +34 -0
- data/src/core/lib/channel/context.h +49 -0
- data/src/core/lib/channel/handshaker.cc +262 -0
- data/src/core/lib/channel/handshaker.h +179 -0
- data/src/core/lib/channel/handshaker_factory.h +42 -0
- data/src/core/lib/channel/handshaker_registry.cc +105 -0
- data/src/core/lib/channel/handshaker_registry.h +54 -0
- data/src/core/lib/channel/status_util.cc +99 -0
- data/src/core/lib/channel/status_util.h +58 -0
- data/src/core/lib/compression/algorithm_metadata.h +61 -0
- data/src/core/lib/compression/compression.cc +179 -0
- data/src/core/lib/compression/compression_args.cc +134 -0
- data/src/core/lib/compression/compression_args.h +56 -0
- data/src/core/lib/compression/compression_internal.cc +280 -0
- data/src/core/lib/compression/compression_internal.h +96 -0
- data/src/core/lib/compression/message_compress.cc +192 -0
- data/src/core/lib/compression/message_compress.h +40 -0
- data/src/core/lib/compression/stream_compression.cc +80 -0
- data/src/core/lib/compression/stream_compression.h +116 -0
- data/src/core/lib/compression/stream_compression_gzip.cc +230 -0
- data/src/core/lib/compression/stream_compression_gzip.h +28 -0
- data/src/core/lib/compression/stream_compression_identity.cc +92 -0
- data/src/core/lib/compression/stream_compression_identity.h +29 -0
- data/src/core/lib/debug/stats.cc +172 -0
- data/src/core/lib/debug/stats.h +70 -0
- data/src/core/lib/debug/stats_data.cc +687 -0
- data/src/core/lib/debug/stats_data.h +555 -0
- data/src/core/lib/debug/trace.cc +154 -0
- data/src/core/lib/debug/trace.h +131 -0
- data/src/core/lib/gpr/alloc.cc +74 -0
- data/src/core/lib/gpr/alloc.h +28 -0
- data/src/core/lib/gpr/arena.h +47 -0
- data/src/core/lib/gpr/atm.cc +35 -0
- data/src/core/lib/gpr/cpu_iphone.cc +36 -0
- data/src/core/lib/gpr/cpu_linux.cc +82 -0
- data/src/core/lib/gpr/cpu_posix.cc +83 -0
- data/src/core/lib/gpr/cpu_windows.cc +33 -0
- data/src/core/lib/gpr/env.h +40 -0
- data/src/core/lib/gpr/env_linux.cc +76 -0
- data/src/core/lib/gpr/env_posix.cc +47 -0
- data/src/core/lib/gpr/env_windows.cc +74 -0
- data/src/core/lib/gpr/log.cc +98 -0
- data/src/core/lib/gpr/log_android.cc +76 -0
- data/src/core/lib/gpr/log_linux.cc +97 -0
- data/src/core/lib/gpr/log_posix.cc +95 -0
- data/src/core/lib/gpr/log_windows.cc +102 -0
- data/src/core/lib/gpr/murmur_hash.cc +80 -0
- data/src/core/lib/gpr/murmur_hash.h +29 -0
- data/src/core/lib/gpr/spinlock.h +45 -0
- data/src/core/lib/gpr/string.cc +341 -0
- data/src/core/lib/gpr/string.h +111 -0
- data/src/core/lib/gpr/string_posix.cc +72 -0
- data/src/core/lib/gpr/string_util_windows.cc +82 -0
- data/src/core/lib/gpr/string_windows.cc +69 -0
- data/src/core/lib/gpr/string_windows.h +32 -0
- data/src/core/lib/gpr/sync.cc +124 -0
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +176 -0
- data/src/core/lib/gpr/sync_windows.cc +120 -0
- data/src/core/lib/gpr/time.cc +263 -0
- data/src/core/lib/gpr/time_posix.cc +186 -0
- data/src/core/lib/gpr/time_precise.cc +165 -0
- data/src/core/lib/gpr/time_precise.h +66 -0
- data/src/core/lib/gpr/time_windows.cc +98 -0
- data/src/core/lib/gpr/tls.h +68 -0
- data/src/core/lib/gpr/tls_gcc.h +52 -0
- data/src/core/lib/gpr/tls_msvc.h +52 -0
- data/src/core/lib/gpr/tls_pthread.cc +30 -0
- data/src/core/lib/gpr/tls_pthread.h +56 -0
- data/src/core/lib/gpr/tmpfile.h +32 -0
- data/src/core/lib/gpr/tmpfile_msys.cc +58 -0
- data/src/core/lib/gpr/tmpfile_posix.cc +70 -0
- data/src/core/lib/gpr/tmpfile_windows.cc +69 -0
- data/src/core/lib/gpr/useful.h +65 -0
- data/src/core/lib/gpr/wrap_memcpy.cc +42 -0
- data/src/core/lib/gprpp/arena.cc +103 -0
- data/src/core/lib/gprpp/arena.h +120 -0
- data/src/core/lib/gprpp/atomic.h +104 -0
- data/src/core/lib/gprpp/debug_location.h +53 -0
- data/src/core/lib/gprpp/fork.cc +242 -0
- data/src/core/lib/gprpp/fork.h +103 -0
- data/src/core/lib/gprpp/global_config.h +96 -0
- data/src/core/lib/gprpp/global_config_custom.h +29 -0
- data/src/core/lib/gprpp/global_config_env.cc +135 -0
- data/src/core/lib/gprpp/global_config_env.h +131 -0
- data/src/core/lib/gprpp/global_config_generic.h +44 -0
- data/src/core/lib/gprpp/host_port.cc +112 -0
- data/src/core/lib/gprpp/host_port.h +56 -0
- data/src/core/lib/gprpp/manual_constructor.h +213 -0
- data/src/core/lib/gprpp/map.h +53 -0
- data/src/core/lib/gprpp/memory.h +51 -0
- data/src/core/lib/gprpp/mpscq.cc +108 -0
- data/src/core/lib/gprpp/mpscq.h +98 -0
- data/src/core/lib/gprpp/orphanable.h +129 -0
- data/src/core/lib/gprpp/ref_counted.h +312 -0
- data/src/core/lib/gprpp/ref_counted_ptr.h +192 -0
- data/src/core/lib/gprpp/sync.h +135 -0
- data/src/core/lib/gprpp/thd.h +174 -0
- data/src/core/lib/gprpp/thd_posix.cc +204 -0
- data/src/core/lib/gprpp/thd_windows.cc +176 -0
- data/src/core/lib/http/format_request.cc +103 -0
- data/src/core/lib/http/format_request.h +34 -0
- data/src/core/lib/http/httpcli.cc +303 -0
- data/src/core/lib/http/httpcli.h +126 -0
- data/src/core/lib/http/httpcli_security_connector.cc +214 -0
- data/src/core/lib/http/parser.cc +372 -0
- data/src/core/lib/http/parser.h +113 -0
- data/src/core/lib/iomgr/block_annotate.h +57 -0
- data/src/core/lib/iomgr/buffer_list.cc +308 -0
- data/src/core/lib/iomgr/buffer_list.h +165 -0
- data/src/core/lib/iomgr/call_combiner.cc +256 -0
- data/src/core/lib/iomgr/call_combiner.h +217 -0
- data/src/core/lib/iomgr/cfstream_handle.cc +209 -0
- data/src/core/lib/iomgr/cfstream_handle.h +90 -0
- data/src/core/lib/iomgr/closure.h +255 -0
- data/src/core/lib/iomgr/combiner.cc +339 -0
- data/src/core/lib/iomgr/combiner.h +88 -0
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/dynamic_annotations.h +67 -0
- data/src/core/lib/iomgr/endpoint.cc +67 -0
- data/src/core/lib/iomgr/endpoint.h +106 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +376 -0
- data/src/core/lib/iomgr/endpoint_cfstream.h +49 -0
- data/src/core/lib/iomgr/endpoint_pair.h +33 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +73 -0
- data/src/core/lib/iomgr/endpoint_pair_uv.cc +40 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +87 -0
- data/src/core/lib/iomgr/error.cc +812 -0
- data/src/core/lib/iomgr/error.h +276 -0
- data/src/core/lib/iomgr/error_cfstream.cc +52 -0
- data/src/core/lib/iomgr/error_cfstream.h +31 -0
- data/src/core/lib/iomgr/error_internal.h +61 -0
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +1365 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.h +31 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +1656 -0
- data/src/core/lib/iomgr/ev_epollex_linux.h +30 -0
- data/src/core/lib/iomgr/ev_poll_posix.cc +1427 -0
- data/src/core/lib/iomgr/ev_poll_posix.h +29 -0
- data/src/core/lib/iomgr/ev_posix.cc +417 -0
- data/src/core/lib/iomgr/ev_posix.h +207 -0
- data/src/core/lib/iomgr/ev_windows.cc +30 -0
- data/src/core/lib/iomgr/exec_ctx.cc +224 -0
- data/src/core/lib/iomgr/exec_ctx.h +380 -0
- data/src/core/lib/iomgr/executor.cc +469 -0
- data/src/core/lib/iomgr/executor.h +122 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +183 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +175 -0
- data/src/core/lib/iomgr/executor/threadpool.cc +137 -0
- data/src/core/lib/iomgr/executor/threadpool.h +149 -0
- data/src/core/lib/iomgr/fork_posix.cc +119 -0
- data/src/core/lib/iomgr/fork_windows.cc +41 -0
- data/src/core/lib/iomgr/gethostname.h +26 -0
- data/src/core/lib/iomgr/gethostname_fallback.cc +30 -0
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +40 -0
- data/src/core/lib/iomgr/gethostname_sysconf.cc +40 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +30 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +42 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +38 -0
- data/src/core/lib/iomgr/internal_errqueue.cc +67 -0
- data/src/core/lib/iomgr/internal_errqueue.h +191 -0
- data/src/core/lib/iomgr/iocp_windows.cc +157 -0
- data/src/core/lib/iomgr/iocp_windows.h +48 -0
- data/src/core/lib/iomgr/iomgr.cc +194 -0
- data/src/core/lib/iomgr/iomgr.h +60 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +79 -0
- data/src/core/lib/iomgr/iomgr_custom.h +49 -0
- data/src/core/lib/iomgr/iomgr_internal.cc +57 -0
- data/src/core/lib/iomgr/iomgr_internal.h +73 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +89 -0
- data/src/core/lib/iomgr/iomgr_posix.h +26 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +171 -0
- data/src/core/lib/iomgr/iomgr_uv.cc +43 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +106 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +105 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.h +36 -0
- data/src/core/lib/iomgr/load_file.cc +81 -0
- data/src/core/lib/iomgr/load_file.h +35 -0
- data/src/core/lib/iomgr/lockfree_event.cc +255 -0
- data/src/core/lib/iomgr/lockfree_event.h +72 -0
- data/src/core/lib/iomgr/nameser.h +106 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
- data/src/core/lib/iomgr/polling_entity.cc +96 -0
- data/src/core/lib/iomgr/polling_entity.h +68 -0
- data/src/core/lib/iomgr/pollset.cc +56 -0
- data/src/core/lib/iomgr/pollset.h +99 -0
- data/src/core/lib/iomgr/pollset_custom.cc +106 -0
- data/src/core/lib/iomgr/pollset_custom.h +35 -0
- data/src/core/lib/iomgr/pollset_set.cc +55 -0
- data/src/core/lib/iomgr/pollset_set.h +55 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +48 -0
- data/src/core/lib/iomgr/pollset_set_custom.h +26 -0
- data/src/core/lib/iomgr/pollset_set_windows.cc +51 -0
- data/src/core/lib/iomgr/pollset_set_windows.h +26 -0
- data/src/core/lib/iomgr/pollset_uv.cc +93 -0
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/pollset_windows.cc +243 -0
- data/src/core/lib/iomgr/pollset_windows.h +70 -0
- data/src/core/lib/iomgr/port.h +244 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.cc +50 -0
- data/src/core/lib/iomgr/resolve_address.h +81 -0
- data/src/core/lib/iomgr/resolve_address_custom.cc +173 -0
- data/src/core/lib/iomgr/resolve_address_custom.h +45 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +178 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +154 -0
- data/src/core/lib/iomgr/resource_quota.cc +1013 -0
- data/src/core/lib/iomgr/resource_quota.h +177 -0
- data/src/core/lib/iomgr/sockaddr.h +32 -0
- data/src/core/lib/iomgr/sockaddr_custom.h +54 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +55 -0
- data/src/core/lib/iomgr/sockaddr_utils.cc +293 -0
- data/src/core/lib/iomgr/sockaddr_utils.h +79 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +55 -0
- data/src/core/lib/iomgr/socket_factory_posix.cc +94 -0
- data/src/core/lib/iomgr/socket_factory_posix.h +68 -0
- data/src/core/lib/iomgr/socket_mutator.cc +83 -0
- data/src/core/lib/iomgr/socket_mutator.h +60 -0
- data/src/core/lib/iomgr/socket_utils.h +47 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +473 -0
- data/src/core/lib/iomgr/socket_utils_linux.cc +42 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +58 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +163 -0
- data/src/core/lib/iomgr/socket_utils_uv.cc +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.cc +47 -0
- data/src/core/lib/iomgr/socket_windows.cc +203 -0
- data/src/core/lib/iomgr/socket_windows.h +127 -0
- data/src/core/lib/iomgr/sys_epoll_wrapper.h +30 -0
- data/src/core/lib/iomgr/tcp_client.cc +36 -0
- data/src/core/lib/iomgr/tcp_client.h +52 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +215 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +163 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +360 -0
- data/src/core/lib/iomgr/tcp_client_posix.h +68 -0
- data/src/core/lib/iomgr/tcp_client_windows.cc +232 -0
- data/src/core/lib/iomgr/tcp_custom.cc +370 -0
- data/src/core/lib/iomgr/tcp_custom.h +84 -0
- data/src/core/lib/iomgr/tcp_posix.cc +1855 -0
- data/src/core/lib/iomgr/tcp_posix.h +60 -0
- data/src/core/lib/iomgr/tcp_server.cc +78 -0
- data/src/core/lib/iomgr/tcp_server.h +143 -0
- data/src/core/lib/iomgr/tcp_server_custom.cc +485 -0
- data/src/core/lib/iomgr/tcp_server_posix.cc +638 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +125 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +223 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +181 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +36 -0
- data/src/core/lib/iomgr/tcp_server_windows.cc +564 -0
- data/src/core/lib/iomgr/tcp_uv.cc +419 -0
- data/src/core/lib/iomgr/tcp_windows.cc +533 -0
- data/src/core/lib/iomgr/tcp_windows.h +53 -0
- data/src/core/lib/iomgr/time_averaged_stats.cc +64 -0
- data/src/core/lib/iomgr/time_averaged_stats.h +72 -0
- data/src/core/lib/iomgr/timer.cc +45 -0
- data/src/core/lib/iomgr/timer.h +127 -0
- data/src/core/lib/iomgr/timer_custom.cc +95 -0
- data/src/core/lib/iomgr/timer_custom.h +43 -0
- data/src/core/lib/iomgr/timer_generic.cc +747 -0
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.cc +135 -0
- data/src/core/lib/iomgr/timer_heap.h +43 -0
- data/src/core/lib/iomgr/timer_manager.cc +363 -0
- data/src/core/lib/iomgr/timer_manager.h +41 -0
- data/src/core/lib/iomgr/timer_uv.cc +66 -0
- data/src/core/lib/iomgr/udp_server.cc +747 -0
- data/src/core/lib/iomgr/udp_server.h +101 -0
- data/src/core/lib/iomgr/unix_sockets_posix.cc +104 -0
- data/src/core/lib/iomgr/unix_sockets_posix.h +43 -0
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +49 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +82 -0
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +38 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +100 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +28 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +69 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +96 -0
- data/src/core/lib/iomgr/work_serializer.cc +155 -0
- data/src/core/lib/iomgr/work_serializer.h +65 -0
- data/src/core/lib/json/json.h +240 -0
- data/src/core/lib/json/json_reader.cc +855 -0
- data/src/core/lib/json/json_writer.cc +337 -0
- data/src/core/lib/profiling/basic_timers.cc +293 -0
- data/src/core/lib/profiling/stap_timers.cc +50 -0
- data/src/core/lib/profiling/timers.h +94 -0
- data/src/core/lib/security/context/security_context.cc +321 -0
- data/src/core/lib/security/context/security_context.h +150 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +110 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.h +109 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +72 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +57 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +68 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +33 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +102 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +127 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +46 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +75 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +59 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +229 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +106 -0
- data/src/core/lib/security/credentials/credentials.cc +162 -0
- data/src/core/lib/security/credentials/credentials.h +283 -0
- data/src/core/lib/security/credentials/credentials_metadata.cc +62 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +112 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +87 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +41 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +383 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +87 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +80 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.h +49 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +288 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +75 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +172 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +80 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +925 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +122 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +64 -0
- data/src/core/lib/security/credentials/local/local_credentials.h +61 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +771 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +171 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +269 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +72 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +364 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +99 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +245 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +313 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +128 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.h +62 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +301 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +76 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +324 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +45 -0
- data/src/core/lib/security/security_connector/load_system_roots.h +29 -0
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +32 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +171 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +44 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +281 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.h +59 -0
- data/src/core/lib/security/security_connector/security_connector.cc +129 -0
- data/src/core/lib/security/security_connector/security_connector.h +176 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +439 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +77 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +563 -0
- data/src/core/lib/security/security_connector/ssl_utils.h +184 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +32 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.h +30 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +603 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +183 -0
- data/src/core/lib/security/transport/auth_filters.h +35 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +466 -0
- data/src/core/lib/security/transport/secure_endpoint.cc +446 -0
- data/src/core/lib/security/transport/secure_endpoint.h +41 -0
- data/src/core/lib/security/transport/security_handshaker.cc +574 -0
- data/src/core/lib/security/transport/security_handshaker.h +45 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +326 -0
- data/src/core/lib/security/transport/target_authority_table.cc +75 -0
- data/src/core/lib/security/transport/target_authority_table.h +40 -0
- data/src/core/lib/security/transport/tsi_error.cc +29 -0
- data/src/core/lib/security/transport/tsi_error.h +29 -0
- data/src/core/lib/security/util/json_util.cc +73 -0
- data/src/core/lib/security/util/json_util.h +44 -0
- data/src/core/lib/slice/b64.cc +239 -0
- data/src/core/lib/slice/b64.h +50 -0
- data/src/core/lib/slice/percent_encoding.cc +169 -0
- data/src/core/lib/slice/percent_encoding.h +65 -0
- data/src/core/lib/slice/slice.cc +559 -0
- data/src/core/lib/slice/slice_buffer.cc +413 -0
- data/src/core/lib/slice/slice_hash_table.h +199 -0
- data/src/core/lib/slice/slice_intern.cc +375 -0
- data/src/core/lib/slice/slice_internal.h +364 -0
- data/src/core/lib/slice/slice_string_helpers.cc +127 -0
- data/src/core/lib/slice/slice_string_helpers.h +49 -0
- data/src/core/lib/slice/slice_utils.h +200 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +102 -0
- data/src/core/lib/surface/api_trace.cc +24 -0
- data/src/core/lib/surface/api_trace.h +52 -0
- data/src/core/lib/surface/byte_buffer.cc +92 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +101 -0
- data/src/core/lib/surface/call.cc +2044 -0
- data/src/core/lib/surface/call.h +125 -0
- data/src/core/lib/surface/call_details.cc +41 -0
- data/src/core/lib/surface/call_log_batch.cc +111 -0
- data/src/core/lib/surface/call_test_only.h +43 -0
- data/src/core/lib/surface/channel.cc +543 -0
- data/src/core/lib/surface/channel.h +158 -0
- data/src/core/lib/surface/channel_init.cc +109 -0
- data/src/core/lib/surface/channel_init.h +78 -0
- data/src/core/lib/surface/channel_ping.cc +64 -0
- data/src/core/lib/surface/channel_stack_type.cc +58 -0
- data/src/core/lib/surface/channel_stack_type.h +47 -0
- data/src/core/lib/surface/completion_queue.cc +1438 -0
- data/src/core/lib/surface/completion_queue.h +97 -0
- data/src/core/lib/surface/completion_queue_factory.cc +88 -0
- data/src/core/lib/surface/completion_queue_factory.h +38 -0
- data/src/core/lib/surface/event_string.cc +61 -0
- data/src/core/lib/surface/event_string.h +31 -0
- data/src/core/lib/surface/init.cc +250 -0
- data/src/core/lib/surface/init.h +27 -0
- data/src/core/lib/surface/init_secure.cc +81 -0
- data/src/core/lib/surface/lame_client.cc +191 -0
- data/src/core/lib/surface/lame_client.h +28 -0
- data/src/core/lib/surface/metadata_array.cc +36 -0
- data/src/core/lib/surface/server.cc +1800 -0
- data/src/core/lib/surface/server.h +99 -0
- data/src/core/lib/surface/validate_metadata.cc +105 -0
- data/src/core/lib/surface/validate_metadata.h +41 -0
- data/src/core/lib/surface/version.cc +28 -0
- data/src/core/lib/transport/bdp_estimator.cc +87 -0
- data/src/core/lib/transport/bdp_estimator.h +94 -0
- data/src/core/lib/transport/byte_stream.cc +158 -0
- data/src/core/lib/transport/byte_stream.h +165 -0
- data/src/core/lib/transport/connectivity_state.cc +180 -0
- data/src/core/lib/transport/connectivity_state.h +131 -0
- data/src/core/lib/transport/error_utils.cc +141 -0
- data/src/core/lib/transport/error_utils.h +46 -0
- data/src/core/lib/transport/http2_errors.h +41 -0
- data/src/core/lib/transport/metadata.cc +679 -0
- data/src/core/lib/transport/metadata.h +446 -0
- data/src/core/lib/transport/metadata_batch.cc +392 -0
- data/src/core/lib/transport/metadata_batch.h +191 -0
- data/src/core/lib/transport/pid_controller.cc +51 -0
- data/src/core/lib/transport/pid_controller.h +116 -0
- data/src/core/lib/transport/static_metadata.cc +1230 -0
- data/src/core/lib/transport/static_metadata.h +597 -0
- data/src/core/lib/transport/status_conversion.cc +92 -0
- data/src/core/lib/transport/status_conversion.h +38 -0
- data/src/core/lib/transport/status_metadata.cc +61 -0
- data/src/core/lib/transport/status_metadata.h +48 -0
- data/src/core/lib/transport/timeout_encoding.cc +151 -0
- data/src/core/lib/transport/timeout_encoding.h +38 -0
- data/src/core/lib/transport/transport.cc +259 -0
- data/src/core/lib/transport/transport.h +456 -0
- data/src/core/lib/transport/transport_impl.h +71 -0
- data/src/core/lib/transport/transport_op_string.cc +169 -0
- data/src/core/lib/uri/uri_parser.cc +314 -0
- data/src/core/lib/uri/uri_parser.h +49 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +121 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +687 -0
- data/src/core/tsi/alts/crypt/gsec.cc +189 -0
- data/src/core/tsi/alts/crypt/gsec.h +454 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +118 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.h +98 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +66 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +255 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +407 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +55 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +114 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +114 -0
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +105 -0
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +103 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +218 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.h +236 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +899 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +161 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +83 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +73 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +674 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +104 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +88 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +64 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +53 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +223 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +171 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +226 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +54 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +144 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +49 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +91 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +174 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +99 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +476 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +199 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +307 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +57 -0
- data/src/core/tsi/fake_transport_security.cc +789 -0
- data/src/core/tsi/fake_transport_security.h +47 -0
- data/src/core/tsi/local_transport_security.cc +211 -0
- data/src/core/tsi/local_transport_security.h +51 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +71 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +57 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +214 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +90 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +75 -0
- data/src/core/tsi/ssl_transport_security.cc +2124 -0
- data/src/core/tsi/ssl_transport_security.h +353 -0
- data/src/core/tsi/ssl_types.h +42 -0
- data/src/core/tsi/transport_security.cc +370 -0
- data/src/core/tsi/transport_security.h +127 -0
- data/src/core/tsi/transport_security_grpc.cc +73 -0
- data/src/core/tsi/transport_security_grpc.h +79 -0
- data/src/core/tsi/transport_security_interface.h +476 -0
- data/src/ruby/bin/math_client.rb +140 -0
- data/src/ruby/bin/math_pb.rb +34 -0
- data/src/ruby/bin/math_server.rb +191 -0
- data/src/ruby/bin/math_services_pb.rb +51 -0
- data/src/ruby/bin/noproto_client.rb +93 -0
- data/src/ruby/bin/noproto_server.rb +97 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +6 -0
- data/src/ruby/ext/grpc/extconf.rb +107 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +64 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +35 -0
- data/src/ruby/ext/grpc/rb_call.c +1050 -0
- data/src/ruby/ext/grpc/rb_call.h +53 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +297 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +31 -0
- data/src/ruby/ext/grpc/rb_channel.c +835 -0
- data/src/ruby/ext/grpc/rb_channel.h +34 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +155 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +38 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +267 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +32 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +100 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +36 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +470 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +29 -0
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +143 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +21 -0
- data/src/ruby/ext/grpc/rb_grpc.c +328 -0
- data/src/ruby/ext/grpc/rb_grpc.h +76 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +573 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +865 -0
- data/src/ruby/ext/grpc/rb_loader.c +57 -0
- data/src/ruby/ext/grpc/rb_loader.h +25 -0
- data/src/ruby/ext/grpc/rb_server.c +372 -0
- data/src/ruby/ext/grpc/rb_server.h +32 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +243 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +32 -0
- data/src/ruby/lib/grpc.rb +37 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +56 -0
- data/src/ruby/lib/grpc/errors.rb +277 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +669 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +233 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +501 -0
- data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
- data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +204 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +551 -0
- data/src/ruby/lib/grpc/generic/service.rb +211 -0
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +40 -0
- data/src/ruby/lib/grpc/grpc.rb +24 -0
- data/src/ruby/lib/grpc/logconfig.rb +44 -0
- data/src/ruby/lib/grpc/notifier.rb +45 -0
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +18 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +51 -0
- data/src/ruby/pb/grpc/health/checker.rb +75 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +31 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +62 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +44 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +49 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +17 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +105 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +16 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +118 -0
- data/src/ruby/spec/call_credentials_spec.rb +42 -0
- data/src/ruby/spec/call_spec.rb +180 -0
- data/src/ruby/spec/channel_connection_spec.rb +126 -0
- data/src/ruby/spec/channel_credentials_spec.rb +82 -0
- data/src/ruby/spec/channel_spec.rb +234 -0
- data/src/ruby/spec/client_auth_spec.rb +126 -0
- data/src/ruby/spec/client_server_spec.rb +664 -0
- data/src/ruby/spec/compression_options_spec.rb +149 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/error_sanity_spec.rb +49 -0
- data/src/ruby/spec/errors_spec.rb +142 -0
- data/src/ruby/spec/generic/active_call_spec.rb +672 -0
- data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +1083 -0
- data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +374 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +127 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +748 -0
- data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
- data/src/ruby/spec/generic/service_spec.rb +263 -0
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +282 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +41 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +82 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +57 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +236 -0
- data/src/ruby/spec/server_credentials_spec.rb +79 -0
- data/src/ruby/spec/server_spec.rb +209 -0
- data/src/ruby/spec/spec_helper.rb +61 -0
- data/src/ruby/spec/support/helpers.rb +107 -0
- data/src/ruby/spec/support/services.rb +160 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +20 -0
- data/src/ruby/spec/testdata/client.key +28 -0
- data/src/ruby/spec/testdata/client.pem +20 -0
- data/src/ruby/spec/testdata/server1.key +28 -0
- data/src/ruby/spec/testdata/server1.pem +22 -0
- data/src/ruby/spec/time_consts_spec.rb +74 -0
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
- data/third_party/abseil-cpp/absl/base/attributes.h +621 -0
- data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
- data/third_party/abseil-cpp/absl/base/casts.h +184 -0
- data/third_party/abseil-cpp/absl/base/config.h +671 -0
- data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
- data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
- data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
- data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
- data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
- data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +240 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +183 -0
- data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +66 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +416 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +152 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +259 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
- data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +140 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
- data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
- data/third_party/abseil-cpp/absl/base/macros.h +220 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
- data/third_party/abseil-cpp/absl/base/options.h +211 -0
- data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
- data/third_party/abseil-cpp/absl/base/port.h +26 -0
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
- data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
- data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
- data/third_party/abseil-cpp/absl/strings/ascii.h +242 -0
- data/third_party/abseil-cpp/absl/strings/charconv.cc +984 -0
- data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
- data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +423 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
- data/third_party/abseil-cpp/absl/strings/match.h +90 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +965 -0
- data/third_party/abseil-cpp/absl/strings/numbers.h +266 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
- data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
- data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
- data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +622 -0
- data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
- data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
- data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
- data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
- data/third_party/abseil-cpp/absl/types/optional.h +776 -0
- data/third_party/abseil-cpp/absl/types/span.h +713 -0
- data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
- data/third_party/address_sorting/address_sorting.c +375 -0
- data/third_party/address_sorting/address_sorting_internal.h +70 -0
- data/third_party/address_sorting/address_sorting_posix.c +97 -0
- data/third_party/address_sorting/address_sorting_windows.c +95 -0
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +113 -0
- data/third_party/boringssl-with-bazel/err_data.c +1439 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +313 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +212 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +303 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +446 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +105 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +97 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +1244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +664 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +387 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +280 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +466 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +700 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +330 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +545 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +192 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +488 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +115 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +470 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +265 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +719 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +184 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +143 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c +447 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +283 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +891 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +418 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +462 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +491 -0
- data/third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +810 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.h +201 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +291 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +2159 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +7872 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/check.c +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +533 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c +160 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/params.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +980 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +339 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +574 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +124 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +99 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c +231 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +443 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +388 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +484 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +273 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +648 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +248 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +489 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +213 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +263 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +445 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +886 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +1288 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +711 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +694 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +186 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1068 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +364 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +284 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +620 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +1302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_des.c +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +785 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +296 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +268 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1252 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +465 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +775 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +1178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9497 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +632 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.h +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +175 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +357 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +29 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +256 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +301 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +167 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +729 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +441 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +391 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +695 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +898 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +1358 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +654 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +361 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +343 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +165 -0
- data/third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +2100 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +348 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +549 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +11585 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +360 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +777 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +530 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +856 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +82 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +431 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +653 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +458 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +275 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +83 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +125 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +157 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +381 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +326 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +2487 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +671 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +389 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +399 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +368 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +334 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +189 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +207 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +72 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +629 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +463 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +503 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +148 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +246 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +288 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +154 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +229 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +843 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +274 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1395 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +459 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +195 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +121 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +911 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +892 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +575 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +190 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +933 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1057 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +137 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +561 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +41 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +638 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +91 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +180 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +212 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +149 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +201 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +177 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +319 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +331 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +457 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +424 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +372 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +118 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +205 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +465 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1050 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +203 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +64 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +186 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +100 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +282 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +175 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +4259 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +236 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +67 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +435 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +215 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +269 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +49 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +102 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +111 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +818 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +294 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +37 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +199 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +5198 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +333 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +542 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +191 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +632 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +681 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +831 -0
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +179 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +837 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +268 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +273 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +232 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +200 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +353 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +675 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +703 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1890 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1805 -0
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +3572 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +724 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +221 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +458 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +432 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +856 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +306 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +1019 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +1718 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +585 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +397 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +3015 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +835 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +1333 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +230 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +277 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +394 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +1358 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +365 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +3870 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +689 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1017 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +513 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1096 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +317 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +703 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +981 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +619 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3147 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1226 -0
- data/third_party/cares/ares_build.h +223 -0
- data/third_party/cares/cares/ares.h +670 -0
- data/third_party/cares/cares/ares__close_sockets.c +61 -0
- data/third_party/cares/cares/ares__get_hostent.c +261 -0
- data/third_party/cares/cares/ares__read_line.c +73 -0
- data/third_party/cares/cares/ares__timeval.c +111 -0
- data/third_party/cares/cares/ares_cancel.c +63 -0
- data/third_party/cares/cares/ares_create_query.c +206 -0
- data/third_party/cares/cares/ares_data.c +222 -0
- data/third_party/cares/cares/ares_data.h +72 -0
- data/third_party/cares/cares/ares_destroy.c +113 -0
- data/third_party/cares/cares/ares_dns.h +103 -0
- data/third_party/cares/cares/ares_expand_name.c +209 -0
- data/third_party/cares/cares/ares_expand_string.c +70 -0
- data/third_party/cares/cares/ares_fds.c +59 -0
- data/third_party/cares/cares/ares_free_hostent.c +41 -0
- data/third_party/cares/cares/ares_free_string.c +25 -0
- data/third_party/cares/cares/ares_getenv.c +30 -0
- data/third_party/cares/cares/ares_getenv.h +26 -0
- data/third_party/cares/cares/ares_gethostbyaddr.c +294 -0
- data/third_party/cares/cares/ares_gethostbyname.c +529 -0
- data/third_party/cares/cares/ares_getnameinfo.c +453 -0
- data/third_party/cares/cares/ares_getopt.c +122 -0
- data/third_party/cares/cares/ares_getopt.h +53 -0
- data/third_party/cares/cares/ares_getsock.c +66 -0
- data/third_party/cares/cares/ares_inet_net_pton.h +25 -0
- data/third_party/cares/cares/ares_init.c +2615 -0
- data/third_party/cares/cares/ares_iphlpapi.h +221 -0
- data/third_party/cares/cares/ares_ipv6.h +78 -0
- data/third_party/cares/cares/ares_library_init.c +195 -0
- data/third_party/cares/cares/ares_library_init.h +43 -0
- data/third_party/cares/cares/ares_llist.c +63 -0
- data/third_party/cares/cares/ares_llist.h +39 -0
- data/third_party/cares/cares/ares_mkquery.c +24 -0
- data/third_party/cares/cares/ares_nowarn.c +260 -0
- data/third_party/cares/cares/ares_nowarn.h +61 -0
- data/third_party/cares/cares/ares_options.c +406 -0
- data/third_party/cares/cares/ares_parse_a_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_mx_reply.c +170 -0
- data/third_party/cares/cares/ares_parse_naptr_reply.c +194 -0
- data/third_party/cares/cares/ares_parse_ns_reply.c +183 -0
- data/third_party/cares/cares/ares_parse_ptr_reply.c +221 -0
- data/third_party/cares/cares/ares_parse_soa_reply.c +133 -0
- data/third_party/cares/cares/ares_parse_srv_reply.c +179 -0
- data/third_party/cares/cares/ares_parse_txt_reply.c +220 -0
- data/third_party/cares/cares/ares_platform.c +11042 -0
- data/third_party/cares/cares/ares_platform.h +43 -0
- data/third_party/cares/cares/ares_private.h +382 -0
- data/third_party/cares/cares/ares_process.c +1473 -0
- data/third_party/cares/cares/ares_query.c +186 -0
- data/third_party/cares/cares/ares_rules.h +125 -0
- data/third_party/cares/cares/ares_search.c +323 -0
- data/third_party/cares/cares/ares_send.c +137 -0
- data/third_party/cares/cares/ares_setup.h +217 -0
- data/third_party/cares/cares/ares_strcasecmp.c +66 -0
- data/third_party/cares/cares/ares_strcasecmp.h +30 -0
- data/third_party/cares/cares/ares_strdup.c +49 -0
- data/third_party/cares/cares/ares_strdup.h +24 -0
- data/third_party/cares/cares/ares_strerror.c +56 -0
- data/third_party/cares/cares/ares_strsplit.c +174 -0
- data/third_party/cares/cares/ares_strsplit.h +43 -0
- data/third_party/cares/cares/ares_timeout.c +88 -0
- data/third_party/cares/cares/ares_version.c +11 -0
- data/third_party/cares/cares/ares_version.h +24 -0
- data/third_party/cares/cares/ares_writev.c +79 -0
- data/third_party/cares/cares/bitncmp.c +59 -0
- data/third_party/cares/cares/bitncmp.h +26 -0
- data/third_party/cares/cares/config-win32.h +351 -0
- data/third_party/cares/cares/inet_net_pton.c +450 -0
- data/third_party/cares/cares/inet_ntop.c +207 -0
- data/third_party/cares/cares/setup_once.h +554 -0
- data/third_party/cares/cares/windows_port.c +22 -0
- data/third_party/cares/config_darwin/ares_config.h +428 -0
- data/third_party/cares/config_freebsd/ares_config.h +505 -0
- data/third_party/cares/config_linux/ares_config.h +461 -0
- data/third_party/cares/config_openbsd/ares_config.h +505 -0
- data/third_party/upb/upb/decode.c +609 -0
- data/third_party/upb/upb/decode.h +21 -0
- data/third_party/upb/upb/encode.c +378 -0
- data/third_party/upb/upb/encode.h +21 -0
- data/third_party/upb/upb/generated_util.h +105 -0
- data/third_party/upb/upb/msg.c +111 -0
- data/third_party/upb/upb/msg.h +69 -0
- data/third_party/upb/upb/port.c +26 -0
- data/third_party/upb/upb/port_def.inc +150 -0
- data/third_party/upb/upb/port_undef.inc +21 -0
- data/third_party/upb/upb/table.c +913 -0
- data/third_party/upb/upb/table.int.h +507 -0
- data/third_party/upb/upb/upb.c +261 -0
- data/third_party/upb/upb/upb.h +364 -0
- data/third_party/zlib/adler32.c +186 -0
- data/third_party/zlib/compress.c +86 -0
- data/third_party/zlib/crc32.c +442 -0
- data/third_party/zlib/crc32.h +441 -0
- data/third_party/zlib/deflate.c +2163 -0
- data/third_party/zlib/deflate.h +349 -0
- data/third_party/zlib/gzclose.c +25 -0
- data/third_party/zlib/gzguts.h +218 -0
- data/third_party/zlib/gzlib.c +637 -0
- data/third_party/zlib/gzread.c +654 -0
- data/third_party/zlib/gzwrite.c +665 -0
- data/third_party/zlib/infback.c +640 -0
- data/third_party/zlib/inffast.c +323 -0
- data/third_party/zlib/inffast.h +11 -0
- data/third_party/zlib/inffixed.h +94 -0
- data/third_party/zlib/inflate.c +1561 -0
- data/third_party/zlib/inflate.h +125 -0
- data/third_party/zlib/inftrees.c +304 -0
- data/third_party/zlib/inftrees.h +62 -0
- data/third_party/zlib/trees.c +1203 -0
- data/third_party/zlib/trees.h +128 -0
- data/third_party/zlib/uncompr.c +93 -0
- data/third_party/zlib/zconf.h +534 -0
- data/third_party/zlib/zlib.h +1912 -0
- data/third_party/zlib/zutil.c +325 -0
- data/third_party/zlib/zutil.h +271 -0
- metadata +2029 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
/* Copyright (c) 2018, Google Inc.
|
2
|
+
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
6
|
+
*
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
14
|
+
|
15
|
+
#ifndef OPENSSL_HEADER_CRYPTO_FIPSMODULE_TLS_INTERNAL_H
|
16
|
+
#define OPENSSL_HEADER_CRYPTO_FIPSMODULE_TLS_INTERNAL_H
|
17
|
+
|
18
|
+
#include <openssl/base.h>
|
19
|
+
|
20
|
+
#if defined(__cplusplus)
|
21
|
+
extern "C" {
|
22
|
+
#endif
|
23
|
+
|
24
|
+
|
25
|
+
// tls1_prf calculates |out_len| bytes of the TLS PDF, using |digest|, and
|
26
|
+
// writes them to |out|. It returns one on success and zero on error.
|
27
|
+
OPENSSL_EXPORT int CRYPTO_tls1_prf(const EVP_MD *digest,
|
28
|
+
uint8_t *out, size_t out_len,
|
29
|
+
const uint8_t *secret, size_t secret_len,
|
30
|
+
const char *label, size_t label_len,
|
31
|
+
const uint8_t *seed1, size_t seed1_len,
|
32
|
+
const uint8_t *seed2, size_t seed2_len);
|
33
|
+
|
34
|
+
|
35
|
+
#if defined(__cplusplus)
|
36
|
+
}
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#endif // OPENSSL_HEADER_CRYPTO_FIPSMODULE_TLS_INTERNAL_H
|
@@ -0,0 +1,165 @@
|
|
1
|
+
/* ====================================================================
|
2
|
+
* Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions
|
6
|
+
* are met:
|
7
|
+
*
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
*
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer in
|
13
|
+
* the documentation and/or other materials provided with the
|
14
|
+
* distribution.
|
15
|
+
*
|
16
|
+
* 3. All advertising materials mentioning features or use of this
|
17
|
+
* software must display the following acknowledgment:
|
18
|
+
* "This product includes software developed by the OpenSSL Project
|
19
|
+
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
20
|
+
*
|
21
|
+
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
22
|
+
* endorse or promote products derived from this software without
|
23
|
+
* prior written permission. For written permission, please contact
|
24
|
+
* openssl-core@openssl.org.
|
25
|
+
*
|
26
|
+
* 5. Products derived from this software may not be called "OpenSSL"
|
27
|
+
* nor may "OpenSSL" appear in their names without prior written
|
28
|
+
* permission of the OpenSSL Project.
|
29
|
+
*
|
30
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
31
|
+
* acknowledgment:
|
32
|
+
* "This product includes software developed by the OpenSSL Project
|
33
|
+
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
34
|
+
*
|
35
|
+
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
36
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
37
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
38
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
39
|
+
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
40
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
41
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
42
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
43
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
44
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
45
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
46
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
47
|
+
* ====================================================================
|
48
|
+
*
|
49
|
+
* This product includes cryptographic software written by Eric Young
|
50
|
+
* (eay@cryptsoft.com). This product includes software written by Tim
|
51
|
+
* Hudson (tjh@cryptsoft.com). */
|
52
|
+
|
53
|
+
#include <assert.h>
|
54
|
+
|
55
|
+
#include <openssl/digest.h>
|
56
|
+
#include <openssl/hmac.h>
|
57
|
+
#include <openssl/mem.h>
|
58
|
+
|
59
|
+
#include "internal.h"
|
60
|
+
#include "../../internal.h"
|
61
|
+
|
62
|
+
|
63
|
+
// tls1_P_hash computes the TLS P_<hash> function as described in RFC 5246,
|
64
|
+
// section 5. It XORs |out_len| bytes to |out|, using |md| as the hash and
|
65
|
+
// |secret| as the secret. |label|, |seed1|, and |seed2| are concatenated to
|
66
|
+
// form the seed parameter. It returns true on success and false on failure.
|
67
|
+
static int tls1_P_hash(uint8_t *out, size_t out_len,
|
68
|
+
const EVP_MD *md,
|
69
|
+
const uint8_t *secret, size_t secret_len,
|
70
|
+
const char *label, size_t label_len,
|
71
|
+
const uint8_t *seed1, size_t seed1_len,
|
72
|
+
const uint8_t *seed2, size_t seed2_len) {
|
73
|
+
HMAC_CTX ctx, ctx_tmp, ctx_init;
|
74
|
+
uint8_t A1[EVP_MAX_MD_SIZE];
|
75
|
+
unsigned A1_len;
|
76
|
+
int ret = 0;
|
77
|
+
|
78
|
+
const size_t chunk = EVP_MD_size(md);
|
79
|
+
HMAC_CTX_init(&ctx);
|
80
|
+
HMAC_CTX_init(&ctx_tmp);
|
81
|
+
HMAC_CTX_init(&ctx_init);
|
82
|
+
|
83
|
+
if (!HMAC_Init_ex(&ctx_init, secret, secret_len, md, NULL) ||
|
84
|
+
!HMAC_CTX_copy_ex(&ctx, &ctx_init) ||
|
85
|
+
!HMAC_Update(&ctx, (const uint8_t *) label, label_len) ||
|
86
|
+
!HMAC_Update(&ctx, seed1, seed1_len) ||
|
87
|
+
!HMAC_Update(&ctx, seed2, seed2_len) ||
|
88
|
+
!HMAC_Final(&ctx, A1, &A1_len)) {
|
89
|
+
goto err;
|
90
|
+
}
|
91
|
+
|
92
|
+
for (;;) {
|
93
|
+
unsigned len;
|
94
|
+
uint8_t hmac[EVP_MAX_MD_SIZE];
|
95
|
+
if (!HMAC_CTX_copy_ex(&ctx, &ctx_init) ||
|
96
|
+
!HMAC_Update(&ctx, A1, A1_len) ||
|
97
|
+
// Save a copy of |ctx| to compute the next A1 value below.
|
98
|
+
(out_len > chunk && !HMAC_CTX_copy_ex(&ctx_tmp, &ctx)) ||
|
99
|
+
!HMAC_Update(&ctx, (const uint8_t *) label, label_len) ||
|
100
|
+
!HMAC_Update(&ctx, seed1, seed1_len) ||
|
101
|
+
!HMAC_Update(&ctx, seed2, seed2_len) ||
|
102
|
+
!HMAC_Final(&ctx, hmac, &len)) {
|
103
|
+
goto err;
|
104
|
+
}
|
105
|
+
assert(len == chunk);
|
106
|
+
|
107
|
+
// XOR the result into |out|.
|
108
|
+
if (len > out_len) {
|
109
|
+
len = out_len;
|
110
|
+
}
|
111
|
+
for (unsigned i = 0; i < len; i++) {
|
112
|
+
out[i] ^= hmac[i];
|
113
|
+
}
|
114
|
+
out += len;
|
115
|
+
out_len -= len;
|
116
|
+
|
117
|
+
if (out_len == 0) {
|
118
|
+
break;
|
119
|
+
}
|
120
|
+
|
121
|
+
// Calculate the next A1 value.
|
122
|
+
if (!HMAC_Final(&ctx_tmp, A1, &A1_len)) {
|
123
|
+
goto err;
|
124
|
+
}
|
125
|
+
}
|
126
|
+
|
127
|
+
ret = 1;
|
128
|
+
|
129
|
+
err:
|
130
|
+
OPENSSL_cleanse(A1, sizeof(A1));
|
131
|
+
HMAC_CTX_cleanup(&ctx);
|
132
|
+
HMAC_CTX_cleanup(&ctx_tmp);
|
133
|
+
HMAC_CTX_cleanup(&ctx_init);
|
134
|
+
return ret;
|
135
|
+
}
|
136
|
+
|
137
|
+
int CRYPTO_tls1_prf(const EVP_MD *digest,
|
138
|
+
uint8_t *out, size_t out_len,
|
139
|
+
const uint8_t *secret, size_t secret_len,
|
140
|
+
const char *label, size_t label_len,
|
141
|
+
const uint8_t *seed1, size_t seed1_len,
|
142
|
+
const uint8_t *seed2, size_t seed2_len) {
|
143
|
+
if (out_len == 0) {
|
144
|
+
return 1;
|
145
|
+
}
|
146
|
+
|
147
|
+
OPENSSL_memset(out, 0, out_len);
|
148
|
+
|
149
|
+
if (digest == EVP_md5_sha1()) {
|
150
|
+
// If using the MD5/SHA1 PRF, |secret| is partitioned between MD5 and SHA-1.
|
151
|
+
size_t secret_half = secret_len - (secret_len / 2);
|
152
|
+
if (!tls1_P_hash(out, out_len, EVP_md5(), secret, secret_half, label,
|
153
|
+
label_len, seed1, seed1_len, seed2, seed2_len)) {
|
154
|
+
return 0;
|
155
|
+
}
|
156
|
+
|
157
|
+
// Note that, if |secret_len| is odd, the two halves share a byte.
|
158
|
+
secret += secret_len - secret_half;
|
159
|
+
secret_len = secret_half;
|
160
|
+
digest = EVP_sha1();
|
161
|
+
}
|
162
|
+
|
163
|
+
return tls1_P_hash(out, out_len, digest, secret, secret_len, label, label_len,
|
164
|
+
seed1, seed1_len, seed2, seed2_len);
|
165
|
+
}
|
@@ -0,0 +1,112 @@
|
|
1
|
+
/* Copyright (c) 2014, Google Inc.
|
2
|
+
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
6
|
+
*
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
14
|
+
|
15
|
+
#include <openssl/hkdf.h>
|
16
|
+
|
17
|
+
#include <assert.h>
|
18
|
+
#include <string.h>
|
19
|
+
|
20
|
+
#include <openssl/err.h>
|
21
|
+
#include <openssl/hmac.h>
|
22
|
+
|
23
|
+
#include "../internal.h"
|
24
|
+
|
25
|
+
|
26
|
+
int HKDF(uint8_t *out_key, size_t out_len, const EVP_MD *digest,
|
27
|
+
const uint8_t *secret, size_t secret_len, const uint8_t *salt,
|
28
|
+
size_t salt_len, const uint8_t *info, size_t info_len) {
|
29
|
+
// https://tools.ietf.org/html/rfc5869#section-2
|
30
|
+
uint8_t prk[EVP_MAX_MD_SIZE];
|
31
|
+
size_t prk_len;
|
32
|
+
|
33
|
+
if (!HKDF_extract(prk, &prk_len, digest, secret, secret_len, salt,
|
34
|
+
salt_len) ||
|
35
|
+
!HKDF_expand(out_key, out_len, digest, prk, prk_len, info, info_len)) {
|
36
|
+
return 0;
|
37
|
+
}
|
38
|
+
|
39
|
+
return 1;
|
40
|
+
}
|
41
|
+
|
42
|
+
int HKDF_extract(uint8_t *out_key, size_t *out_len, const EVP_MD *digest,
|
43
|
+
const uint8_t *secret, size_t secret_len, const uint8_t *salt,
|
44
|
+
size_t salt_len) {
|
45
|
+
// https://tools.ietf.org/html/rfc5869#section-2.2
|
46
|
+
|
47
|
+
// If salt is not given, HashLength zeros are used. However, HMAC does that
|
48
|
+
// internally already so we can ignore it.
|
49
|
+
unsigned len;
|
50
|
+
if (HMAC(digest, salt, salt_len, secret, secret_len, out_key, &len) == NULL) {
|
51
|
+
OPENSSL_PUT_ERROR(HKDF, ERR_R_HMAC_LIB);
|
52
|
+
return 0;
|
53
|
+
}
|
54
|
+
*out_len = len;
|
55
|
+
assert(*out_len == EVP_MD_size(digest));
|
56
|
+
return 1;
|
57
|
+
}
|
58
|
+
|
59
|
+
int HKDF_expand(uint8_t *out_key, size_t out_len, const EVP_MD *digest,
|
60
|
+
const uint8_t *prk, size_t prk_len, const uint8_t *info,
|
61
|
+
size_t info_len) {
|
62
|
+
// https://tools.ietf.org/html/rfc5869#section-2.3
|
63
|
+
const size_t digest_len = EVP_MD_size(digest);
|
64
|
+
uint8_t previous[EVP_MAX_MD_SIZE];
|
65
|
+
size_t n, done = 0;
|
66
|
+
unsigned i;
|
67
|
+
int ret = 0;
|
68
|
+
HMAC_CTX hmac;
|
69
|
+
|
70
|
+
// Expand key material to desired length.
|
71
|
+
n = (out_len + digest_len - 1) / digest_len;
|
72
|
+
if (out_len + digest_len < out_len || n > 255) {
|
73
|
+
OPENSSL_PUT_ERROR(HKDF, HKDF_R_OUTPUT_TOO_LARGE);
|
74
|
+
return 0;
|
75
|
+
}
|
76
|
+
|
77
|
+
HMAC_CTX_init(&hmac);
|
78
|
+
if (!HMAC_Init_ex(&hmac, prk, prk_len, digest, NULL)) {
|
79
|
+
goto out;
|
80
|
+
}
|
81
|
+
|
82
|
+
for (i = 0; i < n; i++) {
|
83
|
+
uint8_t ctr = i + 1;
|
84
|
+
size_t todo;
|
85
|
+
|
86
|
+
if (i != 0 && (!HMAC_Init_ex(&hmac, NULL, 0, NULL, NULL) ||
|
87
|
+
!HMAC_Update(&hmac, previous, digest_len))) {
|
88
|
+
goto out;
|
89
|
+
}
|
90
|
+
if (!HMAC_Update(&hmac, info, info_len) ||
|
91
|
+
!HMAC_Update(&hmac, &ctr, 1) ||
|
92
|
+
!HMAC_Final(&hmac, previous, NULL)) {
|
93
|
+
goto out;
|
94
|
+
}
|
95
|
+
|
96
|
+
todo = digest_len;
|
97
|
+
if (done + todo > out_len) {
|
98
|
+
todo = out_len - done;
|
99
|
+
}
|
100
|
+
OPENSSL_memcpy(out_key + done, previous, todo);
|
101
|
+
done += todo;
|
102
|
+
}
|
103
|
+
|
104
|
+
ret = 1;
|
105
|
+
|
106
|
+
out:
|
107
|
+
HMAC_CTX_cleanup(&hmac);
|
108
|
+
if (ret != 1) {
|
109
|
+
OPENSSL_PUT_ERROR(HKDF, ERR_R_HMAC_LIB);
|
110
|
+
}
|
111
|
+
return ret;
|
112
|
+
}
|
@@ -0,0 +1,2100 @@
|
|
1
|
+
/* Copyright (c) 2018, Google Inc.
|
2
|
+
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
6
|
+
*
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
14
|
+
|
15
|
+
#include <openssl/hrss.h>
|
16
|
+
|
17
|
+
#include <assert.h>
|
18
|
+
#include <stdio.h>
|
19
|
+
#include <stdlib.h>
|
20
|
+
|
21
|
+
#include <openssl/bn.h>
|
22
|
+
#include <openssl/cpu.h>
|
23
|
+
#include <openssl/hmac.h>
|
24
|
+
#include <openssl/mem.h>
|
25
|
+
#include <openssl/sha.h>
|
26
|
+
|
27
|
+
#if defined(_MSC_VER)
|
28
|
+
#define RESTRICT
|
29
|
+
#else
|
30
|
+
#define RESTRICT restrict
|
31
|
+
#endif
|
32
|
+
|
33
|
+
#include "../internal.h"
|
34
|
+
#include "internal.h"
|
35
|
+
|
36
|
+
#if defined(OPENSSL_SSE2)
|
37
|
+
#include <emmintrin.h>
|
38
|
+
#endif
|
39
|
+
|
40
|
+
#if (defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64)) && \
|
41
|
+
(defined(__ARM_NEON__) || defined(__ARM_NEON))
|
42
|
+
#include <arm_neon.h>
|
43
|
+
#endif
|
44
|
+
|
45
|
+
// This is an implementation of [HRSS], but with a KEM transformation based on
|
46
|
+
// [SXY]. The primary references are:
|
47
|
+
|
48
|
+
// HRSS: https://eprint.iacr.org/2017/667.pdf
|
49
|
+
// HRSSNIST:
|
50
|
+
// https://csrc.nist.gov/CSRC/media/Projects/Post-Quantum-Cryptography/documents/round-1/submissions/NTRU_HRSS_KEM.zip
|
51
|
+
// SXY: https://eprint.iacr.org/2017/1005.pdf
|
52
|
+
// NTRUTN14:
|
53
|
+
// https://assets.onboardsecurity.com/static/downloads/NTRU/resources/NTRUTech014.pdf
|
54
|
+
// NTRUCOMP: https://eprint.iacr.org/2018/1174
|
55
|
+
// SAFEGCD: https://gcd.cr.yp.to/papers.html#safegcd
|
56
|
+
|
57
|
+
|
58
|
+
// Vector operations.
|
59
|
+
//
|
60
|
+
// A couple of functions in this file can use vector operations to meaningful
|
61
|
+
// effect. If we're building for a target that has a supported vector unit,
|
62
|
+
// |HRSS_HAVE_VECTOR_UNIT| will be defined and |vec_t| will be typedefed to a
|
63
|
+
// 128-bit vector. The following functions abstract over the differences between
|
64
|
+
// NEON and SSE2 for implementing some vector operations.
|
65
|
+
|
66
|
+
// TODO: MSVC can likely also be made to work with vector operations, but ^ must
|
67
|
+
// be replaced with _mm_xor_si128, etc.
|
68
|
+
#if defined(OPENSSL_SSE2) && (defined(__clang__) || !defined(_MSC_VER))
|
69
|
+
|
70
|
+
#define HRSS_HAVE_VECTOR_UNIT
|
71
|
+
typedef __m128i vec_t;
|
72
|
+
|
73
|
+
// vec_capable returns one iff the current platform supports SSE2.
|
74
|
+
static int vec_capable(void) { return 1; }
|
75
|
+
|
76
|
+
// vec_add performs a pair-wise addition of four uint16s from |a| and |b|.
|
77
|
+
static inline vec_t vec_add(vec_t a, vec_t b) { return _mm_add_epi16(a, b); }
|
78
|
+
|
79
|
+
// vec_sub performs a pair-wise subtraction of four uint16s from |a| and |b|.
|
80
|
+
static inline vec_t vec_sub(vec_t a, vec_t b) { return _mm_sub_epi16(a, b); }
|
81
|
+
|
82
|
+
// vec_mul multiplies each uint16_t in |a| by |b| and returns the resulting
|
83
|
+
// vector.
|
84
|
+
static inline vec_t vec_mul(vec_t a, uint16_t b) {
|
85
|
+
return _mm_mullo_epi16(a, _mm_set1_epi16(b));
|
86
|
+
}
|
87
|
+
|
88
|
+
// vec_fma multiplies each uint16_t in |b| by |c|, adds the result to |a|, and
|
89
|
+
// returns the resulting vector.
|
90
|
+
static inline vec_t vec_fma(vec_t a, vec_t b, uint16_t c) {
|
91
|
+
return _mm_add_epi16(a, _mm_mullo_epi16(b, _mm_set1_epi16(c)));
|
92
|
+
}
|
93
|
+
|
94
|
+
// vec3_rshift_word right-shifts the 24 uint16_t's in |v| by one uint16.
|
95
|
+
static inline void vec3_rshift_word(vec_t v[3]) {
|
96
|
+
// Intel's left and right shifting is backwards compared to the order in
|
97
|
+
// memory because they're based on little-endian order of words (and not just
|
98
|
+
// bytes). So the shifts in this function will be backwards from what one
|
99
|
+
// might expect.
|
100
|
+
const __m128i carry0 = _mm_srli_si128(v[0], 14);
|
101
|
+
v[0] = _mm_slli_si128(v[0], 2);
|
102
|
+
|
103
|
+
const __m128i carry1 = _mm_srli_si128(v[1], 14);
|
104
|
+
v[1] = _mm_slli_si128(v[1], 2);
|
105
|
+
v[1] |= carry0;
|
106
|
+
|
107
|
+
v[2] = _mm_slli_si128(v[2], 2);
|
108
|
+
v[2] |= carry1;
|
109
|
+
}
|
110
|
+
|
111
|
+
// vec4_rshift_word right-shifts the 32 uint16_t's in |v| by one uint16.
|
112
|
+
static inline void vec4_rshift_word(vec_t v[4]) {
|
113
|
+
// Intel's left and right shifting is backwards compared to the order in
|
114
|
+
// memory because they're based on little-endian order of words (and not just
|
115
|
+
// bytes). So the shifts in this function will be backwards from what one
|
116
|
+
// might expect.
|
117
|
+
const __m128i carry0 = _mm_srli_si128(v[0], 14);
|
118
|
+
v[0] = _mm_slli_si128(v[0], 2);
|
119
|
+
|
120
|
+
const __m128i carry1 = _mm_srli_si128(v[1], 14);
|
121
|
+
v[1] = _mm_slli_si128(v[1], 2);
|
122
|
+
v[1] |= carry0;
|
123
|
+
|
124
|
+
const __m128i carry2 = _mm_srli_si128(v[2], 14);
|
125
|
+
v[2] = _mm_slli_si128(v[2], 2);
|
126
|
+
v[2] |= carry1;
|
127
|
+
|
128
|
+
v[3] = _mm_slli_si128(v[3], 2);
|
129
|
+
v[3] |= carry2;
|
130
|
+
}
|
131
|
+
|
132
|
+
// vec_merge_3_5 takes the final three uint16_t's from |left|, appends the first
|
133
|
+
// five from |right|, and returns the resulting vector.
|
134
|
+
static inline vec_t vec_merge_3_5(vec_t left, vec_t right) {
|
135
|
+
return _mm_srli_si128(left, 10) | _mm_slli_si128(right, 6);
|
136
|
+
}
|
137
|
+
|
138
|
+
// poly3_vec_lshift1 left-shifts the 768 bits in |a_s|, and in |a_a|, by one
|
139
|
+
// bit.
|
140
|
+
static inline void poly3_vec_lshift1(vec_t a_s[6], vec_t a_a[6]) {
|
141
|
+
vec_t carry_s = {0};
|
142
|
+
vec_t carry_a = {0};
|
143
|
+
|
144
|
+
for (int i = 0; i < 6; i++) {
|
145
|
+
vec_t next_carry_s = _mm_srli_epi64(a_s[i], 63);
|
146
|
+
a_s[i] = _mm_slli_epi64(a_s[i], 1);
|
147
|
+
a_s[i] |= _mm_slli_si128(next_carry_s, 8);
|
148
|
+
a_s[i] |= carry_s;
|
149
|
+
carry_s = _mm_srli_si128(next_carry_s, 8);
|
150
|
+
|
151
|
+
vec_t next_carry_a = _mm_srli_epi64(a_a[i], 63);
|
152
|
+
a_a[i] = _mm_slli_epi64(a_a[i], 1);
|
153
|
+
a_a[i] |= _mm_slli_si128(next_carry_a, 8);
|
154
|
+
a_a[i] |= carry_a;
|
155
|
+
carry_a = _mm_srli_si128(next_carry_a, 8);
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
// poly3_vec_rshift1 right-shifts the 768 bits in |a_s|, and in |a_a|, by one
|
160
|
+
// bit.
|
161
|
+
static inline void poly3_vec_rshift1(vec_t a_s[6], vec_t a_a[6]) {
|
162
|
+
vec_t carry_s = {0};
|
163
|
+
vec_t carry_a = {0};
|
164
|
+
|
165
|
+
for (int i = 5; i >= 0; i--) {
|
166
|
+
const vec_t next_carry_s = _mm_slli_epi64(a_s[i], 63);
|
167
|
+
a_s[i] = _mm_srli_epi64(a_s[i], 1);
|
168
|
+
a_s[i] |= _mm_srli_si128(next_carry_s, 8);
|
169
|
+
a_s[i] |= carry_s;
|
170
|
+
carry_s = _mm_slli_si128(next_carry_s, 8);
|
171
|
+
|
172
|
+
const vec_t next_carry_a = _mm_slli_epi64(a_a[i], 63);
|
173
|
+
a_a[i] = _mm_srli_epi64(a_a[i], 1);
|
174
|
+
a_a[i] |= _mm_srli_si128(next_carry_a, 8);
|
175
|
+
a_a[i] |= carry_a;
|
176
|
+
carry_a = _mm_slli_si128(next_carry_a, 8);
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
// vec_broadcast_bit duplicates the least-significant bit in |a| to all bits in
|
181
|
+
// a vector and returns the result.
|
182
|
+
static inline vec_t vec_broadcast_bit(vec_t a) {
|
183
|
+
return _mm_shuffle_epi32(_mm_srai_epi32(_mm_slli_epi64(a, 63), 31),
|
184
|
+
0b01010101);
|
185
|
+
}
|
186
|
+
|
187
|
+
// vec_get_word returns the |i|th uint16_t in |v|. (This is a macro because the
|
188
|
+
// compiler requires that |i| be a compile-time constant.)
|
189
|
+
#define vec_get_word(v, i) _mm_extract_epi16(v, i)
|
190
|
+
|
191
|
+
#elif (defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64)) && \
|
192
|
+
(defined(__ARM_NEON__) || defined(__ARM_NEON))
|
193
|
+
|
194
|
+
#define HRSS_HAVE_VECTOR_UNIT
|
195
|
+
typedef uint16x8_t vec_t;
|
196
|
+
|
197
|
+
// These functions perform the same actions as the SSE2 function of the same
|
198
|
+
// name, above.
|
199
|
+
|
200
|
+
static int vec_capable(void) { return CRYPTO_is_NEON_capable(); }
|
201
|
+
|
202
|
+
static inline vec_t vec_add(vec_t a, vec_t b) { return a + b; }
|
203
|
+
|
204
|
+
static inline vec_t vec_sub(vec_t a, vec_t b) { return a - b; }
|
205
|
+
|
206
|
+
static inline vec_t vec_mul(vec_t a, uint16_t b) { return vmulq_n_u16(a, b); }
|
207
|
+
|
208
|
+
static inline vec_t vec_fma(vec_t a, vec_t b, uint16_t c) {
|
209
|
+
return vmlaq_n_u16(a, b, c);
|
210
|
+
}
|
211
|
+
|
212
|
+
static inline void vec3_rshift_word(vec_t v[3]) {
|
213
|
+
const uint16x8_t kZero = {0};
|
214
|
+
v[2] = vextq_u16(v[1], v[2], 7);
|
215
|
+
v[1] = vextq_u16(v[0], v[1], 7);
|
216
|
+
v[0] = vextq_u16(kZero, v[0], 7);
|
217
|
+
}
|
218
|
+
|
219
|
+
static inline void vec4_rshift_word(vec_t v[4]) {
|
220
|
+
const uint16x8_t kZero = {0};
|
221
|
+
v[3] = vextq_u16(v[2], v[3], 7);
|
222
|
+
v[2] = vextq_u16(v[1], v[2], 7);
|
223
|
+
v[1] = vextq_u16(v[0], v[1], 7);
|
224
|
+
v[0] = vextq_u16(kZero, v[0], 7);
|
225
|
+
}
|
226
|
+
|
227
|
+
static inline vec_t vec_merge_3_5(vec_t left, vec_t right) {
|
228
|
+
return vextq_u16(left, right, 5);
|
229
|
+
}
|
230
|
+
|
231
|
+
static inline uint16_t vec_get_word(vec_t v, unsigned i) {
|
232
|
+
return v[i];
|
233
|
+
}
|
234
|
+
|
235
|
+
#if !defined(OPENSSL_AARCH64)
|
236
|
+
|
237
|
+
static inline vec_t vec_broadcast_bit(vec_t a) {
|
238
|
+
a = (vec_t)vshrq_n_s16(((int16x8_t)a) << 15, 15);
|
239
|
+
return vdupq_lane_u16(vget_low_u16(a), 0);
|
240
|
+
}
|
241
|
+
|
242
|
+
static inline void poly3_vec_lshift1(vec_t a_s[6], vec_t a_a[6]) {
|
243
|
+
vec_t carry_s = {0};
|
244
|
+
vec_t carry_a = {0};
|
245
|
+
const vec_t kZero = {0};
|
246
|
+
|
247
|
+
for (int i = 0; i < 6; i++) {
|
248
|
+
vec_t next_carry_s = a_s[i] >> 15;
|
249
|
+
a_s[i] <<= 1;
|
250
|
+
a_s[i] |= vextq_u16(kZero, next_carry_s, 7);
|
251
|
+
a_s[i] |= carry_s;
|
252
|
+
carry_s = vextq_u16(next_carry_s, kZero, 7);
|
253
|
+
|
254
|
+
vec_t next_carry_a = a_a[i] >> 15;
|
255
|
+
a_a[i] <<= 1;
|
256
|
+
a_a[i] |= vextq_u16(kZero, next_carry_a, 7);
|
257
|
+
a_a[i] |= carry_a;
|
258
|
+
carry_a = vextq_u16(next_carry_a, kZero, 7);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
static inline void poly3_vec_rshift1(vec_t a_s[6], vec_t a_a[6]) {
|
263
|
+
vec_t carry_s = {0};
|
264
|
+
vec_t carry_a = {0};
|
265
|
+
const vec_t kZero = {0};
|
266
|
+
|
267
|
+
for (int i = 5; i >= 0; i--) {
|
268
|
+
vec_t next_carry_s = a_s[i] << 15;
|
269
|
+
a_s[i] >>= 1;
|
270
|
+
a_s[i] |= vextq_u16(next_carry_s, kZero, 1);
|
271
|
+
a_s[i] |= carry_s;
|
272
|
+
carry_s = vextq_u16(kZero, next_carry_s, 1);
|
273
|
+
|
274
|
+
vec_t next_carry_a = a_a[i] << 15;
|
275
|
+
a_a[i] >>= 1;
|
276
|
+
a_a[i] |= vextq_u16(next_carry_a, kZero, 1);
|
277
|
+
a_a[i] |= carry_a;
|
278
|
+
carry_a = vextq_u16(kZero, next_carry_a, 1);
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
282
|
+
#endif // !OPENSSL_AARCH64
|
283
|
+
|
284
|
+
#endif // (ARM || AARCH64) && NEON
|
285
|
+
|
286
|
+
// Polynomials in this scheme have N terms.
|
287
|
+
// #define N 701
|
288
|
+
|
289
|
+
// Underlying data types and arithmetic operations.
|
290
|
+
// ------------------------------------------------
|
291
|
+
|
292
|
+
// Binary polynomials.
|
293
|
+
|
294
|
+
// poly2 represents a degree-N polynomial over GF(2). The words are in little-
|
295
|
+
// endian order, i.e. the coefficient of x^0 is the LSB of the first word. The
|
296
|
+
// final word is only partially used since N is not a multiple of the word size.
|
297
|
+
|
298
|
+
// Defined in internal.h:
|
299
|
+
// struct poly2 {
|
300
|
+
// crypto_word_t v[WORDS_PER_POLY];
|
301
|
+
// };
|
302
|
+
|
303
|
+
OPENSSL_UNUSED static void hexdump(const void *void_in, size_t len) {
|
304
|
+
const uint8_t *in = (const uint8_t *)void_in;
|
305
|
+
for (size_t i = 0; i < len; i++) {
|
306
|
+
printf("%02x", in[i]);
|
307
|
+
}
|
308
|
+
printf("\n");
|
309
|
+
}
|
310
|
+
|
311
|
+
static void poly2_zero(struct poly2 *p) {
|
312
|
+
OPENSSL_memset(&p->v[0], 0, sizeof(crypto_word_t) * WORDS_PER_POLY);
|
313
|
+
}
|
314
|
+
|
315
|
+
// word_reverse returns |in| with the bits in reverse order.
|
316
|
+
static crypto_word_t word_reverse(crypto_word_t in) {
|
317
|
+
#if defined(OPENSSL_64_BIT)
|
318
|
+
static const crypto_word_t kMasks[6] = {
|
319
|
+
UINT64_C(0x5555555555555555),
|
320
|
+
UINT64_C(0x3333333333333333),
|
321
|
+
UINT64_C(0x0f0f0f0f0f0f0f0f),
|
322
|
+
UINT64_C(0x00ff00ff00ff00ff),
|
323
|
+
UINT64_C(0x0000ffff0000ffff),
|
324
|
+
UINT64_C(0x00000000ffffffff),
|
325
|
+
};
|
326
|
+
#else
|
327
|
+
static const crypto_word_t kMasks[5] = {
|
328
|
+
0x55555555,
|
329
|
+
0x33333333,
|
330
|
+
0x0f0f0f0f,
|
331
|
+
0x00ff00ff,
|
332
|
+
0x0000ffff,
|
333
|
+
};
|
334
|
+
#endif
|
335
|
+
|
336
|
+
for (size_t i = 0; i < OPENSSL_ARRAY_SIZE(kMasks); i++) {
|
337
|
+
in = ((in >> (1 << i)) & kMasks[i]) | ((in & kMasks[i]) << (1 << i));
|
338
|
+
}
|
339
|
+
|
340
|
+
return in;
|
341
|
+
}
|
342
|
+
|
343
|
+
// lsb_to_all replicates the least-significant bit of |v| to all bits of the
|
344
|
+
// word. This is used in bit-slicing operations to make a vector from a fixed
|
345
|
+
// value.
|
346
|
+
static crypto_word_t lsb_to_all(crypto_word_t v) { return 0u - (v & 1); }
|
347
|
+
|
348
|
+
// poly2_mod_phiN reduces |p| by Φ(N).
|
349
|
+
static void poly2_mod_phiN(struct poly2 *p) {
|
350
|
+
// m is the term at x^700, replicated to every bit.
|
351
|
+
const crypto_word_t m =
|
352
|
+
lsb_to_all(p->v[WORDS_PER_POLY - 1] >> (BITS_IN_LAST_WORD - 1));
|
353
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
354
|
+
p->v[i] ^= m;
|
355
|
+
}
|
356
|
+
p->v[WORDS_PER_POLY - 1] &= (UINT64_C(1) << (BITS_IN_LAST_WORD - 1)) - 1;
|
357
|
+
}
|
358
|
+
|
359
|
+
// poly2_reverse_700 reverses the order of the first 700 bits of |in| and writes
|
360
|
+
// the result to |out|.
|
361
|
+
static void poly2_reverse_700(struct poly2 *out, const struct poly2 *in) {
|
362
|
+
struct poly2 t;
|
363
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
364
|
+
t.v[i] = word_reverse(in->v[i]);
|
365
|
+
}
|
366
|
+
|
367
|
+
static const size_t shift = BITS_PER_WORD - ((N-1) % BITS_PER_WORD);
|
368
|
+
for (size_t i = 0; i < WORDS_PER_POLY-1; i++) {
|
369
|
+
out->v[i] = t.v[WORDS_PER_POLY-1-i] >> shift;
|
370
|
+
out->v[i] |= t.v[WORDS_PER_POLY-2-i] << (BITS_PER_WORD - shift);
|
371
|
+
}
|
372
|
+
out->v[WORDS_PER_POLY-1] = t.v[0] >> shift;
|
373
|
+
}
|
374
|
+
|
375
|
+
// poly2_cswap exchanges the values of |a| and |b| if |swap| is all ones.
|
376
|
+
static void poly2_cswap(struct poly2 *a, struct poly2 *b, crypto_word_t swap) {
|
377
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
378
|
+
const crypto_word_t sum = swap & (a->v[i] ^ b->v[i]);
|
379
|
+
a->v[i] ^= sum;
|
380
|
+
b->v[i] ^= sum;
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
// poly2_fmadd sets |out| to |out| + |in| * m, where m is either
|
385
|
+
// |CONSTTIME_TRUE_W| or |CONSTTIME_FALSE_W|.
|
386
|
+
static void poly2_fmadd(struct poly2 *out, const struct poly2 *in,
|
387
|
+
crypto_word_t m) {
|
388
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
389
|
+
out->v[i] ^= in->v[i] & m;
|
390
|
+
}
|
391
|
+
}
|
392
|
+
|
393
|
+
// poly2_lshift1 left-shifts |p| by one bit.
|
394
|
+
static void poly2_lshift1(struct poly2 *p) {
|
395
|
+
crypto_word_t carry = 0;
|
396
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
397
|
+
const crypto_word_t next_carry = p->v[i] >> (BITS_PER_WORD - 1);
|
398
|
+
p->v[i] <<= 1;
|
399
|
+
p->v[i] |= carry;
|
400
|
+
carry = next_carry;
|
401
|
+
}
|
402
|
+
}
|
403
|
+
|
404
|
+
// poly2_rshift1 right-shifts |p| by one bit.
|
405
|
+
static void poly2_rshift1(struct poly2 *p) {
|
406
|
+
crypto_word_t carry = 0;
|
407
|
+
for (size_t i = WORDS_PER_POLY - 1; i < WORDS_PER_POLY; i--) {
|
408
|
+
const crypto_word_t next_carry = p->v[i] & 1;
|
409
|
+
p->v[i] >>= 1;
|
410
|
+
p->v[i] |= carry << (BITS_PER_WORD - 1);
|
411
|
+
carry = next_carry;
|
412
|
+
}
|
413
|
+
}
|
414
|
+
|
415
|
+
// poly2_clear_top_bits clears the bits in the final word that are only for
|
416
|
+
// alignment.
|
417
|
+
static void poly2_clear_top_bits(struct poly2 *p) {
|
418
|
+
p->v[WORDS_PER_POLY - 1] &= (UINT64_C(1) << BITS_IN_LAST_WORD) - 1;
|
419
|
+
}
|
420
|
+
|
421
|
+
// poly2_top_bits_are_clear returns one iff the extra bits in the final words of
|
422
|
+
// |p| are zero.
|
423
|
+
static int poly2_top_bits_are_clear(const struct poly2 *p) {
|
424
|
+
return (p->v[WORDS_PER_POLY - 1] &
|
425
|
+
~((UINT64_C(1) << BITS_IN_LAST_WORD) - 1)) == 0;
|
426
|
+
}
|
427
|
+
|
428
|
+
// Ternary polynomials.
|
429
|
+
|
430
|
+
// poly3 represents a degree-N polynomial over GF(3). Each coefficient is
|
431
|
+
// bitsliced across the |s| and |a| arrays, like this:
|
432
|
+
//
|
433
|
+
// s | a | value
|
434
|
+
// -----------------
|
435
|
+
// 0 | 0 | 0
|
436
|
+
// 0 | 1 | 1
|
437
|
+
// 1 | 1 | -1 (aka 2)
|
438
|
+
// 1 | 0 | <invalid>
|
439
|
+
//
|
440
|
+
// ('s' is for sign, and 'a' is the absolute value.)
|
441
|
+
//
|
442
|
+
// Once bitsliced as such, the following circuits can be used to implement
|
443
|
+
// addition and multiplication mod 3:
|
444
|
+
//
|
445
|
+
// (s3, a3) = (s1, a1) × (s2, a2)
|
446
|
+
// a3 = a1 ∧ a2
|
447
|
+
// s3 = (s1 ⊕ s2) ∧ a3
|
448
|
+
//
|
449
|
+
// (s3, a3) = (s1, a1) + (s2, a2)
|
450
|
+
// t = s1 ⊕ a2
|
451
|
+
// s3 = t ∧ (s2 ⊕ a1)
|
452
|
+
// a3 = (a1 ⊕ a2) ∨ (t ⊕ s2)
|
453
|
+
//
|
454
|
+
// (s3, a3) = (s1, a1) - (s2, a2)
|
455
|
+
// t = a1 ⊕ a2
|
456
|
+
// s3 = (s1 ⊕ a2) ∧ (t ⊕ s2)
|
457
|
+
// a3 = t ∨ (s1 ⊕ s2)
|
458
|
+
//
|
459
|
+
// Negating a value just involves XORing s by a.
|
460
|
+
//
|
461
|
+
// struct poly3 {
|
462
|
+
// struct poly2 s, a;
|
463
|
+
// };
|
464
|
+
|
465
|
+
OPENSSL_UNUSED static void poly3_print(const struct poly3 *in) {
|
466
|
+
struct poly3 p;
|
467
|
+
OPENSSL_memcpy(&p, in, sizeof(p));
|
468
|
+
p.s.v[WORDS_PER_POLY - 1] &= ((crypto_word_t)1 << BITS_IN_LAST_WORD) - 1;
|
469
|
+
p.a.v[WORDS_PER_POLY - 1] &= ((crypto_word_t)1 << BITS_IN_LAST_WORD) - 1;
|
470
|
+
|
471
|
+
printf("{[");
|
472
|
+
for (unsigned i = 0; i < WORDS_PER_POLY; i++) {
|
473
|
+
if (i) {
|
474
|
+
printf(" ");
|
475
|
+
}
|
476
|
+
printf(BN_HEX_FMT2, p.s.v[i]);
|
477
|
+
}
|
478
|
+
printf("] [");
|
479
|
+
for (unsigned i = 0; i < WORDS_PER_POLY; i++) {
|
480
|
+
if (i) {
|
481
|
+
printf(" ");
|
482
|
+
}
|
483
|
+
printf(BN_HEX_FMT2, p.a.v[i]);
|
484
|
+
}
|
485
|
+
printf("]}\n");
|
486
|
+
}
|
487
|
+
|
488
|
+
static void poly3_zero(struct poly3 *p) {
|
489
|
+
poly2_zero(&p->s);
|
490
|
+
poly2_zero(&p->a);
|
491
|
+
}
|
492
|
+
|
493
|
+
// poly3_reverse_700 reverses the order of the first 700 terms of |in| and
|
494
|
+
// writes them to |out|.
|
495
|
+
static void poly3_reverse_700(struct poly3 *out, const struct poly3 *in) {
|
496
|
+
poly2_reverse_700(&out->a, &in->a);
|
497
|
+
poly2_reverse_700(&out->s, &in->s);
|
498
|
+
}
|
499
|
+
|
500
|
+
// poly3_word_mul sets (|out_s|, |out_a|) to (|s1|, |a1|) × (|s2|, |a2|).
|
501
|
+
static void poly3_word_mul(crypto_word_t *out_s, crypto_word_t *out_a,
|
502
|
+
const crypto_word_t s1, const crypto_word_t a1,
|
503
|
+
const crypto_word_t s2, const crypto_word_t a2) {
|
504
|
+
*out_a = a1 & a2;
|
505
|
+
*out_s = (s1 ^ s2) & *out_a;
|
506
|
+
}
|
507
|
+
|
508
|
+
// poly3_word_add sets (|out_s|, |out_a|) to (|s1|, |a1|) + (|s2|, |a2|).
|
509
|
+
static void poly3_word_add(crypto_word_t *out_s, crypto_word_t *out_a,
|
510
|
+
const crypto_word_t s1, const crypto_word_t a1,
|
511
|
+
const crypto_word_t s2, const crypto_word_t a2) {
|
512
|
+
const crypto_word_t t = s1 ^ a2;
|
513
|
+
*out_s = t & (s2 ^ a1);
|
514
|
+
*out_a = (a1 ^ a2) | (t ^ s2);
|
515
|
+
}
|
516
|
+
|
517
|
+
// poly3_word_sub sets (|out_s|, |out_a|) to (|s1|, |a1|) - (|s2|, |a2|).
|
518
|
+
static void poly3_word_sub(crypto_word_t *out_s, crypto_word_t *out_a,
|
519
|
+
const crypto_word_t s1, const crypto_word_t a1,
|
520
|
+
const crypto_word_t s2, const crypto_word_t a2) {
|
521
|
+
const crypto_word_t t = a1 ^ a2;
|
522
|
+
*out_s = (s1 ^ a2) & (t ^ s2);
|
523
|
+
*out_a = t | (s1 ^ s2);
|
524
|
+
}
|
525
|
+
|
526
|
+
// poly3_mul_const sets |p| to |p|×m, where m = (ms, ma).
|
527
|
+
static void poly3_mul_const(struct poly3 *p, crypto_word_t ms,
|
528
|
+
crypto_word_t ma) {
|
529
|
+
ms = lsb_to_all(ms);
|
530
|
+
ma = lsb_to_all(ma);
|
531
|
+
|
532
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
533
|
+
poly3_word_mul(&p->s.v[i], &p->a.v[i], p->s.v[i], p->a.v[i], ms, ma);
|
534
|
+
}
|
535
|
+
}
|
536
|
+
|
537
|
+
// poly3_fmadd sets |out| to |out| - |in|×m, where m is (ms, ma).
|
538
|
+
static void poly3_fmsub(struct poly3 *RESTRICT out,
|
539
|
+
const struct poly3 *RESTRICT in, crypto_word_t ms,
|
540
|
+
crypto_word_t ma) {
|
541
|
+
crypto_word_t product_s, product_a;
|
542
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
543
|
+
poly3_word_mul(&product_s, &product_a, in->s.v[i], in->a.v[i], ms, ma);
|
544
|
+
poly3_word_sub(&out->s.v[i], &out->a.v[i], out->s.v[i], out->a.v[i],
|
545
|
+
product_s, product_a);
|
546
|
+
}
|
547
|
+
}
|
548
|
+
|
549
|
+
// final_bit_to_all replicates the bit in the final position of the last word to
|
550
|
+
// all the bits in the word.
|
551
|
+
static crypto_word_t final_bit_to_all(crypto_word_t v) {
|
552
|
+
return lsb_to_all(v >> (BITS_IN_LAST_WORD - 1));
|
553
|
+
}
|
554
|
+
|
555
|
+
// poly3_top_bits_are_clear returns one iff the extra bits in the final words of
|
556
|
+
// |p| are zero.
|
557
|
+
OPENSSL_UNUSED static int poly3_top_bits_are_clear(const struct poly3 *p) {
|
558
|
+
return poly2_top_bits_are_clear(&p->s) && poly2_top_bits_are_clear(&p->a);
|
559
|
+
}
|
560
|
+
|
561
|
+
// poly3_mod_phiN reduces |p| by Φ(N).
|
562
|
+
static void poly3_mod_phiN(struct poly3 *p) {
|
563
|
+
// In order to reduce by Φ(N) we subtract by the value of the greatest
|
564
|
+
// coefficient.
|
565
|
+
const crypto_word_t factor_s = final_bit_to_all(p->s.v[WORDS_PER_POLY - 1]);
|
566
|
+
const crypto_word_t factor_a = final_bit_to_all(p->a.v[WORDS_PER_POLY - 1]);
|
567
|
+
|
568
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
569
|
+
poly3_word_sub(&p->s.v[i], &p->a.v[i], p->s.v[i], p->a.v[i], factor_s,
|
570
|
+
factor_a);
|
571
|
+
}
|
572
|
+
|
573
|
+
poly2_clear_top_bits(&p->s);
|
574
|
+
poly2_clear_top_bits(&p->a);
|
575
|
+
}
|
576
|
+
|
577
|
+
static void poly3_cswap(struct poly3 *a, struct poly3 *b, crypto_word_t swap) {
|
578
|
+
poly2_cswap(&a->s, &b->s, swap);
|
579
|
+
poly2_cswap(&a->a, &b->a, swap);
|
580
|
+
}
|
581
|
+
|
582
|
+
static void poly3_lshift1(struct poly3 *p) {
|
583
|
+
poly2_lshift1(&p->s);
|
584
|
+
poly2_lshift1(&p->a);
|
585
|
+
}
|
586
|
+
|
587
|
+
static void poly3_rshift1(struct poly3 *p) {
|
588
|
+
poly2_rshift1(&p->s);
|
589
|
+
poly2_rshift1(&p->a);
|
590
|
+
}
|
591
|
+
|
592
|
+
// poly3_span represents a pointer into a poly3.
|
593
|
+
struct poly3_span {
|
594
|
+
crypto_word_t *s;
|
595
|
+
crypto_word_t *a;
|
596
|
+
};
|
597
|
+
|
598
|
+
// poly3_span_add adds |n| words of values from |a| and |b| and writes the
|
599
|
+
// result to |out|.
|
600
|
+
static void poly3_span_add(const struct poly3_span *out,
|
601
|
+
const struct poly3_span *a,
|
602
|
+
const struct poly3_span *b, size_t n) {
|
603
|
+
for (size_t i = 0; i < n; i++) {
|
604
|
+
poly3_word_add(&out->s[i], &out->a[i], a->s[i], a->a[i], b->s[i], b->a[i]);
|
605
|
+
}
|
606
|
+
}
|
607
|
+
|
608
|
+
// poly3_span_sub subtracts |n| words of |b| from |n| words of |a|.
|
609
|
+
static void poly3_span_sub(const struct poly3_span *a,
|
610
|
+
const struct poly3_span *b, size_t n) {
|
611
|
+
for (size_t i = 0; i < n; i++) {
|
612
|
+
poly3_word_sub(&a->s[i], &a->a[i], a->s[i], a->a[i], b->s[i], b->a[i]);
|
613
|
+
}
|
614
|
+
}
|
615
|
+
|
616
|
+
// poly3_mul_aux is a recursive function that multiplies |n| words from |a| and
|
617
|
+
// |b| and writes 2×|n| words to |out|. Each call uses 2*ceil(n/2) elements of
|
618
|
+
// |scratch| and the function recurses, except if |n| == 1, when |scratch| isn't
|
619
|
+
// used and the recursion stops. For |n| in {11, 22}, the transitive total
|
620
|
+
// amount of |scratch| needed happens to be 2n+2.
|
621
|
+
static void poly3_mul_aux(const struct poly3_span *out,
|
622
|
+
const struct poly3_span *scratch,
|
623
|
+
const struct poly3_span *a,
|
624
|
+
const struct poly3_span *b, size_t n) {
|
625
|
+
if (n == 1) {
|
626
|
+
crypto_word_t r_s_low = 0, r_s_high = 0, r_a_low = 0, r_a_high = 0;
|
627
|
+
crypto_word_t b_s = b->s[0], b_a = b->a[0];
|
628
|
+
const crypto_word_t a_s = a->s[0], a_a = a->a[0];
|
629
|
+
|
630
|
+
for (size_t i = 0; i < BITS_PER_WORD; i++) {
|
631
|
+
// Multiply (s, a) by the next value from (b_s, b_a).
|
632
|
+
crypto_word_t m_s, m_a;
|
633
|
+
poly3_word_mul(&m_s, &m_a, a_s, a_a, lsb_to_all(b_s), lsb_to_all(b_a));
|
634
|
+
b_s >>= 1;
|
635
|
+
b_a >>= 1;
|
636
|
+
|
637
|
+
if (i == 0) {
|
638
|
+
// Special case otherwise the code tries to shift by BITS_PER_WORD
|
639
|
+
// below, which is undefined.
|
640
|
+
r_s_low = m_s;
|
641
|
+
r_a_low = m_a;
|
642
|
+
continue;
|
643
|
+
}
|
644
|
+
|
645
|
+
// Shift the multiplication result to the correct position.
|
646
|
+
const crypto_word_t m_s_low = m_s << i;
|
647
|
+
const crypto_word_t m_s_high = m_s >> (BITS_PER_WORD - i);
|
648
|
+
const crypto_word_t m_a_low = m_a << i;
|
649
|
+
const crypto_word_t m_a_high = m_a >> (BITS_PER_WORD - i);
|
650
|
+
|
651
|
+
// Add into the result.
|
652
|
+
poly3_word_add(&r_s_low, &r_a_low, r_s_low, r_a_low, m_s_low, m_a_low);
|
653
|
+
poly3_word_add(&r_s_high, &r_a_high, r_s_high, r_a_high, m_s_high,
|
654
|
+
m_a_high);
|
655
|
+
}
|
656
|
+
|
657
|
+
out->s[0] = r_s_low;
|
658
|
+
out->s[1] = r_s_high;
|
659
|
+
out->a[0] = r_a_low;
|
660
|
+
out->a[1] = r_a_high;
|
661
|
+
return;
|
662
|
+
}
|
663
|
+
|
664
|
+
// Karatsuba multiplication.
|
665
|
+
// https://en.wikipedia.org/wiki/Karatsuba_algorithm
|
666
|
+
|
667
|
+
// When |n| is odd, the two "halves" will have different lengths. The first
|
668
|
+
// is always the smaller.
|
669
|
+
const size_t low_len = n / 2;
|
670
|
+
const size_t high_len = n - low_len;
|
671
|
+
const struct poly3_span a_high = {&a->s[low_len], &a->a[low_len]};
|
672
|
+
const struct poly3_span b_high = {&b->s[low_len], &b->a[low_len]};
|
673
|
+
|
674
|
+
// Store a_1 + a_0 in the first half of |out| and b_1 + b_0 in the second
|
675
|
+
// half.
|
676
|
+
const struct poly3_span a_cross_sum = *out;
|
677
|
+
const struct poly3_span b_cross_sum = {&out->s[high_len], &out->a[high_len]};
|
678
|
+
poly3_span_add(&a_cross_sum, a, &a_high, low_len);
|
679
|
+
poly3_span_add(&b_cross_sum, b, &b_high, low_len);
|
680
|
+
if (high_len != low_len) {
|
681
|
+
a_cross_sum.s[low_len] = a_high.s[low_len];
|
682
|
+
a_cross_sum.a[low_len] = a_high.a[low_len];
|
683
|
+
b_cross_sum.s[low_len] = b_high.s[low_len];
|
684
|
+
b_cross_sum.a[low_len] = b_high.a[low_len];
|
685
|
+
}
|
686
|
+
|
687
|
+
const struct poly3_span child_scratch = {&scratch->s[2 * high_len],
|
688
|
+
&scratch->a[2 * high_len]};
|
689
|
+
const struct poly3_span out_mid = {&out->s[low_len], &out->a[low_len]};
|
690
|
+
const struct poly3_span out_high = {&out->s[2 * low_len],
|
691
|
+
&out->a[2 * low_len]};
|
692
|
+
|
693
|
+
// Calculate (a_1 + a_0) × (b_1 + b_0) and write to scratch buffer.
|
694
|
+
poly3_mul_aux(scratch, &child_scratch, &a_cross_sum, &b_cross_sum, high_len);
|
695
|
+
// Calculate a_1 × b_1.
|
696
|
+
poly3_mul_aux(&out_high, &child_scratch, &a_high, &b_high, high_len);
|
697
|
+
// Calculate a_0 × b_0.
|
698
|
+
poly3_mul_aux(out, &child_scratch, a, b, low_len);
|
699
|
+
|
700
|
+
// Subtract those last two products from the first.
|
701
|
+
poly3_span_sub(scratch, out, low_len * 2);
|
702
|
+
poly3_span_sub(scratch, &out_high, high_len * 2);
|
703
|
+
|
704
|
+
// Add the middle product into the output.
|
705
|
+
poly3_span_add(&out_mid, &out_mid, scratch, high_len * 2);
|
706
|
+
}
|
707
|
+
|
708
|
+
// HRSS_poly3_mul sets |*out| to |x|×|y| mod Φ(N).
|
709
|
+
void HRSS_poly3_mul(struct poly3 *out, const struct poly3 *x,
|
710
|
+
const struct poly3 *y) {
|
711
|
+
crypto_word_t prod_s[WORDS_PER_POLY * 2];
|
712
|
+
crypto_word_t prod_a[WORDS_PER_POLY * 2];
|
713
|
+
crypto_word_t scratch_s[WORDS_PER_POLY * 2 + 2];
|
714
|
+
crypto_word_t scratch_a[WORDS_PER_POLY * 2 + 2];
|
715
|
+
const struct poly3_span prod_span = {prod_s, prod_a};
|
716
|
+
const struct poly3_span scratch_span = {scratch_s, scratch_a};
|
717
|
+
const struct poly3_span x_span = {(crypto_word_t *)x->s.v,
|
718
|
+
(crypto_word_t *)x->a.v};
|
719
|
+
const struct poly3_span y_span = {(crypto_word_t *)y->s.v,
|
720
|
+
(crypto_word_t *)y->a.v};
|
721
|
+
|
722
|
+
poly3_mul_aux(&prod_span, &scratch_span, &x_span, &y_span, WORDS_PER_POLY);
|
723
|
+
|
724
|
+
// |prod| needs to be reduced mod (𝑥^n - 1), which just involves adding the
|
725
|
+
// upper-half to the lower-half. However, N is 701, which isn't a multiple of
|
726
|
+
// BITS_PER_WORD, so the upper-half vectors all have to be shifted before
|
727
|
+
// being added to the lower-half.
|
728
|
+
for (size_t i = 0; i < WORDS_PER_POLY; i++) {
|
729
|
+
crypto_word_t v_s = prod_s[WORDS_PER_POLY + i - 1] >> BITS_IN_LAST_WORD;
|
730
|
+
v_s |= prod_s[WORDS_PER_POLY + i] << (BITS_PER_WORD - BITS_IN_LAST_WORD);
|
731
|
+
crypto_word_t v_a = prod_a[WORDS_PER_POLY + i - 1] >> BITS_IN_LAST_WORD;
|
732
|
+
v_a |= prod_a[WORDS_PER_POLY + i] << (BITS_PER_WORD - BITS_IN_LAST_WORD);
|
733
|
+
|
734
|
+
poly3_word_add(&out->s.v[i], &out->a.v[i], prod_s[i], prod_a[i], v_s, v_a);
|
735
|
+
}
|
736
|
+
|
737
|
+
poly3_mod_phiN(out);
|
738
|
+
}
|
739
|
+
|
740
|
+
#if defined(HRSS_HAVE_VECTOR_UNIT) && !defined(OPENSSL_AARCH64)
|
741
|
+
|
742
|
+
// poly3_vec_cswap swaps (|a_s|, |a_a|) and (|b_s|, |b_a|) if |swap| is
|
743
|
+
// |0xff..ff|. Otherwise, |swap| must be zero.
|
744
|
+
static inline void poly3_vec_cswap(vec_t a_s[6], vec_t a_a[6], vec_t b_s[6],
|
745
|
+
vec_t b_a[6], const vec_t swap) {
|
746
|
+
for (int i = 0; i < 6; i++) {
|
747
|
+
const vec_t sum_s = swap & (a_s[i] ^ b_s[i]);
|
748
|
+
a_s[i] ^= sum_s;
|
749
|
+
b_s[i] ^= sum_s;
|
750
|
+
|
751
|
+
const vec_t sum_a = swap & (a_a[i] ^ b_a[i]);
|
752
|
+
a_a[i] ^= sum_a;
|
753
|
+
b_a[i] ^= sum_a;
|
754
|
+
}
|
755
|
+
}
|
756
|
+
|
757
|
+
// poly3_vec_fmsub subtracts (|ms|, |ma|) × (|b_s|, |b_a|) from (|a_s|, |a_a|).
|
758
|
+
static inline void poly3_vec_fmsub(vec_t a_s[6], vec_t a_a[6], vec_t b_s[6],
|
759
|
+
vec_t b_a[6], const vec_t ms,
|
760
|
+
const vec_t ma) {
|
761
|
+
for (int i = 0; i < 6; i++) {
|
762
|
+
// See the bitslice formula, above.
|
763
|
+
const vec_t s = b_s[i];
|
764
|
+
const vec_t a = b_a[i];
|
765
|
+
const vec_t product_a = a & ma;
|
766
|
+
const vec_t product_s = (s ^ ms) & product_a;
|
767
|
+
|
768
|
+
const vec_t out_s = a_s[i];
|
769
|
+
const vec_t out_a = a_a[i];
|
770
|
+
const vec_t t = out_a ^ product_a;
|
771
|
+
a_s[i] = (out_s ^ product_a) & (t ^ product_s);
|
772
|
+
a_a[i] = t | (out_s ^ product_s);
|
773
|
+
}
|
774
|
+
}
|
775
|
+
|
776
|
+
// poly3_invert_vec sets |*out| to |in|^-1, i.e. such that |out|×|in| == 1 mod
|
777
|
+
// Φ(N).
|
778
|
+
static void poly3_invert_vec(struct poly3 *out, const struct poly3 *in) {
|
779
|
+
// This algorithm is taken from section 7.1 of [SAFEGCD].
|
780
|
+
const vec_t kZero = {0};
|
781
|
+
const vec_t kOne = {1};
|
782
|
+
static const uint8_t kBottomSixtyOne[sizeof(vec_t)] = {
|
783
|
+
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f};
|
784
|
+
|
785
|
+
vec_t v_s[6], v_a[6], r_s[6], r_a[6], f_s[6], f_a[6], g_s[6], g_a[6];
|
786
|
+
// v = 0
|
787
|
+
memset(&v_s, 0, sizeof(v_s));
|
788
|
+
memset(&v_a, 0, sizeof(v_a));
|
789
|
+
// r = 1
|
790
|
+
memset(&r_s, 0, sizeof(r_s));
|
791
|
+
memset(&r_a, 0, sizeof(r_a));
|
792
|
+
r_a[0] = kOne;
|
793
|
+
// f = all ones.
|
794
|
+
memset(f_s, 0, sizeof(f_s));
|
795
|
+
memset(f_a, 0xff, 5 * sizeof(vec_t));
|
796
|
+
memcpy(&f_a[5], kBottomSixtyOne, sizeof(kBottomSixtyOne));
|
797
|
+
// g is the reversal of |in|.
|
798
|
+
struct poly3 in_reversed;
|
799
|
+
poly3_reverse_700(&in_reversed, in);
|
800
|
+
g_s[5] = kZero;
|
801
|
+
memcpy(&g_s, &in_reversed.s.v, WORDS_PER_POLY * sizeof(crypto_word_t));
|
802
|
+
g_a[5] = kZero;
|
803
|
+
memcpy(&g_a, &in_reversed.a.v, WORDS_PER_POLY * sizeof(crypto_word_t));
|
804
|
+
|
805
|
+
int delta = 1;
|
806
|
+
|
807
|
+
for (size_t i = 0; i < (2*(N-1)) - 1; i++) {
|
808
|
+
poly3_vec_lshift1(v_s, v_a);
|
809
|
+
|
810
|
+
const crypto_word_t delta_sign_bit = (delta >> (sizeof(delta) * 8 - 1)) & 1;
|
811
|
+
const crypto_word_t delta_is_non_negative = delta_sign_bit - 1;
|
812
|
+
const crypto_word_t delta_is_non_zero = ~constant_time_is_zero_w(delta);
|
813
|
+
const vec_t g_has_constant_term = vec_broadcast_bit(g_a[0]);
|
814
|
+
const vec_t mask_w =
|
815
|
+
{delta_is_non_negative & delta_is_non_zero};
|
816
|
+
const vec_t mask = vec_broadcast_bit(mask_w) & g_has_constant_term;
|
817
|
+
|
818
|
+
const vec_t c_a = vec_broadcast_bit(f_a[0] & g_a[0]);
|
819
|
+
const vec_t c_s = vec_broadcast_bit((f_s[0] ^ g_s[0]) & c_a);
|
820
|
+
|
821
|
+
delta = constant_time_select_int(lsb_to_all(mask[0]), -delta, delta);
|
822
|
+
delta++;
|
823
|
+
|
824
|
+
poly3_vec_cswap(f_s, f_a, g_s, g_a, mask);
|
825
|
+
poly3_vec_fmsub(g_s, g_a, f_s, f_a, c_s, c_a);
|
826
|
+
poly3_vec_rshift1(g_s, g_a);
|
827
|
+
|
828
|
+
poly3_vec_cswap(v_s, v_a, r_s, r_a, mask);
|
829
|
+
poly3_vec_fmsub(r_s, r_a, v_s, v_a, c_s, c_a);
|
830
|
+
}
|
831
|
+
|
832
|
+
assert(delta == 0);
|
833
|
+
memcpy(out->s.v, v_s, WORDS_PER_POLY * sizeof(crypto_word_t));
|
834
|
+
memcpy(out->a.v, v_a, WORDS_PER_POLY * sizeof(crypto_word_t));
|
835
|
+
poly3_mul_const(out, vec_get_word(f_s[0], 0), vec_get_word(f_a[0], 0));
|
836
|
+
poly3_reverse_700(out, out);
|
837
|
+
}
|
838
|
+
|
839
|
+
#endif // HRSS_HAVE_VECTOR_UNIT
|
840
|
+
|
841
|
+
// HRSS_poly3_invert sets |*out| to |in|^-1, i.e. such that |out|×|in| == 1 mod
|
842
|
+
// Φ(N).
|
843
|
+
void HRSS_poly3_invert(struct poly3 *out, const struct poly3 *in) {
|
844
|
+
// The vector version of this function seems slightly slower on AArch64, but
|
845
|
+
// is useful on ARMv7 and x86-64.
|
846
|
+
#if defined(HRSS_HAVE_VECTOR_UNIT) && !defined(OPENSSL_AARCH64)
|
847
|
+
if (vec_capable()) {
|
848
|
+
poly3_invert_vec(out, in);
|
849
|
+
return;
|
850
|
+
}
|
851
|
+
#endif
|
852
|
+
|
853
|
+
// This algorithm is taken from section 7.1 of [SAFEGCD].
|
854
|
+
struct poly3 v, r, f, g;
|
855
|
+
// v = 0
|
856
|
+
poly3_zero(&v);
|
857
|
+
// r = 1
|
858
|
+
poly3_zero(&r);
|
859
|
+
r.a.v[0] = 1;
|
860
|
+
// f = all ones.
|
861
|
+
OPENSSL_memset(&f.s, 0, sizeof(struct poly2));
|
862
|
+
OPENSSL_memset(&f.a, 0xff, sizeof(struct poly2));
|
863
|
+
f.a.v[WORDS_PER_POLY - 1] >>= BITS_PER_WORD - BITS_IN_LAST_WORD;
|
864
|
+
// g is the reversal of |in|.
|
865
|
+
poly3_reverse_700(&g, in);
|
866
|
+
int delta = 1;
|
867
|
+
|
868
|
+
for (size_t i = 0; i < (2*(N-1)) - 1; i++) {
|
869
|
+
poly3_lshift1(&v);
|
870
|
+
|
871
|
+
const crypto_word_t delta_sign_bit = (delta >> (sizeof(delta) * 8 - 1)) & 1;
|
872
|
+
const crypto_word_t delta_is_non_negative = delta_sign_bit - 1;
|
873
|
+
const crypto_word_t delta_is_non_zero = ~constant_time_is_zero_w(delta);
|
874
|
+
const crypto_word_t g_has_constant_term = lsb_to_all(g.a.v[0]);
|
875
|
+
const crypto_word_t mask =
|
876
|
+
g_has_constant_term & delta_is_non_negative & delta_is_non_zero;
|
877
|
+
|
878
|
+
crypto_word_t c_s, c_a;
|
879
|
+
poly3_word_mul(&c_s, &c_a, f.s.v[0], f.a.v[0], g.s.v[0], g.a.v[0]);
|
880
|
+
c_s = lsb_to_all(c_s);
|
881
|
+
c_a = lsb_to_all(c_a);
|
882
|
+
|
883
|
+
delta = constant_time_select_int(mask, -delta, delta);
|
884
|
+
delta++;
|
885
|
+
|
886
|
+
poly3_cswap(&f, &g, mask);
|
887
|
+
poly3_fmsub(&g, &f, c_s, c_a);
|
888
|
+
poly3_rshift1(&g);
|
889
|
+
|
890
|
+
poly3_cswap(&v, &r, mask);
|
891
|
+
poly3_fmsub(&r, &v, c_s, c_a);
|
892
|
+
}
|
893
|
+
|
894
|
+
assert(delta == 0);
|
895
|
+
poly3_mul_const(&v, f.s.v[0], f.a.v[0]);
|
896
|
+
poly3_reverse_700(out, &v);
|
897
|
+
}
|
898
|
+
|
899
|
+
// Polynomials in Q.
|
900
|
+
|
901
|
+
// Coefficients are reduced mod Q. (Q is clearly not prime, therefore the
|
902
|
+
// coefficients do not form a field.)
|
903
|
+
#define Q 8192
|
904
|
+
|
905
|
+
// VECS_PER_POLY is the number of 128-bit vectors needed to represent a
|
906
|
+
// polynomial.
|
907
|
+
#define COEFFICIENTS_PER_VEC (sizeof(vec_t) / sizeof(uint16_t))
|
908
|
+
#define VECS_PER_POLY ((N + COEFFICIENTS_PER_VEC - 1) / COEFFICIENTS_PER_VEC)
|
909
|
+
|
910
|
+
// poly represents a polynomial with coefficients mod Q. Note that, while Q is a
|
911
|
+
// power of two, this does not operate in GF(Q). That would be a binary field
|
912
|
+
// but this is simply mod Q. Thus the coefficients are not a field.
|
913
|
+
//
|
914
|
+
// Coefficients are ordered little-endian, thus the coefficient of x^0 is the
|
915
|
+
// first element of the array.
|
916
|
+
struct poly {
|
917
|
+
#if defined(HRSS_HAVE_VECTOR_UNIT)
|
918
|
+
union {
|
919
|
+
// N + 3 = 704, which is a multiple of 64 and thus aligns things, esp for
|
920
|
+
// the vector code.
|
921
|
+
uint16_t v[N + 3];
|
922
|
+
vec_t vectors[VECS_PER_POLY];
|
923
|
+
};
|
924
|
+
#else
|
925
|
+
// Even if !HRSS_HAVE_VECTOR_UNIT, external assembly may be called that
|
926
|
+
// requires alignment.
|
927
|
+
alignas(16) uint16_t v[N + 3];
|
928
|
+
#endif
|
929
|
+
};
|
930
|
+
|
931
|
+
OPENSSL_UNUSED static void poly_print(const struct poly *p) {
|
932
|
+
printf("[");
|
933
|
+
for (unsigned i = 0; i < N; i++) {
|
934
|
+
if (i) {
|
935
|
+
printf(" ");
|
936
|
+
}
|
937
|
+
printf("%d", p->v[i]);
|
938
|
+
}
|
939
|
+
printf("]\n");
|
940
|
+
}
|
941
|
+
|
942
|
+
#if defined(HRSS_HAVE_VECTOR_UNIT)
|
943
|
+
|
944
|
+
// poly_mul_vec_aux is a recursive function that multiplies |n| words from |a|
|
945
|
+
// and |b| and writes 2×|n| words to |out|. Each call uses 2*ceil(n/2) elements
|
946
|
+
// of |scratch| and the function recurses, except if |n| < 3, when |scratch|
|
947
|
+
// isn't used and the recursion stops. If |n| == |VECS_PER_POLY| then |scratch|
|
948
|
+
// needs 172 elements.
|
949
|
+
static void poly_mul_vec_aux(vec_t *restrict out, vec_t *restrict scratch,
|
950
|
+
const vec_t *restrict a, const vec_t *restrict b,
|
951
|
+
const size_t n) {
|
952
|
+
// In [HRSS], the technique they used for polynomial multiplication is
|
953
|
+
// described: they start with Toom-4 at the top level and then two layers of
|
954
|
+
// Karatsuba. Karatsuba is a specific instance of the general Toom–Cook
|
955
|
+
// decomposition, which splits an input n-ways and produces 2n-1
|
956
|
+
// multiplications of those parts. So, starting with 704 coefficients (rounded
|
957
|
+
// up from 701 to have more factors of two), Toom-4 gives seven
|
958
|
+
// multiplications of degree-174 polynomials. Each round of Karatsuba (which
|
959
|
+
// is Toom-2) increases the number of multiplications by a factor of three
|
960
|
+
// while halving the size of the values being multiplied. So two rounds gives
|
961
|
+
// 63 multiplications of degree-44 polynomials. Then they (I think) form
|
962
|
+
// vectors by gathering all 63 coefficients of each power together, for each
|
963
|
+
// input, and doing more rounds of Karatsuba on the vectors until they bottom-
|
964
|
+
// out somewhere with schoolbook multiplication.
|
965
|
+
//
|
966
|
+
// I tried something like that for NEON. NEON vectors are 128 bits so hold
|
967
|
+
// eight coefficients. I wrote a function that did Karatsuba on eight
|
968
|
+
// multiplications at the same time, using such vectors, and a Go script that
|
969
|
+
// decomposed from degree-704, with Karatsuba in non-transposed form, until it
|
970
|
+
// reached multiplications of degree-44. It batched up those 81
|
971
|
+
// multiplications into lots of eight with a single one left over (which was
|
972
|
+
// handled directly).
|
973
|
+
//
|
974
|
+
// It worked, but it was significantly slower than the dumb algorithm used
|
975
|
+
// below. Potentially that was because I misunderstood how [HRSS] did it, or
|
976
|
+
// because Clang is bad at generating good code from NEON intrinsics on ARMv7.
|
977
|
+
// (Which is true: the code generated by Clang for the below is pretty crap.)
|
978
|
+
//
|
979
|
+
// This algorithm is much simpler. It just does Karatsuba decomposition all
|
980
|
+
// the way down and never transposes. When it gets down to degree-16 or
|
981
|
+
// degree-24 values, they are multiplied using schoolbook multiplication and
|
982
|
+
// vector intrinsics. The vector operations form each of the eight phase-
|
983
|
+
// shifts of one of the inputs, point-wise multiply, and then add into the
|
984
|
+
// result at the correct place. This means that 33% (degree-16) or 25%
|
985
|
+
// (degree-24) of the multiplies and adds are wasted, but it does ok.
|
986
|
+
if (n == 2) {
|
987
|
+
vec_t result[4];
|
988
|
+
vec_t vec_a[3];
|
989
|
+
static const vec_t kZero = {0};
|
990
|
+
vec_a[0] = a[0];
|
991
|
+
vec_a[1] = a[1];
|
992
|
+
vec_a[2] = kZero;
|
993
|
+
|
994
|
+
result[0] = vec_mul(vec_a[0], vec_get_word(b[0], 0));
|
995
|
+
result[1] = vec_mul(vec_a[1], vec_get_word(b[0], 0));
|
996
|
+
|
997
|
+
result[1] = vec_fma(result[1], vec_a[0], vec_get_word(b[1], 0));
|
998
|
+
result[2] = vec_mul(vec_a[1], vec_get_word(b[1], 0));
|
999
|
+
result[3] = kZero;
|
1000
|
+
|
1001
|
+
vec3_rshift_word(vec_a);
|
1002
|
+
|
1003
|
+
#define BLOCK(x, y) \
|
1004
|
+
do { \
|
1005
|
+
result[x + 0] = \
|
1006
|
+
vec_fma(result[x + 0], vec_a[0], vec_get_word(b[y / 8], y % 8)); \
|
1007
|
+
result[x + 1] = \
|
1008
|
+
vec_fma(result[x + 1], vec_a[1], vec_get_word(b[y / 8], y % 8)); \
|
1009
|
+
result[x + 2] = \
|
1010
|
+
vec_fma(result[x + 2], vec_a[2], vec_get_word(b[y / 8], y % 8)); \
|
1011
|
+
} while (0)
|
1012
|
+
|
1013
|
+
BLOCK(0, 1);
|
1014
|
+
BLOCK(1, 9);
|
1015
|
+
|
1016
|
+
vec3_rshift_word(vec_a);
|
1017
|
+
|
1018
|
+
BLOCK(0, 2);
|
1019
|
+
BLOCK(1, 10);
|
1020
|
+
|
1021
|
+
vec3_rshift_word(vec_a);
|
1022
|
+
|
1023
|
+
BLOCK(0, 3);
|
1024
|
+
BLOCK(1, 11);
|
1025
|
+
|
1026
|
+
vec3_rshift_word(vec_a);
|
1027
|
+
|
1028
|
+
BLOCK(0, 4);
|
1029
|
+
BLOCK(1, 12);
|
1030
|
+
|
1031
|
+
vec3_rshift_word(vec_a);
|
1032
|
+
|
1033
|
+
BLOCK(0, 5);
|
1034
|
+
BLOCK(1, 13);
|
1035
|
+
|
1036
|
+
vec3_rshift_word(vec_a);
|
1037
|
+
|
1038
|
+
BLOCK(0, 6);
|
1039
|
+
BLOCK(1, 14);
|
1040
|
+
|
1041
|
+
vec3_rshift_word(vec_a);
|
1042
|
+
|
1043
|
+
BLOCK(0, 7);
|
1044
|
+
BLOCK(1, 15);
|
1045
|
+
|
1046
|
+
#undef BLOCK
|
1047
|
+
|
1048
|
+
memcpy(out, result, sizeof(result));
|
1049
|
+
return;
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
if (n == 3) {
|
1053
|
+
vec_t result[6];
|
1054
|
+
vec_t vec_a[4];
|
1055
|
+
static const vec_t kZero = {0};
|
1056
|
+
vec_a[0] = a[0];
|
1057
|
+
vec_a[1] = a[1];
|
1058
|
+
vec_a[2] = a[2];
|
1059
|
+
vec_a[3] = kZero;
|
1060
|
+
|
1061
|
+
result[0] = vec_mul(a[0], vec_get_word(b[0], 0));
|
1062
|
+
result[1] = vec_mul(a[1], vec_get_word(b[0], 0));
|
1063
|
+
result[2] = vec_mul(a[2], vec_get_word(b[0], 0));
|
1064
|
+
|
1065
|
+
#define BLOCK_PRE(x, y) \
|
1066
|
+
do { \
|
1067
|
+
result[x + 0] = \
|
1068
|
+
vec_fma(result[x + 0], vec_a[0], vec_get_word(b[y / 8], y % 8)); \
|
1069
|
+
result[x + 1] = \
|
1070
|
+
vec_fma(result[x + 1], vec_a[1], vec_get_word(b[y / 8], y % 8)); \
|
1071
|
+
result[x + 2] = vec_mul(vec_a[2], vec_get_word(b[y / 8], y % 8)); \
|
1072
|
+
} while (0)
|
1073
|
+
|
1074
|
+
BLOCK_PRE(1, 8);
|
1075
|
+
BLOCK_PRE(2, 16);
|
1076
|
+
|
1077
|
+
result[5] = kZero;
|
1078
|
+
|
1079
|
+
vec4_rshift_word(vec_a);
|
1080
|
+
|
1081
|
+
#define BLOCK(x, y) \
|
1082
|
+
do { \
|
1083
|
+
result[x + 0] = \
|
1084
|
+
vec_fma(result[x + 0], vec_a[0], vec_get_word(b[y / 8], y % 8)); \
|
1085
|
+
result[x + 1] = \
|
1086
|
+
vec_fma(result[x + 1], vec_a[1], vec_get_word(b[y / 8], y % 8)); \
|
1087
|
+
result[x + 2] = \
|
1088
|
+
vec_fma(result[x + 2], vec_a[2], vec_get_word(b[y / 8], y % 8)); \
|
1089
|
+
result[x + 3] = \
|
1090
|
+
vec_fma(result[x + 3], vec_a[3], vec_get_word(b[y / 8], y % 8)); \
|
1091
|
+
} while (0)
|
1092
|
+
|
1093
|
+
BLOCK(0, 1);
|
1094
|
+
BLOCK(1, 9);
|
1095
|
+
BLOCK(2, 17);
|
1096
|
+
|
1097
|
+
vec4_rshift_word(vec_a);
|
1098
|
+
|
1099
|
+
BLOCK(0, 2);
|
1100
|
+
BLOCK(1, 10);
|
1101
|
+
BLOCK(2, 18);
|
1102
|
+
|
1103
|
+
vec4_rshift_word(vec_a);
|
1104
|
+
|
1105
|
+
BLOCK(0, 3);
|
1106
|
+
BLOCK(1, 11);
|
1107
|
+
BLOCK(2, 19);
|
1108
|
+
|
1109
|
+
vec4_rshift_word(vec_a);
|
1110
|
+
|
1111
|
+
BLOCK(0, 4);
|
1112
|
+
BLOCK(1, 12);
|
1113
|
+
BLOCK(2, 20);
|
1114
|
+
|
1115
|
+
vec4_rshift_word(vec_a);
|
1116
|
+
|
1117
|
+
BLOCK(0, 5);
|
1118
|
+
BLOCK(1, 13);
|
1119
|
+
BLOCK(2, 21);
|
1120
|
+
|
1121
|
+
vec4_rshift_word(vec_a);
|
1122
|
+
|
1123
|
+
BLOCK(0, 6);
|
1124
|
+
BLOCK(1, 14);
|
1125
|
+
BLOCK(2, 22);
|
1126
|
+
|
1127
|
+
vec4_rshift_word(vec_a);
|
1128
|
+
|
1129
|
+
BLOCK(0, 7);
|
1130
|
+
BLOCK(1, 15);
|
1131
|
+
BLOCK(2, 23);
|
1132
|
+
|
1133
|
+
#undef BLOCK
|
1134
|
+
#undef BLOCK_PRE
|
1135
|
+
|
1136
|
+
memcpy(out, result, sizeof(result));
|
1137
|
+
|
1138
|
+
return;
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
// Karatsuba multiplication.
|
1142
|
+
// https://en.wikipedia.org/wiki/Karatsuba_algorithm
|
1143
|
+
|
1144
|
+
// When |n| is odd, the two "halves" will have different lengths. The first is
|
1145
|
+
// always the smaller.
|
1146
|
+
const size_t low_len = n / 2;
|
1147
|
+
const size_t high_len = n - low_len;
|
1148
|
+
const vec_t *a_high = &a[low_len];
|
1149
|
+
const vec_t *b_high = &b[low_len];
|
1150
|
+
|
1151
|
+
// Store a_1 + a_0 in the first half of |out| and b_1 + b_0 in the second
|
1152
|
+
// half.
|
1153
|
+
for (size_t i = 0; i < low_len; i++) {
|
1154
|
+
out[i] = vec_add(a_high[i], a[i]);
|
1155
|
+
out[high_len + i] = vec_add(b_high[i], b[i]);
|
1156
|
+
}
|
1157
|
+
if (high_len != low_len) {
|
1158
|
+
out[low_len] = a_high[low_len];
|
1159
|
+
out[high_len + low_len] = b_high[low_len];
|
1160
|
+
}
|
1161
|
+
|
1162
|
+
vec_t *const child_scratch = &scratch[2 * high_len];
|
1163
|
+
// Calculate (a_1 + a_0) × (b_1 + b_0) and write to scratch buffer.
|
1164
|
+
poly_mul_vec_aux(scratch, child_scratch, out, &out[high_len], high_len);
|
1165
|
+
// Calculate a_1 × b_1.
|
1166
|
+
poly_mul_vec_aux(&out[low_len * 2], child_scratch, a_high, b_high, high_len);
|
1167
|
+
// Calculate a_0 × b_0.
|
1168
|
+
poly_mul_vec_aux(out, child_scratch, a, b, low_len);
|
1169
|
+
|
1170
|
+
// Subtract those last two products from the first.
|
1171
|
+
for (size_t i = 0; i < low_len * 2; i++) {
|
1172
|
+
scratch[i] = vec_sub(scratch[i], vec_add(out[i], out[low_len * 2 + i]));
|
1173
|
+
}
|
1174
|
+
if (low_len != high_len) {
|
1175
|
+
scratch[low_len * 2] = vec_sub(scratch[low_len * 2], out[low_len * 4]);
|
1176
|
+
scratch[low_len * 2 + 1] =
|
1177
|
+
vec_sub(scratch[low_len * 2 + 1], out[low_len * 4 + 1]);
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
// Add the middle product into the output.
|
1181
|
+
for (size_t i = 0; i < high_len * 2; i++) {
|
1182
|
+
out[low_len + i] = vec_add(out[low_len + i], scratch[i]);
|
1183
|
+
}
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
// poly_mul_vec sets |*out| to |x|×|y| mod (𝑥^n - 1).
|
1187
|
+
static void poly_mul_vec(struct poly *out, const struct poly *x,
|
1188
|
+
const struct poly *y) {
|
1189
|
+
OPENSSL_memset((uint16_t *)&x->v[N], 0, 3 * sizeof(uint16_t));
|
1190
|
+
OPENSSL_memset((uint16_t *)&y->v[N], 0, 3 * sizeof(uint16_t));
|
1191
|
+
|
1192
|
+
OPENSSL_STATIC_ASSERT(sizeof(out->v) == sizeof(vec_t) * VECS_PER_POLY,
|
1193
|
+
"struct poly is the wrong size");
|
1194
|
+
OPENSSL_STATIC_ASSERT(alignof(struct poly) == alignof(vec_t),
|
1195
|
+
"struct poly has incorrect alignment");
|
1196
|
+
|
1197
|
+
vec_t prod[VECS_PER_POLY * 2];
|
1198
|
+
vec_t scratch[172];
|
1199
|
+
poly_mul_vec_aux(prod, scratch, x->vectors, y->vectors, VECS_PER_POLY);
|
1200
|
+
|
1201
|
+
// |prod| needs to be reduced mod (𝑥^n - 1), which just involves adding the
|
1202
|
+
// upper-half to the lower-half. However, N is 701, which isn't a multiple of
|
1203
|
+
// the vector size, so the upper-half vectors all have to be shifted before
|
1204
|
+
// being added to the lower-half.
|
1205
|
+
vec_t *out_vecs = (vec_t *)out->v;
|
1206
|
+
|
1207
|
+
for (size_t i = 0; i < VECS_PER_POLY; i++) {
|
1208
|
+
const vec_t prev = prod[VECS_PER_POLY - 1 + i];
|
1209
|
+
const vec_t this = prod[VECS_PER_POLY + i];
|
1210
|
+
out_vecs[i] = vec_add(prod[i], vec_merge_3_5(prev, this));
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
OPENSSL_memset(&out->v[N], 0, 3 * sizeof(uint16_t));
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
#endif // HRSS_HAVE_VECTOR_UNIT
|
1217
|
+
|
1218
|
+
// poly_mul_novec_aux writes the product of |a| and |b| to |out|, using
|
1219
|
+
// |scratch| as scratch space. It'll use Karatsuba if the inputs are large
|
1220
|
+
// enough to warrant it. Each call uses 2*ceil(n/2) elements of |scratch| and
|
1221
|
+
// the function recurses, except if |n| < 64, when |scratch| isn't used and the
|
1222
|
+
// recursion stops. If |n| == |N| then |scratch| needs 1318 elements.
|
1223
|
+
static void poly_mul_novec_aux(uint16_t *out, uint16_t *scratch,
|
1224
|
+
const uint16_t *a, const uint16_t *b, size_t n) {
|
1225
|
+
static const size_t kSchoolbookLimit = 64;
|
1226
|
+
if (n < kSchoolbookLimit) {
|
1227
|
+
OPENSSL_memset(out, 0, sizeof(uint16_t) * n * 2);
|
1228
|
+
for (size_t i = 0; i < n; i++) {
|
1229
|
+
for (size_t j = 0; j < n; j++) {
|
1230
|
+
out[i + j] += (unsigned) a[i] * b[j];
|
1231
|
+
}
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
return;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
// Karatsuba multiplication.
|
1238
|
+
// https://en.wikipedia.org/wiki/Karatsuba_algorithm
|
1239
|
+
|
1240
|
+
// When |n| is odd, the two "halves" will have different lengths. The
|
1241
|
+
// first is always the smaller.
|
1242
|
+
const size_t low_len = n / 2;
|
1243
|
+
const size_t high_len = n - low_len;
|
1244
|
+
const uint16_t *const a_high = &a[low_len];
|
1245
|
+
const uint16_t *const b_high = &b[low_len];
|
1246
|
+
|
1247
|
+
for (size_t i = 0; i < low_len; i++) {
|
1248
|
+
out[i] = a_high[i] + a[i];
|
1249
|
+
out[high_len + i] = b_high[i] + b[i];
|
1250
|
+
}
|
1251
|
+
if (high_len != low_len) {
|
1252
|
+
out[low_len] = a_high[low_len];
|
1253
|
+
out[high_len + low_len] = b_high[low_len];
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
uint16_t *const child_scratch = &scratch[2 * high_len];
|
1257
|
+
poly_mul_novec_aux(scratch, child_scratch, out, &out[high_len], high_len);
|
1258
|
+
poly_mul_novec_aux(&out[low_len * 2], child_scratch, a_high, b_high,
|
1259
|
+
high_len);
|
1260
|
+
poly_mul_novec_aux(out, child_scratch, a, b, low_len);
|
1261
|
+
|
1262
|
+
for (size_t i = 0; i < low_len * 2; i++) {
|
1263
|
+
scratch[i] -= out[i] + out[low_len * 2 + i];
|
1264
|
+
}
|
1265
|
+
if (low_len != high_len) {
|
1266
|
+
scratch[low_len * 2] -= out[low_len * 4];
|
1267
|
+
assert(out[low_len * 4 + 1] == 0);
|
1268
|
+
}
|
1269
|
+
|
1270
|
+
for (size_t i = 0; i < high_len * 2; i++) {
|
1271
|
+
out[low_len + i] += scratch[i];
|
1272
|
+
}
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
// poly_mul_novec sets |*out| to |x|×|y| mod (𝑥^n - 1).
|
1276
|
+
static void poly_mul_novec(struct poly *out, const struct poly *x,
|
1277
|
+
const struct poly *y) {
|
1278
|
+
uint16_t prod[2 * N];
|
1279
|
+
uint16_t scratch[1318];
|
1280
|
+
poly_mul_novec_aux(prod, scratch, x->v, y->v, N);
|
1281
|
+
|
1282
|
+
for (size_t i = 0; i < N; i++) {
|
1283
|
+
out->v[i] = prod[i] + prod[i + N];
|
1284
|
+
}
|
1285
|
+
OPENSSL_memset(&out->v[N], 0, 3 * sizeof(uint16_t));
|
1286
|
+
}
|
1287
|
+
|
1288
|
+
static void poly_mul(struct poly *r, const struct poly *a,
|
1289
|
+
const struct poly *b) {
|
1290
|
+
#if defined(POLY_RQ_MUL_ASM)
|
1291
|
+
const int has_avx2 = (OPENSSL_ia32cap_P[2] & (1 << 5)) != 0;
|
1292
|
+
if (has_avx2) {
|
1293
|
+
poly_Rq_mul(r->v, a->v, b->v);
|
1294
|
+
return;
|
1295
|
+
}
|
1296
|
+
#endif
|
1297
|
+
|
1298
|
+
#if defined(HRSS_HAVE_VECTOR_UNIT)
|
1299
|
+
if (vec_capable()) {
|
1300
|
+
poly_mul_vec(r, a, b);
|
1301
|
+
return;
|
1302
|
+
}
|
1303
|
+
#endif
|
1304
|
+
|
1305
|
+
// Fallback, non-vector case.
|
1306
|
+
poly_mul_novec(r, a, b);
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
// poly_mul_x_minus_1 sets |p| to |p|×(𝑥 - 1) mod (𝑥^n - 1).
|
1310
|
+
static void poly_mul_x_minus_1(struct poly *p) {
|
1311
|
+
// Multiplying by (𝑥 - 1) means negating each coefficient and adding in
|
1312
|
+
// the value of the previous one.
|
1313
|
+
const uint16_t orig_final_coefficient = p->v[N - 1];
|
1314
|
+
|
1315
|
+
for (size_t i = N - 1; i > 0; i--) {
|
1316
|
+
p->v[i] = p->v[i - 1] - p->v[i];
|
1317
|
+
}
|
1318
|
+
p->v[0] = orig_final_coefficient - p->v[0];
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
// poly_mod_phiN sets |p| to |p| mod Φ(N).
|
1322
|
+
static void poly_mod_phiN(struct poly *p) {
|
1323
|
+
const uint16_t coeff700 = p->v[N - 1];
|
1324
|
+
|
1325
|
+
for (unsigned i = 0; i < N; i++) {
|
1326
|
+
p->v[i] -= coeff700;
|
1327
|
+
}
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
// poly_clamp reduces each coefficient mod Q.
|
1331
|
+
static void poly_clamp(struct poly *p) {
|
1332
|
+
for (unsigned i = 0; i < N; i++) {
|
1333
|
+
p->v[i] &= Q - 1;
|
1334
|
+
}
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
|
1338
|
+
// Conversion functions
|
1339
|
+
// --------------------
|
1340
|
+
|
1341
|
+
// poly2_from_poly sets |*out| to |in| mod 2.
|
1342
|
+
static void poly2_from_poly(struct poly2 *out, const struct poly *in) {
|
1343
|
+
crypto_word_t *words = out->v;
|
1344
|
+
unsigned shift = 0;
|
1345
|
+
crypto_word_t word = 0;
|
1346
|
+
|
1347
|
+
for (unsigned i = 0; i < N; i++) {
|
1348
|
+
word >>= 1;
|
1349
|
+
word |= (crypto_word_t)(in->v[i] & 1) << (BITS_PER_WORD - 1);
|
1350
|
+
shift++;
|
1351
|
+
|
1352
|
+
if (shift == BITS_PER_WORD) {
|
1353
|
+
*words = word;
|
1354
|
+
words++;
|
1355
|
+
word = 0;
|
1356
|
+
shift = 0;
|
1357
|
+
}
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
word >>= BITS_PER_WORD - shift;
|
1361
|
+
*words = word;
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
// mod3 treats |a| as a signed number and returns |a| mod 3.
|
1365
|
+
static uint16_t mod3(int16_t a) {
|
1366
|
+
const int16_t q = ((int32_t)a * 21845) >> 16;
|
1367
|
+
int16_t ret = a - 3 * q;
|
1368
|
+
// At this point, |ret| is in {0, 1, 2, 3} and that needs to be mapped to {0,
|
1369
|
+
// 1, 2, 0}.
|
1370
|
+
return ret & ((ret & (ret >> 1)) - 1);
|
1371
|
+
}
|
1372
|
+
|
1373
|
+
// poly3_from_poly sets |*out| to |in|.
|
1374
|
+
static void poly3_from_poly(struct poly3 *out, const struct poly *in) {
|
1375
|
+
crypto_word_t *words_s = out->s.v;
|
1376
|
+
crypto_word_t *words_a = out->a.v;
|
1377
|
+
crypto_word_t s = 0;
|
1378
|
+
crypto_word_t a = 0;
|
1379
|
+
unsigned shift = 0;
|
1380
|
+
|
1381
|
+
for (unsigned i = 0; i < N; i++) {
|
1382
|
+
// This duplicates the 13th bit upwards to the top of the uint16,
|
1383
|
+
// essentially treating it as a sign bit and converting into a signed int16.
|
1384
|
+
// The signed value is reduced mod 3, yielding {0, 1, 2}.
|
1385
|
+
const uint16_t v = mod3((int16_t)(in->v[i] << 3) >> 3);
|
1386
|
+
s >>= 1;
|
1387
|
+
const crypto_word_t s_bit = (crypto_word_t)(v & 2) << (BITS_PER_WORD - 2);
|
1388
|
+
s |= s_bit;
|
1389
|
+
a >>= 1;
|
1390
|
+
a |= s_bit | (crypto_word_t)(v & 1) << (BITS_PER_WORD - 1);
|
1391
|
+
shift++;
|
1392
|
+
|
1393
|
+
if (shift == BITS_PER_WORD) {
|
1394
|
+
*words_s = s;
|
1395
|
+
words_s++;
|
1396
|
+
*words_a = a;
|
1397
|
+
words_a++;
|
1398
|
+
s = a = 0;
|
1399
|
+
shift = 0;
|
1400
|
+
}
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
s >>= BITS_PER_WORD - shift;
|
1404
|
+
a >>= BITS_PER_WORD - shift;
|
1405
|
+
*words_s = s;
|
1406
|
+
*words_a = a;
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
// poly3_from_poly_checked sets |*out| to |in|, which has coefficients in {0, 1,
|
1410
|
+
// Q-1}. It returns a mask indicating whether all coefficients were found to be
|
1411
|
+
// in that set.
|
1412
|
+
static crypto_word_t poly3_from_poly_checked(struct poly3 *out,
|
1413
|
+
const struct poly *in) {
|
1414
|
+
crypto_word_t *words_s = out->s.v;
|
1415
|
+
crypto_word_t *words_a = out->a.v;
|
1416
|
+
crypto_word_t s = 0;
|
1417
|
+
crypto_word_t a = 0;
|
1418
|
+
unsigned shift = 0;
|
1419
|
+
crypto_word_t ok = CONSTTIME_TRUE_W;
|
1420
|
+
|
1421
|
+
for (unsigned i = 0; i < N; i++) {
|
1422
|
+
const uint16_t v = in->v[i];
|
1423
|
+
// Maps {0, 1, Q-1} to {0, 1, 2}.
|
1424
|
+
uint16_t mod3 = v & 3;
|
1425
|
+
mod3 ^= mod3 >> 1;
|
1426
|
+
const uint16_t expected = (uint16_t)((~((mod3 >> 1) - 1)) | mod3) % Q;
|
1427
|
+
ok &= constant_time_eq_w(v, expected);
|
1428
|
+
|
1429
|
+
s >>= 1;
|
1430
|
+
const crypto_word_t s_bit = (crypto_word_t)(mod3 & 2)
|
1431
|
+
<< (BITS_PER_WORD - 2);
|
1432
|
+
s |= s_bit;
|
1433
|
+
a >>= 1;
|
1434
|
+
a |= s_bit | (crypto_word_t)(mod3 & 1) << (BITS_PER_WORD - 1);
|
1435
|
+
shift++;
|
1436
|
+
|
1437
|
+
if (shift == BITS_PER_WORD) {
|
1438
|
+
*words_s = s;
|
1439
|
+
words_s++;
|
1440
|
+
*words_a = a;
|
1441
|
+
words_a++;
|
1442
|
+
s = a = 0;
|
1443
|
+
shift = 0;
|
1444
|
+
}
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
s >>= BITS_PER_WORD - shift;
|
1448
|
+
a >>= BITS_PER_WORD - shift;
|
1449
|
+
*words_s = s;
|
1450
|
+
*words_a = a;
|
1451
|
+
|
1452
|
+
return ok;
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
static void poly_from_poly2(struct poly *out, const struct poly2 *in) {
|
1456
|
+
const crypto_word_t *words = in->v;
|
1457
|
+
unsigned shift = 0;
|
1458
|
+
crypto_word_t word = *words;
|
1459
|
+
|
1460
|
+
for (unsigned i = 0; i < N; i++) {
|
1461
|
+
out->v[i] = word & 1;
|
1462
|
+
word >>= 1;
|
1463
|
+
shift++;
|
1464
|
+
|
1465
|
+
if (shift == BITS_PER_WORD) {
|
1466
|
+
words++;
|
1467
|
+
word = *words;
|
1468
|
+
shift = 0;
|
1469
|
+
}
|
1470
|
+
}
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
static void poly_from_poly3(struct poly *out, const struct poly3 *in) {
|
1474
|
+
const crypto_word_t *words_s = in->s.v;
|
1475
|
+
const crypto_word_t *words_a = in->a.v;
|
1476
|
+
crypto_word_t word_s = ~(*words_s);
|
1477
|
+
crypto_word_t word_a = *words_a;
|
1478
|
+
unsigned shift = 0;
|
1479
|
+
|
1480
|
+
for (unsigned i = 0; i < N; i++) {
|
1481
|
+
out->v[i] = (uint16_t)(word_s & 1) - 1;
|
1482
|
+
out->v[i] |= word_a & 1;
|
1483
|
+
word_s >>= 1;
|
1484
|
+
word_a >>= 1;
|
1485
|
+
shift++;
|
1486
|
+
|
1487
|
+
if (shift == BITS_PER_WORD) {
|
1488
|
+
words_s++;
|
1489
|
+
words_a++;
|
1490
|
+
word_s = ~(*words_s);
|
1491
|
+
word_a = *words_a;
|
1492
|
+
shift = 0;
|
1493
|
+
}
|
1494
|
+
}
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
// Polynomial inversion
|
1498
|
+
// --------------------
|
1499
|
+
|
1500
|
+
// poly_invert_mod2 sets |*out| to |in^-1| (i.e. such that |*out|×|in| = 1 mod
|
1501
|
+
// Φ(N)), all mod 2. This isn't useful in itself, but is part of doing inversion
|
1502
|
+
// mod Q.
|
1503
|
+
static void poly_invert_mod2(struct poly *out, const struct poly *in) {
|
1504
|
+
// This algorithm is taken from section 7.1 of [SAFEGCD].
|
1505
|
+
struct poly2 v, r, f, g;
|
1506
|
+
|
1507
|
+
// v = 0
|
1508
|
+
poly2_zero(&v);
|
1509
|
+
// r = 1
|
1510
|
+
poly2_zero(&r);
|
1511
|
+
r.v[0] = 1;
|
1512
|
+
// f = all ones.
|
1513
|
+
OPENSSL_memset(&f, 0xff, sizeof(struct poly2));
|
1514
|
+
f.v[WORDS_PER_POLY - 1] >>= BITS_PER_WORD - BITS_IN_LAST_WORD;
|
1515
|
+
// g is the reversal of |in|.
|
1516
|
+
poly2_from_poly(&g, in);
|
1517
|
+
poly2_mod_phiN(&g);
|
1518
|
+
poly2_reverse_700(&g, &g);
|
1519
|
+
int delta = 1;
|
1520
|
+
|
1521
|
+
for (size_t i = 0; i < (2*(N-1)) - 1; i++) {
|
1522
|
+
poly2_lshift1(&v);
|
1523
|
+
|
1524
|
+
const crypto_word_t delta_sign_bit = (delta >> (sizeof(delta) * 8 - 1)) & 1;
|
1525
|
+
const crypto_word_t delta_is_non_negative = delta_sign_bit - 1;
|
1526
|
+
const crypto_word_t delta_is_non_zero = ~constant_time_is_zero_w(delta);
|
1527
|
+
const crypto_word_t g_has_constant_term = lsb_to_all(g.v[0]);
|
1528
|
+
const crypto_word_t mask =
|
1529
|
+
g_has_constant_term & delta_is_non_negative & delta_is_non_zero;
|
1530
|
+
|
1531
|
+
const crypto_word_t c = lsb_to_all(f.v[0] & g.v[0]);
|
1532
|
+
|
1533
|
+
delta = constant_time_select_int(mask, -delta, delta);
|
1534
|
+
delta++;
|
1535
|
+
|
1536
|
+
poly2_cswap(&f, &g, mask);
|
1537
|
+
poly2_fmadd(&g, &f, c);
|
1538
|
+
poly2_rshift1(&g);
|
1539
|
+
|
1540
|
+
poly2_cswap(&v, &r, mask);
|
1541
|
+
poly2_fmadd(&r, &v, c);
|
1542
|
+
}
|
1543
|
+
|
1544
|
+
assert(delta == 0);
|
1545
|
+
assert(f.v[0] & 1);
|
1546
|
+
poly2_reverse_700(&v, &v);
|
1547
|
+
poly_from_poly2(out, &v);
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
// poly_invert sets |*out| to |in^-1| (i.e. such that |*out|×|in| = 1 mod Φ(N)).
|
1551
|
+
static void poly_invert(struct poly *out, const struct poly *in) {
|
1552
|
+
// Inversion mod Q, which is done based on the result of inverting mod
|
1553
|
+
// 2. See [NTRUTN14] paper, bottom of page two.
|
1554
|
+
struct poly a, *b, tmp;
|
1555
|
+
|
1556
|
+
// a = -in.
|
1557
|
+
for (unsigned i = 0; i < N; i++) {
|
1558
|
+
a.v[i] = -in->v[i];
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
// b = in^-1 mod 2.
|
1562
|
+
b = out;
|
1563
|
+
poly_invert_mod2(b, in);
|
1564
|
+
|
1565
|
+
// We are working mod Q=2**13 and we need to iterate ceil(log_2(13))
|
1566
|
+
// times, which is four.
|
1567
|
+
for (unsigned i = 0; i < 4; i++) {
|
1568
|
+
poly_mul(&tmp, &a, b);
|
1569
|
+
tmp.v[0] += 2;
|
1570
|
+
poly_mul(b, b, &tmp);
|
1571
|
+
}
|
1572
|
+
}
|
1573
|
+
|
1574
|
+
// Marshal and unmarshal functions for various basic types.
|
1575
|
+
// --------------------------------------------------------
|
1576
|
+
|
1577
|
+
#define POLY_BYTES 1138
|
1578
|
+
|
1579
|
+
// poly_marshal serialises all but the final coefficient of |in| to |out|.
|
1580
|
+
static void poly_marshal(uint8_t out[POLY_BYTES], const struct poly *in) {
|
1581
|
+
const uint16_t *p = in->v;
|
1582
|
+
|
1583
|
+
for (size_t i = 0; i < N / 8; i++) {
|
1584
|
+
out[0] = p[0];
|
1585
|
+
out[1] = (0x1f & (p[0] >> 8)) | ((p[1] & 0x07) << 5);
|
1586
|
+
out[2] = p[1] >> 3;
|
1587
|
+
out[3] = (3 & (p[1] >> 11)) | ((p[2] & 0x3f) << 2);
|
1588
|
+
out[4] = (0x7f & (p[2] >> 6)) | ((p[3] & 0x01) << 7);
|
1589
|
+
out[5] = p[3] >> 1;
|
1590
|
+
out[6] = (0xf & (p[3] >> 9)) | ((p[4] & 0x0f) << 4);
|
1591
|
+
out[7] = p[4] >> 4;
|
1592
|
+
out[8] = (1 & (p[4] >> 12)) | ((p[5] & 0x7f) << 1);
|
1593
|
+
out[9] = (0x3f & (p[5] >> 7)) | ((p[6] & 0x03) << 6);
|
1594
|
+
out[10] = p[6] >> 2;
|
1595
|
+
out[11] = (7 & (p[6] >> 10)) | ((p[7] & 0x1f) << 3);
|
1596
|
+
out[12] = p[7] >> 5;
|
1597
|
+
|
1598
|
+
p += 8;
|
1599
|
+
out += 13;
|
1600
|
+
}
|
1601
|
+
|
1602
|
+
// There are four remaining values.
|
1603
|
+
out[0] = p[0];
|
1604
|
+
out[1] = (0x1f & (p[0] >> 8)) | ((p[1] & 0x07) << 5);
|
1605
|
+
out[2] = p[1] >> 3;
|
1606
|
+
out[3] = (3 & (p[1] >> 11)) | ((p[2] & 0x3f) << 2);
|
1607
|
+
out[4] = (0x7f & (p[2] >> 6)) | ((p[3] & 0x01) << 7);
|
1608
|
+
out[5] = p[3] >> 1;
|
1609
|
+
out[6] = 0xf & (p[3] >> 9);
|
1610
|
+
}
|
1611
|
+
|
1612
|
+
// poly_unmarshal parses the output of |poly_marshal| and sets |out| such that
|
1613
|
+
// all but the final coefficients match, and the final coefficient is calculated
|
1614
|
+
// such that evaluating |out| at one results in zero. It returns one on success
|
1615
|
+
// or zero if |in| is an invalid encoding.
|
1616
|
+
static int poly_unmarshal(struct poly *out, const uint8_t in[POLY_BYTES]) {
|
1617
|
+
uint16_t *p = out->v;
|
1618
|
+
|
1619
|
+
for (size_t i = 0; i < N / 8; i++) {
|
1620
|
+
p[0] = (uint16_t)(in[0]) | (uint16_t)(in[1] & 0x1f) << 8;
|
1621
|
+
p[1] = (uint16_t)(in[1] >> 5) | (uint16_t)(in[2]) << 3 |
|
1622
|
+
(uint16_t)(in[3] & 3) << 11;
|
1623
|
+
p[2] = (uint16_t)(in[3] >> 2) | (uint16_t)(in[4] & 0x7f) << 6;
|
1624
|
+
p[3] = (uint16_t)(in[4] >> 7) | (uint16_t)(in[5]) << 1 |
|
1625
|
+
(uint16_t)(in[6] & 0xf) << 9;
|
1626
|
+
p[4] = (uint16_t)(in[6] >> 4) | (uint16_t)(in[7]) << 4 |
|
1627
|
+
(uint16_t)(in[8] & 1) << 12;
|
1628
|
+
p[5] = (uint16_t)(in[8] >> 1) | (uint16_t)(in[9] & 0x3f) << 7;
|
1629
|
+
p[6] = (uint16_t)(in[9] >> 6) | (uint16_t)(in[10]) << 2 |
|
1630
|
+
(uint16_t)(in[11] & 7) << 10;
|
1631
|
+
p[7] = (uint16_t)(in[11] >> 3) | (uint16_t)(in[12]) << 5;
|
1632
|
+
|
1633
|
+
p += 8;
|
1634
|
+
in += 13;
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
// There are four coefficients remaining.
|
1638
|
+
p[0] = (uint16_t)(in[0]) | (uint16_t)(in[1] & 0x1f) << 8;
|
1639
|
+
p[1] = (uint16_t)(in[1] >> 5) | (uint16_t)(in[2]) << 3 |
|
1640
|
+
(uint16_t)(in[3] & 3) << 11;
|
1641
|
+
p[2] = (uint16_t)(in[3] >> 2) | (uint16_t)(in[4] & 0x7f) << 6;
|
1642
|
+
p[3] = (uint16_t)(in[4] >> 7) | (uint16_t)(in[5]) << 1 |
|
1643
|
+
(uint16_t)(in[6] & 0xf) << 9;
|
1644
|
+
|
1645
|
+
for (unsigned i = 0; i < N - 1; i++) {
|
1646
|
+
out->v[i] = (int16_t)(out->v[i] << 3) >> 3;
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
// There are four unused bits in the last byte. We require them to be zero.
|
1650
|
+
if ((in[6] & 0xf0) != 0) {
|
1651
|
+
return 0;
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
// Set the final coefficient as specifed in [HRSSNIST] 1.9.2 step 6.
|
1655
|
+
uint32_t sum = 0;
|
1656
|
+
for (size_t i = 0; i < N - 1; i++) {
|
1657
|
+
sum += out->v[i];
|
1658
|
+
}
|
1659
|
+
|
1660
|
+
out->v[N - 1] = (uint16_t)(0u - sum);
|
1661
|
+
|
1662
|
+
return 1;
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
// mod3_from_modQ maps {0, 1, Q-1, 65535} -> {0, 1, 2, 2}. Note that |v| may
|
1666
|
+
// have an invalid value when processing attacker-controlled inputs.
|
1667
|
+
static uint16_t mod3_from_modQ(uint16_t v) {
|
1668
|
+
v &= 3;
|
1669
|
+
return v ^ (v >> 1);
|
1670
|
+
}
|
1671
|
+
|
1672
|
+
// poly_marshal_mod3 marshals |in| to |out| where the coefficients of |in| are
|
1673
|
+
// all in {0, 1, Q-1, 65535} and |in| is mod Φ(N). (Note that coefficients may
|
1674
|
+
// have invalid values when processing attacker-controlled inputs.)
|
1675
|
+
static void poly_marshal_mod3(uint8_t out[HRSS_POLY3_BYTES],
|
1676
|
+
const struct poly *in) {
|
1677
|
+
const uint16_t *coeffs = in->v;
|
1678
|
+
|
1679
|
+
// Only 700 coefficients are marshaled because in[700] must be zero.
|
1680
|
+
assert(coeffs[N-1] == 0);
|
1681
|
+
|
1682
|
+
for (size_t i = 0; i < HRSS_POLY3_BYTES; i++) {
|
1683
|
+
const uint16_t coeffs0 = mod3_from_modQ(coeffs[0]);
|
1684
|
+
const uint16_t coeffs1 = mod3_from_modQ(coeffs[1]);
|
1685
|
+
const uint16_t coeffs2 = mod3_from_modQ(coeffs[2]);
|
1686
|
+
const uint16_t coeffs3 = mod3_from_modQ(coeffs[3]);
|
1687
|
+
const uint16_t coeffs4 = mod3_from_modQ(coeffs[4]);
|
1688
|
+
out[i] = coeffs0 + coeffs1 * 3 + coeffs2 * 9 + coeffs3 * 27 + coeffs4 * 81;
|
1689
|
+
coeffs += 5;
|
1690
|
+
}
|
1691
|
+
}
|
1692
|
+
|
1693
|
+
// HRSS-specific functions
|
1694
|
+
// -----------------------
|
1695
|
+
|
1696
|
+
// poly_short_sample samples a vector of values in {0xffff (i.e. -1), 0, 1}.
|
1697
|
+
// This is the same action as the algorithm in [HRSSNIST] section 1.8.1, but
|
1698
|
+
// with HRSS-SXY the sampling algorithm is now a private detail of the
|
1699
|
+
// implementation (previously it had to match between two parties). This
|
1700
|
+
// function uses that freedom to implement a flatter distribution of values.
|
1701
|
+
static void poly_short_sample(struct poly *out,
|
1702
|
+
const uint8_t in[HRSS_SAMPLE_BYTES]) {
|
1703
|
+
OPENSSL_STATIC_ASSERT(HRSS_SAMPLE_BYTES == N - 1,
|
1704
|
+
"HRSS_SAMPLE_BYTES incorrect");
|
1705
|
+
for (size_t i = 0; i < N - 1; i++) {
|
1706
|
+
uint16_t v = mod3(in[i]);
|
1707
|
+
// Map {0, 1, 2} -> {0, 1, 0xffff}
|
1708
|
+
v |= ((v >> 1) ^ 1) - 1;
|
1709
|
+
out->v[i] = v;
|
1710
|
+
}
|
1711
|
+
out->v[N - 1] = 0;
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
// poly_short_sample_plus performs the T+ sample as defined in [HRSSNIST],
|
1715
|
+
// section 1.8.2.
|
1716
|
+
static void poly_short_sample_plus(struct poly *out,
|
1717
|
+
const uint8_t in[HRSS_SAMPLE_BYTES]) {
|
1718
|
+
poly_short_sample(out, in);
|
1719
|
+
|
1720
|
+
// sum (and the product in the for loop) will overflow. But that's fine
|
1721
|
+
// because |sum| is bound by +/- (N-2), and N < 2^15 so it works out.
|
1722
|
+
uint16_t sum = 0;
|
1723
|
+
for (unsigned i = 0; i < N - 2; i++) {
|
1724
|
+
sum += (unsigned) out->v[i] * out->v[i + 1];
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
// If the sum is negative, flip the sign of even-positioned coefficients. (See
|
1728
|
+
// page 8 of [HRSS].)
|
1729
|
+
sum = ((int16_t) sum) >> 15;
|
1730
|
+
const uint16_t scale = sum | (~sum & 1);
|
1731
|
+
for (unsigned i = 0; i < N; i += 2) {
|
1732
|
+
out->v[i] = (unsigned) out->v[i] * scale;
|
1733
|
+
}
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
// poly_lift computes the function discussed in [HRSS], appendix B.
|
1737
|
+
static void poly_lift(struct poly *out, const struct poly *a) {
|
1738
|
+
// We wish to calculate a/(𝑥-1) mod Φ(N) over GF(3), where Φ(N) is the
|
1739
|
+
// Nth cyclotomic polynomial, i.e. 1 + 𝑥 + … + 𝑥^700 (since N is prime).
|
1740
|
+
|
1741
|
+
// 1/(𝑥-1) has a fairly basic structure that we can exploit to speed this up:
|
1742
|
+
//
|
1743
|
+
// R.<x> = PolynomialRing(GF(3)…)
|
1744
|
+
// inv = R.cyclotomic_polynomial(1).inverse_mod(R.cyclotomic_polynomial(n))
|
1745
|
+
// list(inv)[:15]
|
1746
|
+
// [1, 0, 2, 1, 0, 2, 1, 0, 2, 1, 0, 2, 1, 0, 2]
|
1747
|
+
//
|
1748
|
+
// This three-element pattern of coefficients repeats for the whole
|
1749
|
+
// polynomial.
|
1750
|
+
//
|
1751
|
+
// Next define the overbar operator such that z̅ = z[0] +
|
1752
|
+
// reverse(z[1:]). (Index zero of a polynomial here is the coefficient
|
1753
|
+
// of the constant term. So index one is the coefficient of 𝑥 and so
|
1754
|
+
// on.)
|
1755
|
+
//
|
1756
|
+
// A less odd way to define this is to see that z̅ negates the indexes,
|
1757
|
+
// so z̅[0] = z[-0], z̅[1] = z[-1] and so on.
|
1758
|
+
//
|
1759
|
+
// The use of z̅ is that, when working mod (𝑥^701 - 1), vz[0] = <v,
|
1760
|
+
// z̅>, vz[1] = <v, 𝑥z̅>, …. (Where <a, b> is the inner product: the sum
|
1761
|
+
// of the point-wise products.) Although we calculated the inverse mod
|
1762
|
+
// Φ(N), we can work mod (𝑥^N - 1) and reduce mod Φ(N) at the end.
|
1763
|
+
// (That's because (𝑥^N - 1) is a multiple of Φ(N).)
|
1764
|
+
//
|
1765
|
+
// When working mod (𝑥^N - 1), multiplication by 𝑥 is a right-rotation
|
1766
|
+
// of the list of coefficients.
|
1767
|
+
//
|
1768
|
+
// Thus we can consider what the pattern of z̅, 𝑥z̅, 𝑥^2z̅, … looks like:
|
1769
|
+
//
|
1770
|
+
// def reverse(xs):
|
1771
|
+
// suffix = list(xs[1:])
|
1772
|
+
// suffix.reverse()
|
1773
|
+
// return [xs[0]] + suffix
|
1774
|
+
//
|
1775
|
+
// def rotate(xs):
|
1776
|
+
// return [xs[-1]] + xs[:-1]
|
1777
|
+
//
|
1778
|
+
// zoverbar = reverse(list(inv) + [0])
|
1779
|
+
// xzoverbar = rotate(reverse(list(inv) + [0]))
|
1780
|
+
// x2zoverbar = rotate(rotate(reverse(list(inv) + [0])))
|
1781
|
+
//
|
1782
|
+
// zoverbar[:15]
|
1783
|
+
// [1, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1]
|
1784
|
+
// xzoverbar[:15]
|
1785
|
+
// [0, 1, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0]
|
1786
|
+
// x2zoverbar[:15]
|
1787
|
+
// [2, 0, 1, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2]
|
1788
|
+
//
|
1789
|
+
// (For a formula for z̅, see lemma two of appendix B.)
|
1790
|
+
//
|
1791
|
+
// After the first three elements have been taken care of, all then have
|
1792
|
+
// a repeating three-element cycle. The next value (𝑥^3z̅) involves
|
1793
|
+
// three rotations of the first pattern, thus the three-element cycle
|
1794
|
+
// lines up. However, the discontinuity in the first three elements
|
1795
|
+
// obviously moves to a different position. Consider the difference
|
1796
|
+
// between 𝑥^3z̅ and z̅:
|
1797
|
+
//
|
1798
|
+
// [x-y for (x,y) in zip(zoverbar, x3zoverbar)][:15]
|
1799
|
+
// [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
1800
|
+
//
|
1801
|
+
// This pattern of differences is the same for all elements, although it
|
1802
|
+
// obviously moves right with the rotations.
|
1803
|
+
//
|
1804
|
+
// From this, we reach algorithm eight of appendix B.
|
1805
|
+
|
1806
|
+
// Handle the first three elements of the inner products.
|
1807
|
+
out->v[0] = a->v[0] + a->v[2];
|
1808
|
+
out->v[1] = a->v[1];
|
1809
|
+
out->v[2] = -a->v[0] + a->v[2];
|
1810
|
+
|
1811
|
+
// s0, s1, s2 are added into out->v[0], out->v[1], and out->v[2],
|
1812
|
+
// respectively. We do not compute s1 because it's just -(s0 + s1).
|
1813
|
+
uint16_t s0 = 0, s2 = 0;
|
1814
|
+
for (size_t i = 3; i < 699; i += 3) {
|
1815
|
+
s0 += -a->v[i] + a->v[i + 2];
|
1816
|
+
// s1 += a->v[i] - a->v[i + 1];
|
1817
|
+
s2 += a->v[i + 1] - a->v[i + 2];
|
1818
|
+
}
|
1819
|
+
|
1820
|
+
// Handle the fact that the three-element pattern doesn't fill the
|
1821
|
+
// polynomial exactly (since 701 isn't a multiple of three).
|
1822
|
+
s0 -= a->v[699];
|
1823
|
+
// s1 += a->v[699] - a->v[700];
|
1824
|
+
s2 += a->v[700];
|
1825
|
+
|
1826
|
+
// Note that s0 + s1 + s2 = 0.
|
1827
|
+
out->v[0] += s0;
|
1828
|
+
out->v[1] -= (s0 + s2); // = s1
|
1829
|
+
out->v[2] += s2;
|
1830
|
+
|
1831
|
+
// Calculate the remaining inner products by taking advantage of the
|
1832
|
+
// fact that the pattern repeats every three cycles and the pattern of
|
1833
|
+
// differences moves with the rotation.
|
1834
|
+
for (size_t i = 3; i < N; i++) {
|
1835
|
+
out->v[i] = (out->v[i - 3] - (a->v[i - 2] + a->v[i - 1] + a->v[i]));
|
1836
|
+
}
|
1837
|
+
|
1838
|
+
// Reduce mod Φ(N) by subtracting a multiple of out[700] from every
|
1839
|
+
// element and convert to mod Q. (See above about adding twice as
|
1840
|
+
// subtraction.)
|
1841
|
+
const crypto_word_t v = out->v[700];
|
1842
|
+
for (unsigned i = 0; i < N; i++) {
|
1843
|
+
const uint16_t vi_mod3 = mod3(out->v[i] - v);
|
1844
|
+
// Map {0, 1, 2} to {0, 1, 0xffff}.
|
1845
|
+
out->v[i] = (~((vi_mod3 >> 1) - 1)) | vi_mod3;
|
1846
|
+
}
|
1847
|
+
|
1848
|
+
poly_mul_x_minus_1(out);
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
struct public_key {
|
1852
|
+
struct poly ph;
|
1853
|
+
};
|
1854
|
+
|
1855
|
+
struct private_key {
|
1856
|
+
struct poly3 f, f_inverse;
|
1857
|
+
struct poly ph_inverse;
|
1858
|
+
uint8_t hmac_key[32];
|
1859
|
+
};
|
1860
|
+
|
1861
|
+
// public_key_from_external converts an external public key pointer into an
|
1862
|
+
// internal one. Externally the alignment is only specified to be eight bytes
|
1863
|
+
// but we need 16-byte alignment. We could annotate the external struct with
|
1864
|
+
// that alignment but we can only assume that malloced pointers are 8-byte
|
1865
|
+
// aligned in any case. (Even if the underlying malloc returns values with
|
1866
|
+
// 16-byte alignment, |OPENSSL_malloc| will store an 8-byte size prefix and mess
|
1867
|
+
// that up.)
|
1868
|
+
static struct public_key *public_key_from_external(
|
1869
|
+
struct HRSS_public_key *ext) {
|
1870
|
+
OPENSSL_STATIC_ASSERT(
|
1871
|
+
sizeof(struct HRSS_public_key) >= sizeof(struct public_key) + 15,
|
1872
|
+
"HRSS public key too small");
|
1873
|
+
|
1874
|
+
uintptr_t p = (uintptr_t)ext;
|
1875
|
+
p = (p + 15) & ~15;
|
1876
|
+
return (struct public_key *)p;
|
1877
|
+
}
|
1878
|
+
|
1879
|
+
// private_key_from_external does the same thing as |public_key_from_external|,
|
1880
|
+
// but for private keys. See the comment on that function about alignment
|
1881
|
+
// issues.
|
1882
|
+
static struct private_key *private_key_from_external(
|
1883
|
+
struct HRSS_private_key *ext) {
|
1884
|
+
OPENSSL_STATIC_ASSERT(
|
1885
|
+
sizeof(struct HRSS_private_key) >= sizeof(struct private_key) + 15,
|
1886
|
+
"HRSS private key too small");
|
1887
|
+
|
1888
|
+
uintptr_t p = (uintptr_t)ext;
|
1889
|
+
p = (p + 15) & ~15;
|
1890
|
+
return (struct private_key *)p;
|
1891
|
+
}
|
1892
|
+
|
1893
|
+
void HRSS_generate_key(
|
1894
|
+
struct HRSS_public_key *out_pub, struct HRSS_private_key *out_priv,
|
1895
|
+
const uint8_t in[HRSS_SAMPLE_BYTES + HRSS_SAMPLE_BYTES + 32]) {
|
1896
|
+
struct public_key *pub = public_key_from_external(out_pub);
|
1897
|
+
struct private_key *priv = private_key_from_external(out_priv);
|
1898
|
+
|
1899
|
+
OPENSSL_memcpy(priv->hmac_key, in + 2 * HRSS_SAMPLE_BYTES,
|
1900
|
+
sizeof(priv->hmac_key));
|
1901
|
+
|
1902
|
+
struct poly f;
|
1903
|
+
poly_short_sample_plus(&f, in);
|
1904
|
+
poly3_from_poly(&priv->f, &f);
|
1905
|
+
HRSS_poly3_invert(&priv->f_inverse, &priv->f);
|
1906
|
+
|
1907
|
+
// pg_phi1 is p (i.e. 3) × g × Φ(1) (i.e. 𝑥-1).
|
1908
|
+
struct poly pg_phi1;
|
1909
|
+
poly_short_sample_plus(&pg_phi1, in + HRSS_SAMPLE_BYTES);
|
1910
|
+
for (unsigned i = 0; i < N; i++) {
|
1911
|
+
pg_phi1.v[i] *= 3;
|
1912
|
+
}
|
1913
|
+
poly_mul_x_minus_1(&pg_phi1);
|
1914
|
+
|
1915
|
+
struct poly pfg_phi1;
|
1916
|
+
poly_mul(&pfg_phi1, &f, &pg_phi1);
|
1917
|
+
|
1918
|
+
struct poly pfg_phi1_inverse;
|
1919
|
+
poly_invert(&pfg_phi1_inverse, &pfg_phi1);
|
1920
|
+
|
1921
|
+
poly_mul(&pub->ph, &pfg_phi1_inverse, &pg_phi1);
|
1922
|
+
poly_mul(&pub->ph, &pub->ph, &pg_phi1);
|
1923
|
+
poly_clamp(&pub->ph);
|
1924
|
+
|
1925
|
+
poly_mul(&priv->ph_inverse, &pfg_phi1_inverse, &f);
|
1926
|
+
poly_mul(&priv->ph_inverse, &priv->ph_inverse, &f);
|
1927
|
+
poly_clamp(&priv->ph_inverse);
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
static const char kSharedKey[] = "shared key";
|
1931
|
+
|
1932
|
+
void HRSS_encap(uint8_t out_ciphertext[POLY_BYTES],
|
1933
|
+
uint8_t out_shared_key[32],
|
1934
|
+
const struct HRSS_public_key *in_pub,
|
1935
|
+
const uint8_t in[HRSS_SAMPLE_BYTES + HRSS_SAMPLE_BYTES]) {
|
1936
|
+
const struct public_key *pub =
|
1937
|
+
public_key_from_external((struct HRSS_public_key *)in_pub);
|
1938
|
+
struct poly m, r, m_lifted;
|
1939
|
+
poly_short_sample(&m, in);
|
1940
|
+
poly_short_sample(&r, in + HRSS_SAMPLE_BYTES);
|
1941
|
+
poly_lift(&m_lifted, &m);
|
1942
|
+
|
1943
|
+
struct poly prh_plus_m;
|
1944
|
+
poly_mul(&prh_plus_m, &r, &pub->ph);
|
1945
|
+
for (unsigned i = 0; i < N; i++) {
|
1946
|
+
prh_plus_m.v[i] += m_lifted.v[i];
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
poly_marshal(out_ciphertext, &prh_plus_m);
|
1950
|
+
|
1951
|
+
uint8_t m_bytes[HRSS_POLY3_BYTES], r_bytes[HRSS_POLY3_BYTES];
|
1952
|
+
poly_marshal_mod3(m_bytes, &m);
|
1953
|
+
poly_marshal_mod3(r_bytes, &r);
|
1954
|
+
|
1955
|
+
SHA256_CTX hash_ctx;
|
1956
|
+
SHA256_Init(&hash_ctx);
|
1957
|
+
SHA256_Update(&hash_ctx, kSharedKey, sizeof(kSharedKey));
|
1958
|
+
SHA256_Update(&hash_ctx, m_bytes, sizeof(m_bytes));
|
1959
|
+
SHA256_Update(&hash_ctx, r_bytes, sizeof(r_bytes));
|
1960
|
+
SHA256_Update(&hash_ctx, out_ciphertext, POLY_BYTES);
|
1961
|
+
SHA256_Final(out_shared_key, &hash_ctx);
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
void HRSS_decap(uint8_t out_shared_key[HRSS_KEY_BYTES],
|
1965
|
+
const struct HRSS_private_key *in_priv,
|
1966
|
+
const uint8_t *ciphertext, size_t ciphertext_len) {
|
1967
|
+
const struct private_key *priv =
|
1968
|
+
private_key_from_external((struct HRSS_private_key *)in_priv);
|
1969
|
+
|
1970
|
+
// This is HMAC, expanded inline rather than using the |HMAC| function so that
|
1971
|
+
// we can avoid dealing with possible allocation failures and so keep this
|
1972
|
+
// function infallible.
|
1973
|
+
uint8_t masked_key[SHA256_CBLOCK];
|
1974
|
+
OPENSSL_STATIC_ASSERT(sizeof(priv->hmac_key) <= sizeof(masked_key),
|
1975
|
+
"HRSS HMAC key larger than SHA-256 block size");
|
1976
|
+
for (size_t i = 0; i < sizeof(priv->hmac_key); i++) {
|
1977
|
+
masked_key[i] = priv->hmac_key[i] ^ 0x36;
|
1978
|
+
}
|
1979
|
+
OPENSSL_memset(masked_key + sizeof(priv->hmac_key), 0x36,
|
1980
|
+
sizeof(masked_key) - sizeof(priv->hmac_key));
|
1981
|
+
|
1982
|
+
SHA256_CTX hash_ctx;
|
1983
|
+
SHA256_Init(&hash_ctx);
|
1984
|
+
SHA256_Update(&hash_ctx, masked_key, sizeof(masked_key));
|
1985
|
+
SHA256_Update(&hash_ctx, ciphertext, ciphertext_len);
|
1986
|
+
uint8_t inner_digest[SHA256_DIGEST_LENGTH];
|
1987
|
+
SHA256_Final(inner_digest, &hash_ctx);
|
1988
|
+
|
1989
|
+
for (size_t i = 0; i < sizeof(priv->hmac_key); i++) {
|
1990
|
+
masked_key[i] ^= (0x5c ^ 0x36);
|
1991
|
+
}
|
1992
|
+
OPENSSL_memset(masked_key + sizeof(priv->hmac_key), 0x5c,
|
1993
|
+
sizeof(masked_key) - sizeof(priv->hmac_key));
|
1994
|
+
|
1995
|
+
SHA256_Init(&hash_ctx);
|
1996
|
+
SHA256_Update(&hash_ctx, masked_key, sizeof(masked_key));
|
1997
|
+
SHA256_Update(&hash_ctx, inner_digest, sizeof(inner_digest));
|
1998
|
+
OPENSSL_STATIC_ASSERT(HRSS_KEY_BYTES == SHA256_DIGEST_LENGTH,
|
1999
|
+
"HRSS shared key length incorrect");
|
2000
|
+
SHA256_Final(out_shared_key, &hash_ctx);
|
2001
|
+
|
2002
|
+
struct poly c;
|
2003
|
+
// If the ciphertext is publicly invalid then a random shared key is still
|
2004
|
+
// returned to simply the logic of the caller, but this path is not constant
|
2005
|
+
// time.
|
2006
|
+
if (ciphertext_len != HRSS_CIPHERTEXT_BYTES ||
|
2007
|
+
!poly_unmarshal(&c, ciphertext)) {
|
2008
|
+
return;
|
2009
|
+
}
|
2010
|
+
|
2011
|
+
struct poly f, cf;
|
2012
|
+
struct poly3 cf3, m3;
|
2013
|
+
poly_from_poly3(&f, &priv->f);
|
2014
|
+
poly_mul(&cf, &c, &f);
|
2015
|
+
poly3_from_poly(&cf3, &cf);
|
2016
|
+
// Note that cf3 is not reduced mod Φ(N). That reduction is deferred.
|
2017
|
+
HRSS_poly3_mul(&m3, &cf3, &priv->f_inverse);
|
2018
|
+
|
2019
|
+
struct poly m, m_lifted;
|
2020
|
+
poly_from_poly3(&m, &m3);
|
2021
|
+
poly_lift(&m_lifted, &m);
|
2022
|
+
|
2023
|
+
struct poly r;
|
2024
|
+
for (unsigned i = 0; i < N; i++) {
|
2025
|
+
r.v[i] = c.v[i] - m_lifted.v[i];
|
2026
|
+
}
|
2027
|
+
poly_mul(&r, &r, &priv->ph_inverse);
|
2028
|
+
poly_mod_phiN(&r);
|
2029
|
+
poly_clamp(&r);
|
2030
|
+
|
2031
|
+
struct poly3 r3;
|
2032
|
+
crypto_word_t ok = poly3_from_poly_checked(&r3, &r);
|
2033
|
+
|
2034
|
+
// [NTRUCOMP] section 5.1 includes ReEnc2 and a proof that it's valid. Rather
|
2035
|
+
// than do an expensive |poly_mul|, it rebuilds |c'| from |c - lift(m)|
|
2036
|
+
// (called |b|) with:
|
2037
|
+
// t = (−b(1)/N) mod Q
|
2038
|
+
// c' = b + tΦ(N) + lift(m) mod Q
|
2039
|
+
//
|
2040
|
+
// When polynomials are transmitted, the final coefficient is omitted and
|
2041
|
+
// |poly_unmarshal| sets it such that f(1) == 0. Thus c(1) == 0. Also,
|
2042
|
+
// |poly_lift| multiplies the result by (x-1) and therefore evaluating a
|
2043
|
+
// lifted polynomial at 1 is also zero. Thus lift(m)(1) == 0 and so
|
2044
|
+
// (c - lift(m))(1) == 0.
|
2045
|
+
//
|
2046
|
+
// Although we defer the reduction above, |b| is conceptually reduced mod
|
2047
|
+
// Φ(N). In order to do that reduction one subtracts |c[N-1]| from every
|
2048
|
+
// coefficient. Therefore b(1) = -c[N-1]×N. The value of |t|, above, then is
|
2049
|
+
// just recovering |c[N-1]|, and adding tΦ(N) is simply undoing the reduction.
|
2050
|
+
// Therefore b + tΦ(N) + lift(m) = c by construction and we don't need to
|
2051
|
+
// recover |c| at all so long as we do the checks in
|
2052
|
+
// |poly3_from_poly_checked|.
|
2053
|
+
//
|
2054
|
+
// The |poly_marshal| here then is just confirming that |poly_unmarshal| is
|
2055
|
+
// strict and could be omitted.
|
2056
|
+
|
2057
|
+
uint8_t expected_ciphertext[HRSS_CIPHERTEXT_BYTES];
|
2058
|
+
OPENSSL_STATIC_ASSERT(HRSS_CIPHERTEXT_BYTES == POLY_BYTES,
|
2059
|
+
"ciphertext is the wrong size");
|
2060
|
+
assert(ciphertext_len == sizeof(expected_ciphertext));
|
2061
|
+
poly_marshal(expected_ciphertext, &c);
|
2062
|
+
|
2063
|
+
uint8_t m_bytes[HRSS_POLY3_BYTES];
|
2064
|
+
uint8_t r_bytes[HRSS_POLY3_BYTES];
|
2065
|
+
poly_marshal_mod3(m_bytes, &m);
|
2066
|
+
poly_marshal_mod3(r_bytes, &r);
|
2067
|
+
|
2068
|
+
ok &= constant_time_is_zero_w(CRYPTO_memcmp(ciphertext, expected_ciphertext,
|
2069
|
+
sizeof(expected_ciphertext)));
|
2070
|
+
|
2071
|
+
uint8_t shared_key[32];
|
2072
|
+
SHA256_Init(&hash_ctx);
|
2073
|
+
SHA256_Update(&hash_ctx, kSharedKey, sizeof(kSharedKey));
|
2074
|
+
SHA256_Update(&hash_ctx, m_bytes, sizeof(m_bytes));
|
2075
|
+
SHA256_Update(&hash_ctx, r_bytes, sizeof(r_bytes));
|
2076
|
+
SHA256_Update(&hash_ctx, expected_ciphertext, sizeof(expected_ciphertext));
|
2077
|
+
SHA256_Final(shared_key, &hash_ctx);
|
2078
|
+
|
2079
|
+
for (unsigned i = 0; i < sizeof(shared_key); i++) {
|
2080
|
+
out_shared_key[i] =
|
2081
|
+
constant_time_select_8(ok, shared_key[i], out_shared_key[i]);
|
2082
|
+
}
|
2083
|
+
}
|
2084
|
+
|
2085
|
+
void HRSS_marshal_public_key(uint8_t out[HRSS_PUBLIC_KEY_BYTES],
|
2086
|
+
const struct HRSS_public_key *in_pub) {
|
2087
|
+
const struct public_key *pub =
|
2088
|
+
public_key_from_external((struct HRSS_public_key *)in_pub);
|
2089
|
+
poly_marshal(out, &pub->ph);
|
2090
|
+
}
|
2091
|
+
|
2092
|
+
int HRSS_parse_public_key(struct HRSS_public_key *out,
|
2093
|
+
const uint8_t in[HRSS_PUBLIC_KEY_BYTES]) {
|
2094
|
+
struct public_key *pub = public_key_from_external(out);
|
2095
|
+
if (!poly_unmarshal(&pub->ph, in)) {
|
2096
|
+
return 0;
|
2097
|
+
}
|
2098
|
+
OPENSSL_memset(&pub->ph.v[N], 0, 3 * sizeof(uint16_t));
|
2099
|
+
return 1;
|
2100
|
+
}
|