grpc 1.28.0 → 1.31.0.pre2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +8314 -11869
- data/include/grpc/grpc.h +2 -2
- data/include/grpc/grpc_security.h +30 -9
- data/include/grpc/grpc_security_constants.h +4 -0
- data/include/grpc/impl/codegen/grpc_types.h +23 -23
- data/include/grpc/impl/codegen/port_platform.h +6 -34
- data/include/grpc/module.modulemap +24 -39
- data/src/core/ext/filters/client_channel/backend_metric.cc +18 -12
- data/src/core/ext/filters/client_channel/client_channel.cc +591 -479
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +3 -2
- data/src/core/ext/filters/client_channel/config_selector.cc +62 -0
- data/src/core/ext/filters/client_channel/config_selector.h +93 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +9 -22
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +6 -5
- data/src/core/ext/filters/client_channel/http_proxy.cc +23 -14
- data/src/core/ext/filters/client_channel/lb_policy.cc +19 -18
- data/src/core/ext/filters/client_channel/lb_policy.h +44 -33
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +10 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +279 -324
- 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_secure.cc +11 -9
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +3 -2
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +9 -17
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +733 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +84 -37
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +1143 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +10 -7
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +2 -1
- data/src/core/ext/filters/client_channel/parse_address.cc +22 -21
- data/src/core/ext/filters/client_channel/resolver.cc +5 -8
- data/src/core/ext/filters/client_channel/resolver.h +12 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +78 -61
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +41 -40
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +8 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +22 -24
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +12 -10
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +79 -122
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +199 -163
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +7 -4
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +46 -45
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +93 -102
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +0 -4
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +38 -8
- data/src/core/ext/filters/client_channel/resolver_factory.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_registry.cc +19 -17
- data/src/core/ext/filters/client_channel/resolver_registry.h +8 -8
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +21 -22
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +19 -16
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +49 -55
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +43 -23
- data/src/core/ext/filters/client_channel/server_address.cc +6 -9
- data/src/core/ext/filters/client_channel/server_address.h +6 -12
- data/src/core/ext/filters/client_channel/service_config.cc +104 -144
- data/src/core/ext/filters/client_channel/service_config.h +28 -98
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -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 +55 -25
- data/src/core/ext/filters/client_channel/subchannel.h +35 -11
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +565 -234
- data/src/core/ext/filters/client_channel/xds/xds_api.h +102 -37
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +55 -71
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +4 -3
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +4 -2
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +619 -347
- data/src/core/ext/filters/client_channel/xds/xds_client.h +57 -22
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +11 -12
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +40 -28
- data/src/core/ext/filters/http/client/http_client_filter.cc +28 -33
- data/src/core/ext/filters/http/client_authority_filter.cc +4 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +28 -12
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +258 -221
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +399 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +31 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +61 -88
- data/src/core/ext/filters/message_size/message_size_filter.h +10 -4
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +386 -350
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +6 -2
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +1 -1
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +7 -13
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +42 -26
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +25 -30
- data/src/core/ext/transport/chttp2/transport/flow_control.h +14 -16
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +6 -7
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +29 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +25 -29
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -2
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +4 -5
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +2 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +27 -21
- data/src/core/ext/transport/chttp2/transport/parsing.cc +33 -43
- data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +24 -22
- data/src/core/ext/transport/inproc/inproc_transport.cc +54 -15
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +3 -4
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +4 -229
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +5 -876
- 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 +429 -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 +198 -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 +388 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +23 -10
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +352 -310
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +42 -34
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +7 -7
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +79 -61
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +55 -49
- 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 +79 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +48 -27
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +258 -214
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +51 -45
- 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 +71 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +107 -100
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +24 -20
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +157 -122
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +9 -9
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +38 -18
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +173 -73
- 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 +88 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +95 -101
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +49 -65
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +9 -6
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +53 -38
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +70 -62
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +15 -10
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +95 -63
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +3 -2
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +91 -80
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +9 -10
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +36 -31
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +68 -46
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +770 -722
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +16 -15
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +95 -88
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +48 -28
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +305 -210
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +5 -5
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +4 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +22 -16
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +16 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +48 -11
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +14 -14
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +23 -23
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +8 -9
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +15 -16
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +7 -8
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +36 -35
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +0 -1
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +0 -1
- data/src/core/ext/upb-generated/google/api/http.upb.h +29 -28
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +12 -11
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +421 -389
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +1 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +33 -54
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +27 -28
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +8 -8
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +1 -1
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +32 -45
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +4 -4
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +157 -178
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +14 -13
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +6 -7
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +59 -56
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +11 -12
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +0 -1
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +64 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +6 -6
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +41 -68
- data/src/core/ext/upb-generated/validate/validate.upb.c +21 -20
- data/src/core/ext/upb-generated/validate/validate.upb.h +569 -562
- data/src/core/lib/channel/channel_args.cc +15 -14
- data/src/core/lib/channel/channel_args.h +3 -1
- data/src/core/lib/channel/channel_stack.h +20 -13
- data/src/core/lib/channel/channel_trace.cc +2 -6
- data/src/core/lib/channel/channelz.cc +10 -21
- data/src/core/lib/channel/channelz.h +3 -2
- data/src/core/lib/channel/channelz_registry.cc +5 -3
- data/src/core/lib/channel/connected_channel.cc +7 -5
- data/src/core/lib/channel/context.h +1 -1
- data/src/core/lib/channel/handshaker.cc +11 -13
- data/src/core/lib/channel/handshaker.h +4 -2
- data/src/core/lib/channel/handshaker_registry.cc +5 -17
- data/src/core/lib/channel/status_util.cc +2 -3
- data/src/core/lib/compression/message_compress.cc +5 -1
- data/src/core/lib/debug/stats.cc +21 -27
- data/src/core/lib/debug/stats.h +3 -1
- data/src/core/lib/gpr/log_linux.cc +6 -8
- data/src/core/lib/gpr/log_posix.cc +6 -8
- data/src/core/lib/gpr/spinlock.h +2 -3
- data/src/core/lib/gpr/string.cc +10 -33
- data/src/core/lib/gpr/string.h +4 -18
- data/src/core/lib/gpr/sync_abseil.cc +2 -0
- data/src/core/lib/gpr/time.cc +4 -0
- data/src/core/lib/gpr/time_posix.cc +1 -1
- data/src/core/lib/gprpp/atomic.h +6 -6
- data/src/core/lib/gprpp/fork.cc +1 -1
- data/src/core/lib/gprpp/global_config_env.cc +8 -6
- data/src/core/lib/gprpp/host_port.cc +29 -35
- data/src/core/lib/gprpp/host_port.h +14 -17
- data/src/core/lib/gprpp/map.h +5 -11
- data/src/core/lib/gprpp/ref_counted_ptr.h +5 -0
- data/src/core/lib/http/format_request.cc +46 -65
- data/src/core/lib/http/httpcli.cc +15 -13
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +10 -10
- data/src/core/lib/http/parser.h +2 -3
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/call_combiner.h +3 -2
- data/src/core/lib/iomgr/cfstream_handle.cc +4 -2
- data/src/core/lib/iomgr/closure.h +2 -3
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -3
- data/src/core/lib/iomgr/endpoint_pair.h +2 -3
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
- data/src/core/lib/iomgr/error.cc +6 -9
- data/src/core/lib/iomgr/error.h +0 -1
- data/src/core/lib/iomgr/error_cfstream.cc +9 -8
- 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 +25 -29
- data/src/core/lib/iomgr/ev_epollex_linux.cc +17 -24
- data/src/core/lib/iomgr/ev_poll_posix.cc +9 -8
- data/src/core/lib/iomgr/ev_posix.cc +4 -3
- data/src/core/lib/iomgr/exec_ctx.h +14 -2
- data/src/core/lib/iomgr/iomgr.cc +10 -0
- data/src/core/lib/iomgr/iomgr.h +10 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +84 -20
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +10 -10
- data/src/core/lib/{gprpp/optional.h → iomgr/pollset_uv.h} +11 -12
- data/src/core/lib/iomgr/port.h +2 -21
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +42 -57
- data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +10 -11
- data/src/core/lib/iomgr/resolve_address_windows.cc +16 -25
- data/src/core/lib/iomgr/resource_quota.cc +38 -37
- data/src/core/lib/iomgr/sockaddr_utils.cc +29 -33
- data/src/core/lib/iomgr/sockaddr_utils.h +10 -15
- data/src/core/lib/iomgr/socket_factory_posix.h +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +2 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +102 -81
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/socket_windows.cc +4 -5
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -18
- data/src/core/lib/iomgr/tcp_client_custom.cc +6 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +30 -36
- data/src/core/lib/iomgr/tcp_client_windows.cc +10 -11
- data/src/core/lib/iomgr/tcp_custom.cc +3 -4
- data/src/core/lib/iomgr/tcp_custom.h +1 -1
- data/src/core/lib/iomgr/tcp_server.cc +3 -4
- data/src/core/lib/iomgr/tcp_server.h +7 -5
- data/src/core/lib/iomgr/tcp_server_custom.cc +11 -23
- data/src/core/lib/iomgr/tcp_server_posix.cc +38 -44
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -8
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +10 -18
- data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
- data/src/core/lib/iomgr/tcp_uv.cc +3 -2
- data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +15 -15
- data/src/core/lib/{gprpp/inlined_vector.h → iomgr/timer_generic.h} +19 -17
- data/src/core/lib/iomgr/timer_heap.h +2 -3
- data/src/core/lib/iomgr/udp_server.cc +32 -36
- data/src/core/lib/iomgr/udp_server.h +5 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +9 -14
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +5 -2
- data/src/core/lib/json/json.h +3 -2
- data/src/core/lib/json/json_reader.cc +25 -26
- data/src/core/lib/json/json_writer.cc +13 -12
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +12 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +6 -3
- data/src/core/lib/security/credentials/credentials.cc +0 -84
- data/src/core/lib/security/credentials/credentials.h +13 -62
- data/src/core/lib/security/credentials/fake/fake_credentials.h +4 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +15 -17
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.h +4 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -5
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +12 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +8 -15
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +73 -54
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +9 -3
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +19 -6
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +20 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +10 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +48 -11
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +21 -6
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +17 -17
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +3 -2
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +2 -0
- data/src/core/lib/security/security_connector/security_connector.h +2 -2
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +38 -36
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +8 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +89 -21
- data/src/core/lib/security/security_connector/ssl_utils.h +18 -12
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +101 -72
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +27 -5
- data/src/core/lib/security/transport/auth_filters.h +0 -5
- data/src/core/lib/security/transport/client_auth_filter.cc +11 -11
- data/src/core/lib/security/util/json_util.cc +12 -13
- data/src/core/lib/slice/slice.cc +38 -1
- data/src/core/lib/slice/slice_intern.cc +2 -3
- data/src/core/lib/slice/slice_internal.h +15 -0
- data/src/core/lib/slice/slice_utils.h +9 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +2 -47
- data/src/core/lib/surface/call.cc +42 -44
- data/src/core/lib/surface/call_log_batch.cc +50 -58
- data/src/core/lib/surface/channel.cc +53 -31
- data/src/core/lib/surface/channel.h +35 -4
- data/src/core/lib/surface/channel_ping.cc +2 -3
- data/src/core/lib/surface/completion_queue.cc +304 -47
- data/src/core/lib/surface/completion_queue.h +8 -0
- data/src/core/lib/surface/event_string.cc +18 -25
- data/src/core/lib/surface/event_string.h +3 -1
- data/src/core/lib/surface/init.cc +2 -0
- data/src/core/lib/surface/init_secure.cc +1 -4
- data/src/core/lib/surface/server.cc +971 -837
- data/src/core/lib/surface/server.h +66 -12
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/byte_stream.h +7 -2
- data/src/core/lib/transport/connectivity_state.cc +7 -6
- data/src/core/lib/transport/connectivity_state.h +5 -3
- data/src/core/lib/transport/metadata.cc +3 -3
- data/src/core/lib/transport/metadata_batch.h +2 -3
- data/src/core/lib/transport/static_metadata.h +1 -1
- data/src/core/lib/transport/status_conversion.cc +6 -14
- data/src/core/lib/transport/transport.cc +2 -3
- data/src/core/lib/transport/transport.h +9 -2
- data/src/core/lib/transport/transport_op_string.cc +61 -102
- data/src/core/lib/uri/uri_parser.cc +8 -15
- data/src/core/lib/uri/uri_parser.h +2 -3
- data/src/core/plugin_registry/grpc_plugin_registry.cc +24 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +31 -14
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +8 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +34 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
- data/src/core/tsi/fake_transport_security.cc +10 -15
- data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +0 -2
- data/src/core/tsi/ssl_transport_security.cc +154 -50
- data/src/core/tsi/ssl_transport_security.h +22 -10
- data/src/core/tsi/ssl_types.h +0 -2
- data/src/core/tsi/transport_security.h +6 -9
- data/src/core/tsi/transport_security_grpc.h +2 -3
- data/src/core/tsi/transport_security_interface.h +8 -3
- data/src/ruby/ext/grpc/extconf.rb +5 -2
- data/src/ruby/ext/grpc/rb_call.c +12 -3
- data/src/ruby/ext/grpc/rb_call.h +4 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +57 -12
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc/errors.rb +103 -42
- data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
- data/src/ruby/lib/grpc/generic/interceptors.rb +5 -5
- data/src/ruby/lib/grpc/generic/rpc_server.rb +9 -10
- data/src/ruby/lib/grpc/generic/service.rb +5 -4
- data/src/ruby/lib/grpc/structs.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +5 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +11 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +16 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/generic/service_spec.rb +2 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +7 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +7 -1
- data/src/ruby/spec/support/services.rb +10 -4
- data/src/ruby/spec/testdata/ca.pem +18 -13
- data/src/ruby/spec/testdata/client.key +26 -14
- data/src/ruby/spec/testdata/client.pem +18 -12
- data/src/ruby/spec/testdata/server1.key +26 -14
- data/src/ruby/spec/testdata/server1.pem +20 -14
- data/third_party/abseil-cpp/absl/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/boringssl-with-bazel/err_data.c +335 -297
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +7 -5
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +13 -4
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519.c +18 -26
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519_tables.h +13 -21
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/internal.h +14 -22
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +33 -32
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +143 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +25 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +30 -154
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +289 -117
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +13 -27
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +96 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +25 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +434 -161
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +63 -71
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +18 -25
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9481 -9485
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +104 -122
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +740 -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 +90 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +125 -148
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +189 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +61 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +20 -5
- 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 +41 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +32 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +24 -114
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +51 -38
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +15 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +44 -35
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +47 -16
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +15 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +6 -10
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +249 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1227 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +682 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +13 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +33 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +25 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +4 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +28 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +74 -35
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +22 -22
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +20 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +69 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +3 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +31 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +26 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +191 -79
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +282 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +791 -715
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +1 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +0 -4
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +3 -3
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -4
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +146 -57
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +23 -5
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +30 -22
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +21 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +74 -54
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +10 -10
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -21
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +29 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +34 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +13 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +44 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +51 -26
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +47 -53
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +129 -48
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +23 -75
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +55 -22
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +63 -25
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +245 -175
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +135 -75
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1593 -1672
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +512 -503
- data/third_party/re2/re2/bitmap256.h +117 -0
- data/third_party/re2/re2/bitstate.cc +385 -0
- data/third_party/re2/re2/compile.cc +1279 -0
- data/third_party/re2/re2/dfa.cc +2130 -0
- data/third_party/re2/re2/filtered_re2.cc +121 -0
- data/third_party/re2/re2/filtered_re2.h +109 -0
- data/third_party/re2/re2/mimics_pcre.cc +197 -0
- data/third_party/re2/re2/nfa.cc +713 -0
- data/third_party/re2/re2/onepass.cc +623 -0
- data/third_party/re2/re2/parse.cc +2464 -0
- data/third_party/re2/re2/perl_groups.cc +119 -0
- data/third_party/re2/re2/pod_array.h +55 -0
- data/third_party/re2/re2/prefilter.cc +710 -0
- data/third_party/re2/re2/prefilter.h +108 -0
- data/third_party/re2/re2/prefilter_tree.cc +407 -0
- data/third_party/re2/re2/prefilter_tree.h +139 -0
- data/third_party/re2/re2/prog.cc +988 -0
- data/third_party/re2/re2/prog.h +436 -0
- data/third_party/re2/re2/re2.cc +1362 -0
- data/third_party/re2/re2/re2.h +1002 -0
- data/third_party/re2/re2/regexp.cc +980 -0
- data/third_party/re2/re2/regexp.h +659 -0
- data/third_party/re2/re2/set.cc +154 -0
- data/third_party/re2/re2/set.h +80 -0
- data/third_party/re2/re2/simplify.cc +657 -0
- data/third_party/re2/re2/sparse_array.h +392 -0
- data/third_party/re2/re2/sparse_set.h +264 -0
- data/third_party/re2/re2/stringpiece.cc +65 -0
- data/third_party/re2/re2/stringpiece.h +210 -0
- data/third_party/re2/re2/tostring.cc +351 -0
- data/third_party/re2/re2/unicode_casefold.cc +582 -0
- data/third_party/re2/re2/unicode_casefold.h +78 -0
- data/third_party/re2/re2/unicode_groups.cc +6269 -0
- data/third_party/re2/re2/unicode_groups.h +67 -0
- data/third_party/re2/re2/walker-inl.h +246 -0
- data/third_party/re2/util/benchmark.h +156 -0
- data/third_party/re2/util/flags.h +26 -0
- data/third_party/re2/util/logging.h +109 -0
- data/third_party/re2/util/malloc_counter.h +19 -0
- data/third_party/re2/util/mix.h +41 -0
- data/third_party/re2/util/mutex.h +148 -0
- data/third_party/re2/util/pcre.cc +1025 -0
- data/third_party/re2/util/pcre.h +681 -0
- data/third_party/re2/util/rune.cc +260 -0
- data/third_party/re2/util/strutil.cc +149 -0
- data/third_party/re2/util/strutil.h +21 -0
- data/third_party/re2/util/test.h +50 -0
- data/third_party/re2/util/utf.h +44 -0
- data/third_party/re2/util/util.h +42 -0
- data/third_party/upb/upb/decode.c +467 -504
- data/third_party/upb/upb/encode.c +163 -121
- data/third_party/upb/upb/msg.c +130 -64
- data/third_party/upb/upb/msg.h +418 -14
- data/third_party/upb/upb/port_def.inc +35 -6
- data/third_party/upb/upb/port_undef.inc +8 -1
- data/third_party/upb/upb/table.c +53 -75
- data/third_party/upb/upb/table.int.h +11 -43
- data/third_party/upb/upb/upb.c +148 -124
- data/third_party/upb/upb/upb.h +65 -147
- data/third_party/upb/upb/upb.hpp +86 -0
- metadata +175 -47
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +0 -1754
- data/src/core/lib/gprpp/string_view.h +0 -60
- data/src/core/tsi/grpc_shadow_boringssl.h +0 -3311
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256.c +0 -1063
- data/third_party/upb/upb/generated_util.h +0 -105
@@ -1,1063 +0,0 @@
|
|
1
|
-
// The MIT License (MIT)
|
2
|
-
//
|
3
|
-
// Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file).
|
4
|
-
//
|
5
|
-
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
// of this software and associated documentation files (the "Software"), to deal
|
7
|
-
// in the Software without restriction, including without limitation the rights
|
8
|
-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
// copies of the Software, and to permit persons to whom the Software is
|
10
|
-
// furnished to do so, subject to the following conditions:
|
11
|
-
//
|
12
|
-
// The above copyright notice and this permission notice shall be included in all
|
13
|
-
// copies or substantial portions of the Software.
|
14
|
-
//
|
15
|
-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
// SOFTWARE.
|
22
|
-
|
23
|
-
// The field arithmetic code is generated by Fiat
|
24
|
-
// (https://github.com/mit-plv/fiat-crypto), which is MIT licensed.
|
25
|
-
//
|
26
|
-
// An implementation of the NIST P-256 elliptic curve point multiplication.
|
27
|
-
// 256-bit Montgomery form, generated using fiat-crypto, for 64 and 32-bit.
|
28
|
-
// Field operations with inputs in [0,p) return outputs in [0,p).
|
29
|
-
|
30
|
-
#include <openssl/base.h>
|
31
|
-
|
32
|
-
#include <openssl/bn.h>
|
33
|
-
#include <openssl/ec.h>
|
34
|
-
#include <openssl/err.h>
|
35
|
-
#include <openssl/mem.h>
|
36
|
-
#include <openssl/type_check.h>
|
37
|
-
|
38
|
-
#include <assert.h>
|
39
|
-
#include <string.h>
|
40
|
-
|
41
|
-
#include "../../crypto/fipsmodule/delocate.h"
|
42
|
-
#include "../../crypto/fipsmodule/ec/internal.h"
|
43
|
-
#include "../../crypto/internal.h"
|
44
|
-
|
45
|
-
|
46
|
-
// MSVC does not implement uint128_t, and crashes with intrinsics
|
47
|
-
#if defined(BORINGSSL_HAS_UINT128)
|
48
|
-
#define BORINGSSL_NISTP256_64BIT 1
|
49
|
-
#include "p256_64.h"
|
50
|
-
#else
|
51
|
-
#include "p256_32.h"
|
52
|
-
#endif
|
53
|
-
|
54
|
-
|
55
|
-
// utility functions, handwritten
|
56
|
-
|
57
|
-
#define NBYTES 32
|
58
|
-
|
59
|
-
#if defined(BORINGSSL_NISTP256_64BIT)
|
60
|
-
|
61
|
-
#define NLIMBS 4
|
62
|
-
typedef uint64_t limb_t;
|
63
|
-
typedef uint64_t fe[NLIMBS];
|
64
|
-
#else // 64BIT; else 32BIT
|
65
|
-
|
66
|
-
#define NLIMBS 8
|
67
|
-
typedef uint32_t limb_t;
|
68
|
-
typedef uint32_t fe[NLIMBS];
|
69
|
-
|
70
|
-
#endif // 64BIT
|
71
|
-
|
72
|
-
#define fe_add fiat_p256_add
|
73
|
-
#define fe_sub fiat_p256_sub
|
74
|
-
#define fe_opp fiat_p256_opp
|
75
|
-
|
76
|
-
#define fe_mul fiat_p256_mul
|
77
|
-
#define fe_sqr fiat_p256_square
|
78
|
-
|
79
|
-
#define fe_tobytes fiat_p256_to_bytes
|
80
|
-
#define fe_frombytes fiat_p256_from_bytes
|
81
|
-
|
82
|
-
static limb_t fe_nz(const limb_t in1[NLIMBS]) {
|
83
|
-
limb_t ret;
|
84
|
-
fiat_p256_nonzero(&ret, in1);
|
85
|
-
return ret;
|
86
|
-
}
|
87
|
-
|
88
|
-
static void fe_copy(limb_t out[NLIMBS], const limb_t in1[NLIMBS]) {
|
89
|
-
for (int i = 0; i < NLIMBS; i++) {
|
90
|
-
out[i] = in1[i];
|
91
|
-
}
|
92
|
-
}
|
93
|
-
|
94
|
-
static void fe_cmovznz(limb_t out[NLIMBS], limb_t t, const limb_t z[NLIMBS],
|
95
|
-
const limb_t nz[NLIMBS]) {
|
96
|
-
fiat_p256_selectznz(out, !!t, z, nz);
|
97
|
-
}
|
98
|
-
|
99
|
-
static void fe_from_montgomery(fe x) {
|
100
|
-
fiat_p256_from_montgomery(x, x);
|
101
|
-
}
|
102
|
-
|
103
|
-
static void fe_from_generic(fe out, const EC_FELEM *in) {
|
104
|
-
fe_frombytes(out, in->bytes);
|
105
|
-
}
|
106
|
-
|
107
|
-
static void fe_to_generic(EC_FELEM *out, const fe in) {
|
108
|
-
// This works because 256 is a multiple of 64, so there are no excess bytes to
|
109
|
-
// zero when rounding up to |BN_ULONG|s.
|
110
|
-
OPENSSL_STATIC_ASSERT(
|
111
|
-
256 / 8 == sizeof(BN_ULONG) * ((256 + BN_BITS2 - 1) / BN_BITS2),
|
112
|
-
"fe_tobytes leaves bytes uninitialized");
|
113
|
-
fe_tobytes(out->bytes, in);
|
114
|
-
}
|
115
|
-
|
116
|
-
// fe_inv calculates |out| = |in|^{-1}
|
117
|
-
//
|
118
|
-
// Based on Fermat's Little Theorem:
|
119
|
-
// a^p = a (mod p)
|
120
|
-
// a^{p-1} = 1 (mod p)
|
121
|
-
// a^{p-2} = a^{-1} (mod p)
|
122
|
-
static void fe_inv(fe out, const fe in) {
|
123
|
-
fe ftmp, ftmp2;
|
124
|
-
// each e_I will hold |in|^{2^I - 1}
|
125
|
-
fe e2, e4, e8, e16, e32, e64;
|
126
|
-
|
127
|
-
fe_sqr(ftmp, in); // 2^1
|
128
|
-
fe_mul(ftmp, in, ftmp); // 2^2 - 2^0
|
129
|
-
fe_copy(e2, ftmp);
|
130
|
-
fe_sqr(ftmp, ftmp); // 2^3 - 2^1
|
131
|
-
fe_sqr(ftmp, ftmp); // 2^4 - 2^2
|
132
|
-
fe_mul(ftmp, ftmp, e2); // 2^4 - 2^0
|
133
|
-
fe_copy(e4, ftmp);
|
134
|
-
fe_sqr(ftmp, ftmp); // 2^5 - 2^1
|
135
|
-
fe_sqr(ftmp, ftmp); // 2^6 - 2^2
|
136
|
-
fe_sqr(ftmp, ftmp); // 2^7 - 2^3
|
137
|
-
fe_sqr(ftmp, ftmp); // 2^8 - 2^4
|
138
|
-
fe_mul(ftmp, ftmp, e4); // 2^8 - 2^0
|
139
|
-
fe_copy(e8, ftmp);
|
140
|
-
for (size_t i = 0; i < 8; i++) {
|
141
|
-
fe_sqr(ftmp, ftmp);
|
142
|
-
} // 2^16 - 2^8
|
143
|
-
fe_mul(ftmp, ftmp, e8); // 2^16 - 2^0
|
144
|
-
fe_copy(e16, ftmp);
|
145
|
-
for (size_t i = 0; i < 16; i++) {
|
146
|
-
fe_sqr(ftmp, ftmp);
|
147
|
-
} // 2^32 - 2^16
|
148
|
-
fe_mul(ftmp, ftmp, e16); // 2^32 - 2^0
|
149
|
-
fe_copy(e32, ftmp);
|
150
|
-
for (size_t i = 0; i < 32; i++) {
|
151
|
-
fe_sqr(ftmp, ftmp);
|
152
|
-
} // 2^64 - 2^32
|
153
|
-
fe_copy(e64, ftmp);
|
154
|
-
fe_mul(ftmp, ftmp, in); // 2^64 - 2^32 + 2^0
|
155
|
-
for (size_t i = 0; i < 192; i++) {
|
156
|
-
fe_sqr(ftmp, ftmp);
|
157
|
-
} // 2^256 - 2^224 + 2^192
|
158
|
-
|
159
|
-
fe_mul(ftmp2, e64, e32); // 2^64 - 2^0
|
160
|
-
for (size_t i = 0; i < 16; i++) {
|
161
|
-
fe_sqr(ftmp2, ftmp2);
|
162
|
-
} // 2^80 - 2^16
|
163
|
-
fe_mul(ftmp2, ftmp2, e16); // 2^80 - 2^0
|
164
|
-
for (size_t i = 0; i < 8; i++) {
|
165
|
-
fe_sqr(ftmp2, ftmp2);
|
166
|
-
} // 2^88 - 2^8
|
167
|
-
fe_mul(ftmp2, ftmp2, e8); // 2^88 - 2^0
|
168
|
-
for (size_t i = 0; i < 4; i++) {
|
169
|
-
fe_sqr(ftmp2, ftmp2);
|
170
|
-
} // 2^92 - 2^4
|
171
|
-
fe_mul(ftmp2, ftmp2, e4); // 2^92 - 2^0
|
172
|
-
fe_sqr(ftmp2, ftmp2); // 2^93 - 2^1
|
173
|
-
fe_sqr(ftmp2, ftmp2); // 2^94 - 2^2
|
174
|
-
fe_mul(ftmp2, ftmp2, e2); // 2^94 - 2^0
|
175
|
-
fe_sqr(ftmp2, ftmp2); // 2^95 - 2^1
|
176
|
-
fe_sqr(ftmp2, ftmp2); // 2^96 - 2^2
|
177
|
-
fe_mul(ftmp2, ftmp2, in); // 2^96 - 3
|
178
|
-
|
179
|
-
fe_mul(out, ftmp2, ftmp); // 2^256 - 2^224 + 2^192 + 2^96 - 3
|
180
|
-
}
|
181
|
-
|
182
|
-
// Group operations
|
183
|
-
// ----------------
|
184
|
-
//
|
185
|
-
// Building on top of the field operations we have the operations on the
|
186
|
-
// elliptic curve group itself. Points on the curve are represented in Jacobian
|
187
|
-
// coordinates.
|
188
|
-
//
|
189
|
-
// Both operations were transcribed to Coq and proven to correspond to naive
|
190
|
-
// implementations using Affine coordinates, for all suitable fields. In the
|
191
|
-
// Coq proofs, issues of constant-time execution and memory layout (aliasing)
|
192
|
-
// conventions were not considered. Specification of affine coordinates:
|
193
|
-
// <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Spec/WeierstrassCurve.v#L28>
|
194
|
-
// As a sanity check, a proof that these points form a commutative group:
|
195
|
-
// <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/AffineProofs.v#L33>
|
196
|
-
|
197
|
-
// point_double calculates 2*(x_in, y_in, z_in)
|
198
|
-
//
|
199
|
-
// The method is taken from:
|
200
|
-
// http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2001-b
|
201
|
-
//
|
202
|
-
// Coq transcription and correctness proof:
|
203
|
-
// <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L93>
|
204
|
-
// <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L201>
|
205
|
-
//
|
206
|
-
// Outputs can equal corresponding inputs, i.e., x_out == x_in is allowed.
|
207
|
-
// while x_out == y_in is not (maybe this works, but it's not tested).
|
208
|
-
static void point_double(fe x_out, fe y_out, fe z_out,
|
209
|
-
const fe x_in, const fe y_in, const fe z_in) {
|
210
|
-
fe delta, gamma, beta, ftmp, ftmp2, tmptmp, alpha, fourbeta;
|
211
|
-
// delta = z^2
|
212
|
-
fe_sqr(delta, z_in);
|
213
|
-
// gamma = y^2
|
214
|
-
fe_sqr(gamma, y_in);
|
215
|
-
// beta = x*gamma
|
216
|
-
fe_mul(beta, x_in, gamma);
|
217
|
-
|
218
|
-
// alpha = 3*(x-delta)*(x+delta)
|
219
|
-
fe_sub(ftmp, x_in, delta);
|
220
|
-
fe_add(ftmp2, x_in, delta);
|
221
|
-
|
222
|
-
fe_add(tmptmp, ftmp2, ftmp2);
|
223
|
-
fe_add(ftmp2, ftmp2, tmptmp);
|
224
|
-
fe_mul(alpha, ftmp, ftmp2);
|
225
|
-
|
226
|
-
// x' = alpha^2 - 8*beta
|
227
|
-
fe_sqr(x_out, alpha);
|
228
|
-
fe_add(fourbeta, beta, beta);
|
229
|
-
fe_add(fourbeta, fourbeta, fourbeta);
|
230
|
-
fe_add(tmptmp, fourbeta, fourbeta);
|
231
|
-
fe_sub(x_out, x_out, tmptmp);
|
232
|
-
|
233
|
-
// z' = (y + z)^2 - gamma - delta
|
234
|
-
fe_add(delta, gamma, delta);
|
235
|
-
fe_add(ftmp, y_in, z_in);
|
236
|
-
fe_sqr(z_out, ftmp);
|
237
|
-
fe_sub(z_out, z_out, delta);
|
238
|
-
|
239
|
-
// y' = alpha*(4*beta - x') - 8*gamma^2
|
240
|
-
fe_sub(y_out, fourbeta, x_out);
|
241
|
-
fe_add(gamma, gamma, gamma);
|
242
|
-
fe_sqr(gamma, gamma);
|
243
|
-
fe_mul(y_out, alpha, y_out);
|
244
|
-
fe_add(gamma, gamma, gamma);
|
245
|
-
fe_sub(y_out, y_out, gamma);
|
246
|
-
}
|
247
|
-
|
248
|
-
// point_add calcuates (x1, y1, z1) + (x2, y2, z2)
|
249
|
-
//
|
250
|
-
// The method is taken from:
|
251
|
-
// http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl,
|
252
|
-
// adapted for mixed addition (z2 = 1, or z2 = 0 for the point at infinity).
|
253
|
-
//
|
254
|
-
// Coq transcription and correctness proof:
|
255
|
-
// <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L135>
|
256
|
-
// <https://github.com/mit-plv/fiat-crypto/blob/79f8b5f39ed609339f0233098dee1a3c4e6b3080/src/Curves/Weierstrass/Jacobian.v#L205>
|
257
|
-
//
|
258
|
-
// This function includes a branch for checking whether the two input points
|
259
|
-
// are equal, (while not equal to the point at infinity). This case never
|
260
|
-
// happens during single point multiplication, so there is no timing leak for
|
261
|
-
// ECDH or ECDSA signing.
|
262
|
-
static void point_add(fe x3, fe y3, fe z3, const fe x1,
|
263
|
-
const fe y1, const fe z1, const int mixed,
|
264
|
-
const fe x2, const fe y2, const fe z2) {
|
265
|
-
fe x_out, y_out, z_out;
|
266
|
-
limb_t z1nz = fe_nz(z1);
|
267
|
-
limb_t z2nz = fe_nz(z2);
|
268
|
-
|
269
|
-
// z1z1 = z1z1 = z1**2
|
270
|
-
fe z1z1; fe_sqr(z1z1, z1);
|
271
|
-
|
272
|
-
fe u1, s1, two_z1z2;
|
273
|
-
if (!mixed) {
|
274
|
-
// z2z2 = z2**2
|
275
|
-
fe z2z2; fe_sqr(z2z2, z2);
|
276
|
-
|
277
|
-
// u1 = x1*z2z2
|
278
|
-
fe_mul(u1, x1, z2z2);
|
279
|
-
|
280
|
-
// two_z1z2 = (z1 + z2)**2 - (z1z1 + z2z2) = 2z1z2
|
281
|
-
fe_add(two_z1z2, z1, z2);
|
282
|
-
fe_sqr(two_z1z2, two_z1z2);
|
283
|
-
fe_sub(two_z1z2, two_z1z2, z1z1);
|
284
|
-
fe_sub(two_z1z2, two_z1z2, z2z2);
|
285
|
-
|
286
|
-
// s1 = y1 * z2**3
|
287
|
-
fe_mul(s1, z2, z2z2);
|
288
|
-
fe_mul(s1, s1, y1);
|
289
|
-
} else {
|
290
|
-
// We'll assume z2 = 1 (special case z2 = 0 is handled later).
|
291
|
-
|
292
|
-
// u1 = x1*z2z2
|
293
|
-
fe_copy(u1, x1);
|
294
|
-
// two_z1z2 = 2z1z2
|
295
|
-
fe_add(two_z1z2, z1, z1);
|
296
|
-
// s1 = y1 * z2**3
|
297
|
-
fe_copy(s1, y1);
|
298
|
-
}
|
299
|
-
|
300
|
-
// u2 = x2*z1z1
|
301
|
-
fe u2; fe_mul(u2, x2, z1z1);
|
302
|
-
|
303
|
-
// h = u2 - u1
|
304
|
-
fe h; fe_sub(h, u2, u1);
|
305
|
-
|
306
|
-
limb_t xneq = fe_nz(h);
|
307
|
-
|
308
|
-
// z_out = two_z1z2 * h
|
309
|
-
fe_mul(z_out, h, two_z1z2);
|
310
|
-
|
311
|
-
// z1z1z1 = z1 * z1z1
|
312
|
-
fe z1z1z1; fe_mul(z1z1z1, z1, z1z1);
|
313
|
-
|
314
|
-
// s2 = y2 * z1**3
|
315
|
-
fe s2; fe_mul(s2, y2, z1z1z1);
|
316
|
-
|
317
|
-
// r = (s2 - s1)*2
|
318
|
-
fe r;
|
319
|
-
fe_sub(r, s2, s1);
|
320
|
-
fe_add(r, r, r);
|
321
|
-
|
322
|
-
limb_t yneq = fe_nz(r);
|
323
|
-
|
324
|
-
limb_t is_nontrivial_double = constant_time_is_zero_w(xneq | yneq) &
|
325
|
-
~constant_time_is_zero_w(z1nz) &
|
326
|
-
~constant_time_is_zero_w(z2nz);
|
327
|
-
if (is_nontrivial_double) {
|
328
|
-
point_double(x3, y3, z3, x1, y1, z1);
|
329
|
-
return;
|
330
|
-
}
|
331
|
-
|
332
|
-
// I = (2h)**2
|
333
|
-
fe i;
|
334
|
-
fe_add(i, h, h);
|
335
|
-
fe_sqr(i, i);
|
336
|
-
|
337
|
-
// J = h * I
|
338
|
-
fe j; fe_mul(j, h, i);
|
339
|
-
|
340
|
-
// V = U1 * I
|
341
|
-
fe v; fe_mul(v, u1, i);
|
342
|
-
|
343
|
-
// x_out = r**2 - J - 2V
|
344
|
-
fe_sqr(x_out, r);
|
345
|
-
fe_sub(x_out, x_out, j);
|
346
|
-
fe_sub(x_out, x_out, v);
|
347
|
-
fe_sub(x_out, x_out, v);
|
348
|
-
|
349
|
-
// y_out = r(V-x_out) - 2 * s1 * J
|
350
|
-
fe_sub(y_out, v, x_out);
|
351
|
-
fe_mul(y_out, y_out, r);
|
352
|
-
fe s1j;
|
353
|
-
fe_mul(s1j, s1, j);
|
354
|
-
fe_sub(y_out, y_out, s1j);
|
355
|
-
fe_sub(y_out, y_out, s1j);
|
356
|
-
|
357
|
-
fe_cmovznz(x_out, z1nz, x2, x_out);
|
358
|
-
fe_cmovznz(x3, z2nz, x1, x_out);
|
359
|
-
fe_cmovznz(y_out, z1nz, y2, y_out);
|
360
|
-
fe_cmovznz(y3, z2nz, y1, y_out);
|
361
|
-
fe_cmovznz(z_out, z1nz, z2, z_out);
|
362
|
-
fe_cmovznz(z3, z2nz, z1, z_out);
|
363
|
-
}
|
364
|
-
|
365
|
-
// Base point pre computation
|
366
|
-
// --------------------------
|
367
|
-
//
|
368
|
-
// Two different sorts of precomputed tables are used in the following code.
|
369
|
-
// Each contain various points on the curve, where each point is three field
|
370
|
-
// elements (x, y, z).
|
371
|
-
//
|
372
|
-
// For the base point table, z is usually 1 (0 for the point at infinity).
|
373
|
-
// This table has 2 * 16 elements, starting with the following:
|
374
|
-
// index | bits | point
|
375
|
-
// ------+---------+------------------------------
|
376
|
-
// 0 | 0 0 0 0 | 0G
|
377
|
-
// 1 | 0 0 0 1 | 1G
|
378
|
-
// 2 | 0 0 1 0 | 2^64G
|
379
|
-
// 3 | 0 0 1 1 | (2^64 + 1)G
|
380
|
-
// 4 | 0 1 0 0 | 2^128G
|
381
|
-
// 5 | 0 1 0 1 | (2^128 + 1)G
|
382
|
-
// 6 | 0 1 1 0 | (2^128 + 2^64)G
|
383
|
-
// 7 | 0 1 1 1 | (2^128 + 2^64 + 1)G
|
384
|
-
// 8 | 1 0 0 0 | 2^192G
|
385
|
-
// 9 | 1 0 0 1 | (2^192 + 1)G
|
386
|
-
// 10 | 1 0 1 0 | (2^192 + 2^64)G
|
387
|
-
// 11 | 1 0 1 1 | (2^192 + 2^64 + 1)G
|
388
|
-
// 12 | 1 1 0 0 | (2^192 + 2^128)G
|
389
|
-
// 13 | 1 1 0 1 | (2^192 + 2^128 + 1)G
|
390
|
-
// 14 | 1 1 1 0 | (2^192 + 2^128 + 2^64)G
|
391
|
-
// 15 | 1 1 1 1 | (2^192 + 2^128 + 2^64 + 1)G
|
392
|
-
// followed by a copy of this with each element multiplied by 2^32.
|
393
|
-
//
|
394
|
-
// The reason for this is so that we can clock bits into four different
|
395
|
-
// locations when doing simple scalar multiplies against the base point,
|
396
|
-
// and then another four locations using the second 16 elements.
|
397
|
-
//
|
398
|
-
// Tables for other points have table[i] = iG for i in 0 .. 16.
|
399
|
-
|
400
|
-
// g_pre_comp is the table of precomputed base points
|
401
|
-
#if defined(BORINGSSL_NISTP256_64BIT)
|
402
|
-
static const fe g_pre_comp[2][16][3] = {
|
403
|
-
{{{0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}},
|
404
|
-
{{0x79e730d418a9143c, 0x75ba95fc5fedb601, 0x79fb732b77622510,
|
405
|
-
0x18905f76a53755c6},
|
406
|
-
{0xddf25357ce95560a, 0x8b4ab8e4ba19e45c, 0xd2e88688dd21f325,
|
407
|
-
0x8571ff1825885d85},
|
408
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
409
|
-
{{0x4f922fc516a0d2bb, 0xd5cc16c1a623499, 0x9241cf3a57c62c8b,
|
410
|
-
0x2f5e6961fd1b667f},
|
411
|
-
{0x5c15c70bf5a01797, 0x3d20b44d60956192, 0x4911b37071fdb52,
|
412
|
-
0xf648f9168d6f0f7b},
|
413
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
414
|
-
{{0x9e566847e137bbbc, 0xe434469e8a6a0bec, 0xb1c4276179d73463,
|
415
|
-
0x5abe0285133d0015},
|
416
|
-
{0x92aa837cc04c7dab, 0x573d9f4c43260c07, 0xc93156278e6cc37,
|
417
|
-
0x94bb725b6b6f7383},
|
418
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
419
|
-
{{0x62a8c244bfe20925, 0x91c19ac38fdce867, 0x5a96a5d5dd387063,
|
420
|
-
0x61d587d421d324f6},
|
421
|
-
{0xe87673a2a37173ea, 0x2384800853778b65, 0x10f8441e05bab43e,
|
422
|
-
0xfa11fe124621efbe},
|
423
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
424
|
-
{{0x1c891f2b2cb19ffd, 0x1ba8d5bb1923c23, 0xb6d03d678ac5ca8e,
|
425
|
-
0x586eb04c1f13bedc},
|
426
|
-
{0xc35c6e527e8ed09, 0x1e81a33c1819ede2, 0x278fd6c056c652fa,
|
427
|
-
0x19d5ac0870864f11},
|
428
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
429
|
-
{{0x62577734d2b533d5, 0x673b8af6a1bdddc0, 0x577e7c9aa79ec293,
|
430
|
-
0xbb6de651c3b266b1},
|
431
|
-
{0xe7e9303ab65259b3, 0xd6a0afd3d03a7480, 0xc5ac83d19b3cfc27,
|
432
|
-
0x60b4619a5d18b99b},
|
433
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
434
|
-
{{0xbd6a38e11ae5aa1c, 0xb8b7652b49e73658, 0xb130014ee5f87ed,
|
435
|
-
0x9d0f27b2aeebffcd},
|
436
|
-
{0xca9246317a730a55, 0x9c955b2fddbbc83a, 0x7c1dfe0ac019a71,
|
437
|
-
0x244a566d356ec48d},
|
438
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
439
|
-
{{0x56f8410ef4f8b16a, 0x97241afec47b266a, 0xa406b8e6d9c87c1,
|
440
|
-
0x803f3e02cd42ab1b},
|
441
|
-
{0x7f0309a804dbec69, 0xa83b85f73bbad05f, 0xc6097273ad8e197f,
|
442
|
-
0xc097440e5067adc1},
|
443
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
444
|
-
{{0x846a56f2c379ab34, 0xa8ee068b841df8d1, 0x20314459176c68ef,
|
445
|
-
0xf1af32d5915f1f30},
|
446
|
-
{0x99c375315d75bd50, 0x837cffbaf72f67bc, 0x613a41848d7723f,
|
447
|
-
0x23d0f130e2d41c8b},
|
448
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
449
|
-
{{0xed93e225d5be5a2b, 0x6fe799835934f3c6, 0x4314092622626ffc,
|
450
|
-
0x50bbb4d97990216a},
|
451
|
-
{0x378191c6e57ec63e, 0x65422c40181dcdb2, 0x41a8099b0236e0f6,
|
452
|
-
0x2b10011801fe49c3},
|
453
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
454
|
-
{{0xfc68b5c59b391593, 0xc385f5a2598270fc, 0x7144f3aad19adcbb,
|
455
|
-
0xdd55899983fbae0c},
|
456
|
-
{0x93b88b8e74b82ff4, 0xd2e03c4071e734c9, 0x9a7a9eaf43c0322a,
|
457
|
-
0xe6e4c551149d6041},
|
458
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
459
|
-
{{0x5fe14bfe80ec21fe, 0xf6ce116ac255be82, 0x98bc5a072f4a5d67,
|
460
|
-
0xfad27148db7e63af},
|
461
|
-
{0x90c0b6ac29ab05b3, 0x37a9a83c4e251ae6, 0xa7dc875c2aade7d,
|
462
|
-
0x77387de39f0e1a84},
|
463
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
464
|
-
{{0x1e9ecc49a56c0dd7, 0xa5cffcd846086c74, 0x8f7a1408f505aece,
|
465
|
-
0xb37b85c0bef0c47e},
|
466
|
-
{0x3596b6e4cc0e6a8f, 0xfd6d4bbf6b388f23, 0xaba453fac39cef4e,
|
467
|
-
0x9c135ac8f9f628d5},
|
468
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
469
|
-
{{0xa1c729495c8f8be, 0x2961c4803bf362bf, 0x9e418403df63d4ac,
|
470
|
-
0xc109f9cb91ece900},
|
471
|
-
{0xc2d095d058945705, 0xb9083d96ddeb85c0, 0x84692b8d7a40449b,
|
472
|
-
0x9bc3344f2eee1ee1},
|
473
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
474
|
-
{{0xd5ae35642913074, 0x55491b2748a542b1, 0x469ca665b310732a,
|
475
|
-
0x29591d525f1a4cc1},
|
476
|
-
{0xe76f5b6bb84f983f, 0xbe7eef419f5f84e1, 0x1200d49680baa189,
|
477
|
-
0x6376551f18ef332c},
|
478
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}}},
|
479
|
-
{{{0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}},
|
480
|
-
{{0x202886024147519a, 0xd0981eac26b372f0, 0xa9d4a7caa785ebc8,
|
481
|
-
0xd953c50ddbdf58e9},
|
482
|
-
{0x9d6361ccfd590f8f, 0x72e9626b44e6c917, 0x7fd9611022eb64cf,
|
483
|
-
0x863ebb7e9eb288f3},
|
484
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
485
|
-
{{0x4fe7ee31b0e63d34, 0xf4600572a9e54fab, 0xc0493334d5e7b5a4,
|
486
|
-
0x8589fb9206d54831},
|
487
|
-
{0xaa70f5cc6583553a, 0x879094ae25649e5, 0xcc90450710044652,
|
488
|
-
0xebb0696d02541c4f},
|
489
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
490
|
-
{{0xabbaa0c03b89da99, 0xa6f2d79eb8284022, 0x27847862b81c05e8,
|
491
|
-
0x337a4b5905e54d63},
|
492
|
-
{0x3c67500d21f7794a, 0x207005b77d6d7f61, 0xa5a378104cfd6e8,
|
493
|
-
0xd65e0d5f4c2fbd6},
|
494
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
495
|
-
{{0xd433e50f6d3549cf, 0x6f33696ffacd665e, 0x695bfdacce11fcb4,
|
496
|
-
0x810ee252af7c9860},
|
497
|
-
{0x65450fe17159bb2c, 0xf7dfbebe758b357b, 0x2b057e74d69fea72,
|
498
|
-
0xd485717a92731745},
|
499
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
500
|
-
{{0xce1f69bbe83f7669, 0x9f8ae8272877d6b, 0x9548ae543244278d,
|
501
|
-
0x207755dee3c2c19c},
|
502
|
-
{0x87bd61d96fef1945, 0x18813cefb12d28c3, 0x9fbcd1d672df64aa,
|
503
|
-
0x48dc5ee57154b00d},
|
504
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
505
|
-
{{0xef0f469ef49a3154, 0x3e85a5956e2b2e9a, 0x45aaec1eaa924a9c,
|
506
|
-
0xaa12dfc8a09e4719},
|
507
|
-
{0x26f272274df69f1d, 0xe0e4c82ca2ff5e73, 0xb9d8ce73b7a9dd44,
|
508
|
-
0x6c036e73e48ca901},
|
509
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
510
|
-
{{0xe1e421e1a47153f0, 0xb86c3b79920418c9, 0x93bdce87705d7672,
|
511
|
-
0xf25ae793cab79a77},
|
512
|
-
{0x1f3194a36d869d0c, 0x9d55c8824986c264, 0x49fb5ea3096e945e,
|
513
|
-
0x39b8e65313db0a3e},
|
514
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
515
|
-
{{0xe3417bc035d0b34a, 0x440b386b8327c0a7, 0x8fb7262dac0362d1,
|
516
|
-
0x2c41114ce0cdf943},
|
517
|
-
{0x2ba5cef1ad95a0b1, 0xc09b37a867d54362, 0x26d6cdd201e486c9,
|
518
|
-
0x20477abf42ff9297},
|
519
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
520
|
-
{{0xf121b41bc0a67d2, 0x62d4760a444d248a, 0xe044f1d659b4737,
|
521
|
-
0x8fde365250bb4a8},
|
522
|
-
{0xaceec3da848bf287, 0xc2a62182d3369d6e, 0x3582dfdc92449482,
|
523
|
-
0x2f7e2fd2565d6cd7},
|
524
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
525
|
-
{{0xa0122b5178a876b, 0x51ff96ff085104b4, 0x50b31ab14f29f76,
|
526
|
-
0x84abb28b5f87d4e6},
|
527
|
-
{0xd5ed439f8270790a, 0x2d6cb59d85e3f46b, 0x75f55c1b6c1e2212,
|
528
|
-
0xe5436f6717655640},
|
529
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
530
|
-
{{0xc2965ecc9aeb596d, 0x1ea03e7023c92b4, 0x4704b4b62e013961,
|
531
|
-
0xca8fd3f905ea367},
|
532
|
-
{0x92523a42551b2b61, 0x1eb7a89c390fcd06, 0xe7f1d2be0392a63e,
|
533
|
-
0x96dca2644ddb0c33},
|
534
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
535
|
-
{{0x231c210e15339848, 0xe87a28e870778c8d, 0x9d1de6616956e170,
|
536
|
-
0x4ac3c9382bb09c0b},
|
537
|
-
{0x19be05516998987d, 0x8b2376c4ae09f4d6, 0x1de0b7651a3f933d,
|
538
|
-
0x380d94c7e39705f4},
|
539
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
540
|
-
{{0x3685954b8c31c31d, 0x68533d005bf21a0c, 0xbd7626e75c79ec9,
|
541
|
-
0xca17754742c69d54},
|
542
|
-
{0xcc6edafff6d2dbb2, 0xfd0d8cbd174a9d18, 0x875e8793aa4578e8,
|
543
|
-
0xa976a7139cab2ce6},
|
544
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
545
|
-
{{0xce37ab11b43ea1db, 0xa7ff1a95259d292, 0x851b02218f84f186,
|
546
|
-
0xa7222beadefaad13},
|
547
|
-
{0xa2ac78ec2b0a9144, 0x5a024051f2fa59c5, 0x91d1eca56147ce38,
|
548
|
-
0xbe94d523bc2ac690},
|
549
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}},
|
550
|
-
{{0x2d8daefd79ec1a0f, 0x3bbcd6fdceb39c97, 0xf5575ffc58f61a95,
|
551
|
-
0xdbd986c4adf7b420},
|
552
|
-
{0x81aa881415f39eb7, 0x6ee2fcf5b98d976c, 0x5465475dcf2f717d,
|
553
|
-
0x8e24d3c46860bbd0},
|
554
|
-
{0x1, 0xffffffff00000000, 0xffffffffffffffff, 0xfffffffe}}}};
|
555
|
-
#else
|
556
|
-
static const fe g_pre_comp[2][16][3] = {
|
557
|
-
{{{0x0,0x0, 0x0,0x0, 0x0,0x0, 0x0,0x0},
|
558
|
-
{0x0,0x0, 0x0,0x0, 0x0,0x0, 0x0,0x0},
|
559
|
-
{0x0,0x0, 0x0,0x0, 0x0,0x0, 0x0,0x0}},
|
560
|
-
{{0x18a9143c,0x79e730d4, 0x5fedb601,0x75ba95fc, 0x77622510,0x79fb732b,
|
561
|
-
0xa53755c6,0x18905f76},
|
562
|
-
{0xce95560a,0xddf25357, 0xba19e45c,0x8b4ab8e4, 0xdd21f325,0xd2e88688,
|
563
|
-
0x25885d85,0x8571ff18},
|
564
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
565
|
-
{{0x16a0d2bb,0x4f922fc5, 0x1a623499,0xd5cc16c, 0x57c62c8b,0x9241cf3a,
|
566
|
-
0xfd1b667f,0x2f5e6961},
|
567
|
-
{0xf5a01797,0x5c15c70b, 0x60956192,0x3d20b44d, 0x71fdb52,0x4911b37,
|
568
|
-
0x8d6f0f7b,0xf648f916},
|
569
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
570
|
-
{{0xe137bbbc,0x9e566847, 0x8a6a0bec,0xe434469e, 0x79d73463,0xb1c42761,
|
571
|
-
0x133d0015,0x5abe0285},
|
572
|
-
{0xc04c7dab,0x92aa837c, 0x43260c07,0x573d9f4c, 0x78e6cc37,0xc931562,
|
573
|
-
0x6b6f7383,0x94bb725b},
|
574
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
575
|
-
{{0xbfe20925,0x62a8c244, 0x8fdce867,0x91c19ac3, 0xdd387063,0x5a96a5d5,
|
576
|
-
0x21d324f6,0x61d587d4},
|
577
|
-
{0xa37173ea,0xe87673a2, 0x53778b65,0x23848008, 0x5bab43e,0x10f8441e,
|
578
|
-
0x4621efbe,0xfa11fe12},
|
579
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
580
|
-
{{0x2cb19ffd,0x1c891f2b, 0xb1923c23,0x1ba8d5b, 0x8ac5ca8e,0xb6d03d67,
|
581
|
-
0x1f13bedc,0x586eb04c},
|
582
|
-
{0x27e8ed09,0xc35c6e5, 0x1819ede2,0x1e81a33c, 0x56c652fa,0x278fd6c0,
|
583
|
-
0x70864f11,0x19d5ac08},
|
584
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
585
|
-
{{0xd2b533d5,0x62577734, 0xa1bdddc0,0x673b8af6, 0xa79ec293,0x577e7c9a,
|
586
|
-
0xc3b266b1,0xbb6de651},
|
587
|
-
{0xb65259b3,0xe7e9303a, 0xd03a7480,0xd6a0afd3, 0x9b3cfc27,0xc5ac83d1,
|
588
|
-
0x5d18b99b,0x60b4619a},
|
589
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
590
|
-
{{0x1ae5aa1c,0xbd6a38e1, 0x49e73658,0xb8b7652b, 0xee5f87ed,0xb130014,
|
591
|
-
0xaeebffcd,0x9d0f27b2},
|
592
|
-
{0x7a730a55,0xca924631, 0xddbbc83a,0x9c955b2f, 0xac019a71,0x7c1dfe0,
|
593
|
-
0x356ec48d,0x244a566d},
|
594
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
595
|
-
{{0xf4f8b16a,0x56f8410e, 0xc47b266a,0x97241afe, 0x6d9c87c1,0xa406b8e,
|
596
|
-
0xcd42ab1b,0x803f3e02},
|
597
|
-
{0x4dbec69,0x7f0309a8, 0x3bbad05f,0xa83b85f7, 0xad8e197f,0xc6097273,
|
598
|
-
0x5067adc1,0xc097440e},
|
599
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
600
|
-
{{0xc379ab34,0x846a56f2, 0x841df8d1,0xa8ee068b, 0x176c68ef,0x20314459,
|
601
|
-
0x915f1f30,0xf1af32d5},
|
602
|
-
{0x5d75bd50,0x99c37531, 0xf72f67bc,0x837cffba, 0x48d7723f,0x613a418,
|
603
|
-
0xe2d41c8b,0x23d0f130},
|
604
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
605
|
-
{{0xd5be5a2b,0xed93e225, 0x5934f3c6,0x6fe79983, 0x22626ffc,0x43140926,
|
606
|
-
0x7990216a,0x50bbb4d9},
|
607
|
-
{0xe57ec63e,0x378191c6, 0x181dcdb2,0x65422c40, 0x236e0f6,0x41a8099b,
|
608
|
-
0x1fe49c3,0x2b100118},
|
609
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
610
|
-
{{0x9b391593,0xfc68b5c5, 0x598270fc,0xc385f5a2, 0xd19adcbb,0x7144f3aa,
|
611
|
-
0x83fbae0c,0xdd558999},
|
612
|
-
{0x74b82ff4,0x93b88b8e, 0x71e734c9,0xd2e03c40, 0x43c0322a,0x9a7a9eaf,
|
613
|
-
0x149d6041,0xe6e4c551},
|
614
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
615
|
-
{{0x80ec21fe,0x5fe14bfe, 0xc255be82,0xf6ce116a, 0x2f4a5d67,0x98bc5a07,
|
616
|
-
0xdb7e63af,0xfad27148},
|
617
|
-
{0x29ab05b3,0x90c0b6ac, 0x4e251ae6,0x37a9a83c, 0xc2aade7d,0xa7dc875,
|
618
|
-
0x9f0e1a84,0x77387de3},
|
619
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
620
|
-
{{0xa56c0dd7,0x1e9ecc49, 0x46086c74,0xa5cffcd8, 0xf505aece,0x8f7a1408,
|
621
|
-
0xbef0c47e,0xb37b85c0},
|
622
|
-
{0xcc0e6a8f,0x3596b6e4, 0x6b388f23,0xfd6d4bbf, 0xc39cef4e,0xaba453fa,
|
623
|
-
0xf9f628d5,0x9c135ac8},
|
624
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
625
|
-
{{0x95c8f8be,0xa1c7294, 0x3bf362bf,0x2961c480, 0xdf63d4ac,0x9e418403,
|
626
|
-
0x91ece900,0xc109f9cb},
|
627
|
-
{0x58945705,0xc2d095d0, 0xddeb85c0,0xb9083d96, 0x7a40449b,0x84692b8d,
|
628
|
-
0x2eee1ee1,0x9bc3344f},
|
629
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
630
|
-
{{0x42913074,0xd5ae356, 0x48a542b1,0x55491b27, 0xb310732a,0x469ca665,
|
631
|
-
0x5f1a4cc1,0x29591d52},
|
632
|
-
{0xb84f983f,0xe76f5b6b, 0x9f5f84e1,0xbe7eef41, 0x80baa189,0x1200d496,
|
633
|
-
0x18ef332c,0x6376551f},
|
634
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}}},
|
635
|
-
{{{0x0,0x0, 0x0,0x0, 0x0,0x0, 0x0,0x0},
|
636
|
-
{0x0,0x0, 0x0,0x0, 0x0,0x0, 0x0,0x0},
|
637
|
-
{0x0,0x0, 0x0,0x0, 0x0,0x0, 0x0,0x0}},
|
638
|
-
{{0x4147519a,0x20288602, 0x26b372f0,0xd0981eac, 0xa785ebc8,0xa9d4a7ca,
|
639
|
-
0xdbdf58e9,0xd953c50d},
|
640
|
-
{0xfd590f8f,0x9d6361cc, 0x44e6c917,0x72e9626b, 0x22eb64cf,0x7fd96110,
|
641
|
-
0x9eb288f3,0x863ebb7e},
|
642
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
643
|
-
{{0xb0e63d34,0x4fe7ee31, 0xa9e54fab,0xf4600572, 0xd5e7b5a4,0xc0493334,
|
644
|
-
0x6d54831,0x8589fb92},
|
645
|
-
{0x6583553a,0xaa70f5cc, 0xe25649e5,0x879094a, 0x10044652,0xcc904507,
|
646
|
-
0x2541c4f,0xebb0696d},
|
647
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
648
|
-
{{0x3b89da99,0xabbaa0c0, 0xb8284022,0xa6f2d79e, 0xb81c05e8,0x27847862,
|
649
|
-
0x5e54d63,0x337a4b59},
|
650
|
-
{0x21f7794a,0x3c67500d, 0x7d6d7f61,0x207005b7, 0x4cfd6e8,0xa5a3781,
|
651
|
-
0xf4c2fbd6,0xd65e0d5},
|
652
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
653
|
-
{{0x6d3549cf,0xd433e50f, 0xfacd665e,0x6f33696f, 0xce11fcb4,0x695bfdac,
|
654
|
-
0xaf7c9860,0x810ee252},
|
655
|
-
{0x7159bb2c,0x65450fe1, 0x758b357b,0xf7dfbebe, 0xd69fea72,0x2b057e74,
|
656
|
-
0x92731745,0xd485717a},
|
657
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
658
|
-
{{0xe83f7669,0xce1f69bb, 0x72877d6b,0x9f8ae82, 0x3244278d,0x9548ae54,
|
659
|
-
0xe3c2c19c,0x207755de},
|
660
|
-
{0x6fef1945,0x87bd61d9, 0xb12d28c3,0x18813cef, 0x72df64aa,0x9fbcd1d6,
|
661
|
-
0x7154b00d,0x48dc5ee5},
|
662
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
663
|
-
{{0xf49a3154,0xef0f469e, 0x6e2b2e9a,0x3e85a595, 0xaa924a9c,0x45aaec1e,
|
664
|
-
0xa09e4719,0xaa12dfc8},
|
665
|
-
{0x4df69f1d,0x26f27227, 0xa2ff5e73,0xe0e4c82c, 0xb7a9dd44,0xb9d8ce73,
|
666
|
-
0xe48ca901,0x6c036e73},
|
667
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
668
|
-
{{0xa47153f0,0xe1e421e1, 0x920418c9,0xb86c3b79, 0x705d7672,0x93bdce87,
|
669
|
-
0xcab79a77,0xf25ae793},
|
670
|
-
{0x6d869d0c,0x1f3194a3, 0x4986c264,0x9d55c882, 0x96e945e,0x49fb5ea3,
|
671
|
-
0x13db0a3e,0x39b8e653},
|
672
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
673
|
-
{{0x35d0b34a,0xe3417bc0, 0x8327c0a7,0x440b386b, 0xac0362d1,0x8fb7262d,
|
674
|
-
0xe0cdf943,0x2c41114c},
|
675
|
-
{0xad95a0b1,0x2ba5cef1, 0x67d54362,0xc09b37a8, 0x1e486c9,0x26d6cdd2,
|
676
|
-
0x42ff9297,0x20477abf},
|
677
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
678
|
-
{{0xbc0a67d2,0xf121b41, 0x444d248a,0x62d4760a, 0x659b4737,0xe044f1d,
|
679
|
-
0x250bb4a8,0x8fde365},
|
680
|
-
{0x848bf287,0xaceec3da, 0xd3369d6e,0xc2a62182, 0x92449482,0x3582dfdc,
|
681
|
-
0x565d6cd7,0x2f7e2fd2},
|
682
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
683
|
-
{{0x178a876b,0xa0122b5, 0x85104b4,0x51ff96ff, 0x14f29f76,0x50b31ab,
|
684
|
-
0x5f87d4e6,0x84abb28b},
|
685
|
-
{0x8270790a,0xd5ed439f, 0x85e3f46b,0x2d6cb59d, 0x6c1e2212,0x75f55c1b,
|
686
|
-
0x17655640,0xe5436f67},
|
687
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
688
|
-
{{0x9aeb596d,0xc2965ecc, 0x23c92b4,0x1ea03e7, 0x2e013961,0x4704b4b6,
|
689
|
-
0x905ea367,0xca8fd3f},
|
690
|
-
{0x551b2b61,0x92523a42, 0x390fcd06,0x1eb7a89c, 0x392a63e,0xe7f1d2be,
|
691
|
-
0x4ddb0c33,0x96dca264},
|
692
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
693
|
-
{{0x15339848,0x231c210e, 0x70778c8d,0xe87a28e8, 0x6956e170,0x9d1de661,
|
694
|
-
0x2bb09c0b,0x4ac3c938},
|
695
|
-
{0x6998987d,0x19be0551, 0xae09f4d6,0x8b2376c4, 0x1a3f933d,0x1de0b765,
|
696
|
-
0xe39705f4,0x380d94c7},
|
697
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
698
|
-
{{0x8c31c31d,0x3685954b, 0x5bf21a0c,0x68533d00, 0x75c79ec9,0xbd7626e,
|
699
|
-
0x42c69d54,0xca177547},
|
700
|
-
{0xf6d2dbb2,0xcc6edaff, 0x174a9d18,0xfd0d8cbd, 0xaa4578e8,0x875e8793,
|
701
|
-
0x9cab2ce6,0xa976a713},
|
702
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
703
|
-
{{0xb43ea1db,0xce37ab11, 0x5259d292,0xa7ff1a9, 0x8f84f186,0x851b0221,
|
704
|
-
0xdefaad13,0xa7222bea},
|
705
|
-
{0x2b0a9144,0xa2ac78ec, 0xf2fa59c5,0x5a024051, 0x6147ce38,0x91d1eca5,
|
706
|
-
0xbc2ac690,0xbe94d523},
|
707
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}},
|
708
|
-
{{0x79ec1a0f,0x2d8daefd, 0xceb39c97,0x3bbcd6fd, 0x58f61a95,0xf5575ffc,
|
709
|
-
0xadf7b420,0xdbd986c4},
|
710
|
-
{0x15f39eb7,0x81aa8814, 0xb98d976c,0x6ee2fcf5, 0xcf2f717d,0x5465475d,
|
711
|
-
0x6860bbd0,0x8e24d3c4},
|
712
|
-
{0x1,0x0, 0x0,0xffffffff, 0xffffffff,0xffffffff, 0xfffffffe,0x0}}}};
|
713
|
-
#endif
|
714
|
-
|
715
|
-
// select_point selects the |idx|th point from a precomputation table and
|
716
|
-
// copies it to out.
|
717
|
-
static void select_point(const limb_t idx, size_t size,
|
718
|
-
const fe pre_comp[/*size*/][3],
|
719
|
-
fe out[3]) {
|
720
|
-
OPENSSL_memset(out, 0, sizeof(fe) * 3);
|
721
|
-
for (size_t i = 0; i < size; i++) {
|
722
|
-
limb_t mismatch = i ^ idx;
|
723
|
-
fe_cmovznz(out[0], mismatch, pre_comp[i][0], out[0]);
|
724
|
-
fe_cmovznz(out[1], mismatch, pre_comp[i][1], out[1]);
|
725
|
-
fe_cmovznz(out[2], mismatch, pre_comp[i][2], out[2]);
|
726
|
-
}
|
727
|
-
}
|
728
|
-
|
729
|
-
// get_bit returns the |i|th bit in |in|
|
730
|
-
static char get_bit(const uint8_t *in, int i) {
|
731
|
-
if (i < 0 || i >= 256) {
|
732
|
-
return 0;
|
733
|
-
}
|
734
|
-
return (in[i >> 3] >> (i & 7)) & 1;
|
735
|
-
}
|
736
|
-
|
737
|
-
// OPENSSL EC_METHOD FUNCTIONS
|
738
|
-
|
739
|
-
// Takes the Jacobian coordinates (X, Y, Z) of a point and returns (X', Y') =
|
740
|
-
// (X/Z^2, Y/Z^3).
|
741
|
-
static int ec_GFp_nistp256_point_get_affine_coordinates(
|
742
|
-
const EC_GROUP *group, const EC_RAW_POINT *point, EC_FELEM *x_out,
|
743
|
-
EC_FELEM *y_out) {
|
744
|
-
if (ec_GFp_simple_is_at_infinity(group, point)) {
|
745
|
-
OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY);
|
746
|
-
return 0;
|
747
|
-
}
|
748
|
-
|
749
|
-
fe z1, z2;
|
750
|
-
fe_from_generic(z1, &point->Z);
|
751
|
-
fe_inv(z2, z1);
|
752
|
-
fe_sqr(z1, z2);
|
753
|
-
|
754
|
-
// Instead of using |fe_from_montgomery| to convert the |x| coordinate and
|
755
|
-
// then calling |fe_from_montgomery| again to convert the |y| coordinate
|
756
|
-
// below, convert the common factor |z1| once now, saving one reduction.
|
757
|
-
fe_from_montgomery(z1);
|
758
|
-
|
759
|
-
if (x_out != NULL) {
|
760
|
-
fe x;
|
761
|
-
fe_from_generic(x, &point->X);
|
762
|
-
fe_mul(x, x, z1);
|
763
|
-
fe_to_generic(x_out, x);
|
764
|
-
}
|
765
|
-
|
766
|
-
if (y_out != NULL) {
|
767
|
-
fe y;
|
768
|
-
fe_from_generic(y, &point->Y);
|
769
|
-
fe_mul(z1, z1, z2);
|
770
|
-
fe_mul(y, y, z1);
|
771
|
-
fe_to_generic(y_out, y);
|
772
|
-
}
|
773
|
-
|
774
|
-
return 1;
|
775
|
-
}
|
776
|
-
|
777
|
-
static void ec_GFp_nistp256_add(const EC_GROUP *group, EC_RAW_POINT *r,
|
778
|
-
const EC_RAW_POINT *a, const EC_RAW_POINT *b) {
|
779
|
-
fe x1, y1, z1, x2, y2, z2;
|
780
|
-
fe_from_generic(x1, &a->X);
|
781
|
-
fe_from_generic(y1, &a->Y);
|
782
|
-
fe_from_generic(z1, &a->Z);
|
783
|
-
fe_from_generic(x2, &b->X);
|
784
|
-
fe_from_generic(y2, &b->Y);
|
785
|
-
fe_from_generic(z2, &b->Z);
|
786
|
-
point_add(x1, y1, z1, x1, y1, z1, 0 /* both Jacobian */, x2, y2, z2);
|
787
|
-
fe_to_generic(&r->X, x1);
|
788
|
-
fe_to_generic(&r->Y, y1);
|
789
|
-
fe_to_generic(&r->Z, z1);
|
790
|
-
}
|
791
|
-
|
792
|
-
static void ec_GFp_nistp256_dbl(const EC_GROUP *group, EC_RAW_POINT *r,
|
793
|
-
const EC_RAW_POINT *a) {
|
794
|
-
fe x, y, z;
|
795
|
-
fe_from_generic(x, &a->X);
|
796
|
-
fe_from_generic(y, &a->Y);
|
797
|
-
fe_from_generic(z, &a->Z);
|
798
|
-
point_double(x, y, z, x, y, z);
|
799
|
-
fe_to_generic(&r->X, x);
|
800
|
-
fe_to_generic(&r->Y, y);
|
801
|
-
fe_to_generic(&r->Z, z);
|
802
|
-
}
|
803
|
-
|
804
|
-
static void ec_GFp_nistp256_point_mul(const EC_GROUP *group, EC_RAW_POINT *r,
|
805
|
-
const EC_RAW_POINT *p,
|
806
|
-
const EC_SCALAR *scalar) {
|
807
|
-
fe p_pre_comp[17][3];
|
808
|
-
OPENSSL_memset(&p_pre_comp, 0, sizeof(p_pre_comp));
|
809
|
-
// Precompute multiples.
|
810
|
-
fe_from_generic(p_pre_comp[1][0], &p->X);
|
811
|
-
fe_from_generic(p_pre_comp[1][1], &p->Y);
|
812
|
-
fe_from_generic(p_pre_comp[1][2], &p->Z);
|
813
|
-
for (size_t j = 2; j <= 16; ++j) {
|
814
|
-
if (j & 1) {
|
815
|
-
point_add(p_pre_comp[j][0], p_pre_comp[j][1], p_pre_comp[j][2],
|
816
|
-
p_pre_comp[1][0], p_pre_comp[1][1], p_pre_comp[1][2], 0,
|
817
|
-
p_pre_comp[j - 1][0], p_pre_comp[j - 1][1],
|
818
|
-
p_pre_comp[j - 1][2]);
|
819
|
-
} else {
|
820
|
-
point_double(p_pre_comp[j][0], p_pre_comp[j][1], p_pre_comp[j][2],
|
821
|
-
p_pre_comp[j / 2][0], p_pre_comp[j / 2][1],
|
822
|
-
p_pre_comp[j / 2][2]);
|
823
|
-
}
|
824
|
-
}
|
825
|
-
|
826
|
-
// Set nq to the point at infinity.
|
827
|
-
fe nq[3] = {{0}, {0}, {0}}, ftmp, tmp[3];
|
828
|
-
|
829
|
-
// Loop over |scalar| msb-to-lsb, incorporating |p_pre_comp| every 5th round.
|
830
|
-
int skip = 1; // Save two point operations in the first round.
|
831
|
-
for (size_t i = 255; i < 256; i--) {
|
832
|
-
// double
|
833
|
-
if (!skip) {
|
834
|
-
point_double(nq[0], nq[1], nq[2], nq[0], nq[1], nq[2]);
|
835
|
-
}
|
836
|
-
|
837
|
-
// do other additions every 5 doublings
|
838
|
-
if (i % 5 == 0) {
|
839
|
-
uint64_t bits = get_bit(scalar->bytes, i + 4) << 5;
|
840
|
-
bits |= get_bit(scalar->bytes, i + 3) << 4;
|
841
|
-
bits |= get_bit(scalar->bytes, i + 2) << 3;
|
842
|
-
bits |= get_bit(scalar->bytes, i + 1) << 2;
|
843
|
-
bits |= get_bit(scalar->bytes, i) << 1;
|
844
|
-
bits |= get_bit(scalar->bytes, i - 1);
|
845
|
-
uint8_t sign, digit;
|
846
|
-
ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);
|
847
|
-
|
848
|
-
// select the point to add or subtract, in constant time.
|
849
|
-
select_point(digit, 17, (const fe(*)[3])p_pre_comp, tmp);
|
850
|
-
fe_opp(ftmp, tmp[1]); // (X, -Y, Z) is the negative point.
|
851
|
-
fe_cmovznz(tmp[1], sign, tmp[1], ftmp);
|
852
|
-
|
853
|
-
if (!skip) {
|
854
|
-
point_add(nq[0], nq[1], nq[2], nq[0], nq[1], nq[2], 0 /* mixed */,
|
855
|
-
tmp[0], tmp[1], tmp[2]);
|
856
|
-
} else {
|
857
|
-
fe_copy(nq[0], tmp[0]);
|
858
|
-
fe_copy(nq[1], tmp[1]);
|
859
|
-
fe_copy(nq[2], tmp[2]);
|
860
|
-
skip = 0;
|
861
|
-
}
|
862
|
-
}
|
863
|
-
}
|
864
|
-
|
865
|
-
fe_to_generic(&r->X, nq[0]);
|
866
|
-
fe_to_generic(&r->Y, nq[1]);
|
867
|
-
fe_to_generic(&r->Z, nq[2]);
|
868
|
-
}
|
869
|
-
|
870
|
-
static void ec_GFp_nistp256_point_mul_base(const EC_GROUP *group,
|
871
|
-
EC_RAW_POINT *r,
|
872
|
-
const EC_SCALAR *scalar) {
|
873
|
-
// Set nq to the point at infinity.
|
874
|
-
fe nq[3] = {{0}, {0}, {0}}, tmp[3];
|
875
|
-
|
876
|
-
int skip = 1; // Save two point operations in the first round.
|
877
|
-
for (size_t i = 31; i < 32; i--) {
|
878
|
-
if (!skip) {
|
879
|
-
point_double(nq[0], nq[1], nq[2], nq[0], nq[1], nq[2]);
|
880
|
-
}
|
881
|
-
|
882
|
-
// First, look 32 bits upwards.
|
883
|
-
uint64_t bits = get_bit(scalar->bytes, i + 224) << 3;
|
884
|
-
bits |= get_bit(scalar->bytes, i + 160) << 2;
|
885
|
-
bits |= get_bit(scalar->bytes, i + 96) << 1;
|
886
|
-
bits |= get_bit(scalar->bytes, i + 32);
|
887
|
-
// Select the point to add, in constant time.
|
888
|
-
select_point(bits, 16, g_pre_comp[1], tmp);
|
889
|
-
|
890
|
-
if (!skip) {
|
891
|
-
point_add(nq[0], nq[1], nq[2], nq[0], nq[1], nq[2], 1 /* mixed */, tmp[0],
|
892
|
-
tmp[1], tmp[2]);
|
893
|
-
} else {
|
894
|
-
fe_copy(nq[0], tmp[0]);
|
895
|
-
fe_copy(nq[1], tmp[1]);
|
896
|
-
fe_copy(nq[2], tmp[2]);
|
897
|
-
skip = 0;
|
898
|
-
}
|
899
|
-
|
900
|
-
// Second, look at the current position.
|
901
|
-
bits = get_bit(scalar->bytes, i + 192) << 3;
|
902
|
-
bits |= get_bit(scalar->bytes, i + 128) << 2;
|
903
|
-
bits |= get_bit(scalar->bytes, i + 64) << 1;
|
904
|
-
bits |= get_bit(scalar->bytes, i);
|
905
|
-
// Select the point to add, in constant time.
|
906
|
-
select_point(bits, 16, g_pre_comp[0], tmp);
|
907
|
-
point_add(nq[0], nq[1], nq[2], nq[0], nq[1], nq[2], 1 /* mixed */, tmp[0],
|
908
|
-
tmp[1], tmp[2]);
|
909
|
-
}
|
910
|
-
|
911
|
-
fe_to_generic(&r->X, nq[0]);
|
912
|
-
fe_to_generic(&r->Y, nq[1]);
|
913
|
-
fe_to_generic(&r->Z, nq[2]);
|
914
|
-
}
|
915
|
-
|
916
|
-
static void ec_GFp_nistp256_point_mul_public(const EC_GROUP *group,
|
917
|
-
EC_RAW_POINT *r,
|
918
|
-
const EC_SCALAR *g_scalar,
|
919
|
-
const EC_RAW_POINT *p,
|
920
|
-
const EC_SCALAR *p_scalar) {
|
921
|
-
#define P256_WSIZE_PUBLIC 4
|
922
|
-
// Precompute multiples of |p|. p_pre_comp[i] is (2*i+1) * |p|.
|
923
|
-
fe p_pre_comp[1 << (P256_WSIZE_PUBLIC-1)][3];
|
924
|
-
fe_from_generic(p_pre_comp[0][0], &p->X);
|
925
|
-
fe_from_generic(p_pre_comp[0][1], &p->Y);
|
926
|
-
fe_from_generic(p_pre_comp[0][2], &p->Z);
|
927
|
-
fe p2[3];
|
928
|
-
point_double(p2[0], p2[1], p2[2], p_pre_comp[0][0], p_pre_comp[0][1],
|
929
|
-
p_pre_comp[0][2]);
|
930
|
-
for (size_t i = 1; i < OPENSSL_ARRAY_SIZE(p_pre_comp); i++) {
|
931
|
-
point_add(p_pre_comp[i][0], p_pre_comp[i][1], p_pre_comp[i][2],
|
932
|
-
p_pre_comp[i - 1][0], p_pre_comp[i - 1][1], p_pre_comp[i - 1][2],
|
933
|
-
0 /* not mixed */, p2[0], p2[1], p2[2]);
|
934
|
-
}
|
935
|
-
|
936
|
-
// Set up the coefficients for |p_scalar|.
|
937
|
-
int8_t p_wNAF[257];
|
938
|
-
ec_compute_wNAF(group, p_wNAF, p_scalar, 256, P256_WSIZE_PUBLIC);
|
939
|
-
|
940
|
-
// Set |ret| to the point at infinity.
|
941
|
-
int skip = 1; // Save some point operations.
|
942
|
-
fe ret[3] = {{0},{0},{0}};
|
943
|
-
for (int i = 256; i >= 0; i--) {
|
944
|
-
if (!skip) {
|
945
|
-
point_double(ret[0], ret[1], ret[2], ret[0], ret[1], ret[2]);
|
946
|
-
}
|
947
|
-
|
948
|
-
// For the |g_scalar|, we use the precomputed table without the
|
949
|
-
// constant-time lookup.
|
950
|
-
if (i <= 31) {
|
951
|
-
// First, look 32 bits upwards.
|
952
|
-
uint64_t bits = get_bit(g_scalar->bytes, i + 224) << 3;
|
953
|
-
bits |= get_bit(g_scalar->bytes, i + 160) << 2;
|
954
|
-
bits |= get_bit(g_scalar->bytes, i + 96) << 1;
|
955
|
-
bits |= get_bit(g_scalar->bytes, i + 32);
|
956
|
-
point_add(ret[0], ret[1], ret[2], ret[0], ret[1], ret[2], 1 /* mixed */,
|
957
|
-
g_pre_comp[1][bits][0], g_pre_comp[1][bits][1],
|
958
|
-
g_pre_comp[1][bits][2]);
|
959
|
-
skip = 0;
|
960
|
-
|
961
|
-
// Second, look at the current position.
|
962
|
-
bits = get_bit(g_scalar->bytes, i + 192) << 3;
|
963
|
-
bits |= get_bit(g_scalar->bytes, i + 128) << 2;
|
964
|
-
bits |= get_bit(g_scalar->bytes, i + 64) << 1;
|
965
|
-
bits |= get_bit(g_scalar->bytes, i);
|
966
|
-
point_add(ret[0], ret[1], ret[2], ret[0], ret[1], ret[2], 1 /* mixed */,
|
967
|
-
g_pre_comp[0][bits][0], g_pre_comp[0][bits][1],
|
968
|
-
g_pre_comp[0][bits][2]);
|
969
|
-
}
|
970
|
-
|
971
|
-
int digit = p_wNAF[i];
|
972
|
-
if (digit != 0) {
|
973
|
-
assert(digit & 1);
|
974
|
-
int idx = digit < 0 ? (-digit) >> 1 : digit >> 1;
|
975
|
-
fe *y = &p_pre_comp[idx][1], tmp;
|
976
|
-
if (digit < 0) {
|
977
|
-
fe_opp(tmp, p_pre_comp[idx][1]);
|
978
|
-
y = &tmp;
|
979
|
-
}
|
980
|
-
if (!skip) {
|
981
|
-
point_add(ret[0], ret[1], ret[2], ret[0], ret[1], ret[2],
|
982
|
-
0 /* not mixed */, p_pre_comp[idx][0], *y, p_pre_comp[idx][2]);
|
983
|
-
} else {
|
984
|
-
fe_copy(ret[0], p_pre_comp[idx][0]);
|
985
|
-
fe_copy(ret[1], *y);
|
986
|
-
fe_copy(ret[2], p_pre_comp[idx][2]);
|
987
|
-
skip = 0;
|
988
|
-
}
|
989
|
-
}
|
990
|
-
}
|
991
|
-
|
992
|
-
fe_to_generic(&r->X, ret[0]);
|
993
|
-
fe_to_generic(&r->Y, ret[1]);
|
994
|
-
fe_to_generic(&r->Z, ret[2]);
|
995
|
-
}
|
996
|
-
|
997
|
-
static int ec_GFp_nistp256_cmp_x_coordinate(const EC_GROUP *group,
|
998
|
-
const EC_RAW_POINT *p,
|
999
|
-
const EC_SCALAR *r) {
|
1000
|
-
if (ec_GFp_simple_is_at_infinity(group, p)) {
|
1001
|
-
return 0;
|
1002
|
-
}
|
1003
|
-
|
1004
|
-
// We wish to compare X/Z^2 with r. This is equivalent to comparing X with
|
1005
|
-
// r*Z^2. Note that X and Z are represented in Montgomery form, while r is
|
1006
|
-
// not.
|
1007
|
-
fe Z2_mont;
|
1008
|
-
fe_from_generic(Z2_mont, &p->Z);
|
1009
|
-
fe_mul(Z2_mont, Z2_mont, Z2_mont);
|
1010
|
-
|
1011
|
-
fe r_Z2;
|
1012
|
-
fe_frombytes(r_Z2, r->bytes); // r < order < p, so this is valid.
|
1013
|
-
fe_mul(r_Z2, r_Z2, Z2_mont);
|
1014
|
-
|
1015
|
-
fe X;
|
1016
|
-
fe_from_generic(X, &p->X);
|
1017
|
-
fe_from_montgomery(X);
|
1018
|
-
|
1019
|
-
if (OPENSSL_memcmp(&r_Z2, &X, sizeof(r_Z2)) == 0) {
|
1020
|
-
return 1;
|
1021
|
-
}
|
1022
|
-
|
1023
|
-
// During signing the x coefficient is reduced modulo the group order.
|
1024
|
-
// Therefore there is a small possibility, less than 1/2^128, that group_order
|
1025
|
-
// < p.x < P. in that case we need not only to compare against |r| but also to
|
1026
|
-
// compare against r+group_order.
|
1027
|
-
assert(group->field.width == group->order.width);
|
1028
|
-
if (bn_less_than_words(r->words, group->field_minus_order.words,
|
1029
|
-
group->field.width)) {
|
1030
|
-
// We can ignore the carry because: r + group_order < p < 2^256.
|
1031
|
-
EC_FELEM tmp;
|
1032
|
-
bn_add_words(tmp.words, r->words, group->order.d, group->order.width);
|
1033
|
-
fe_from_generic(r_Z2, &tmp);
|
1034
|
-
fe_mul(r_Z2, r_Z2, Z2_mont);
|
1035
|
-
if (OPENSSL_memcmp(&r_Z2, &X, sizeof(r_Z2)) == 0) {
|
1036
|
-
return 1;
|
1037
|
-
}
|
1038
|
-
}
|
1039
|
-
|
1040
|
-
return 0;
|
1041
|
-
}
|
1042
|
-
|
1043
|
-
DEFINE_METHOD_FUNCTION(EC_METHOD, EC_GFp_nistp256_method) {
|
1044
|
-
out->group_init = ec_GFp_mont_group_init;
|
1045
|
-
out->group_finish = ec_GFp_mont_group_finish;
|
1046
|
-
out->group_set_curve = ec_GFp_mont_group_set_curve;
|
1047
|
-
out->point_get_affine_coordinates =
|
1048
|
-
ec_GFp_nistp256_point_get_affine_coordinates;
|
1049
|
-
out->add = ec_GFp_nistp256_add;
|
1050
|
-
out->dbl = ec_GFp_nistp256_dbl;
|
1051
|
-
out->mul = ec_GFp_nistp256_point_mul;
|
1052
|
-
out->mul_base = ec_GFp_nistp256_point_mul_base;
|
1053
|
-
out->mul_public = ec_GFp_nistp256_point_mul_public;
|
1054
|
-
out->felem_mul = ec_GFp_mont_felem_mul;
|
1055
|
-
out->felem_sqr = ec_GFp_mont_felem_sqr;
|
1056
|
-
out->bignum_to_felem = ec_GFp_mont_bignum_to_felem;
|
1057
|
-
out->felem_to_bignum = ec_GFp_mont_felem_to_bignum;
|
1058
|
-
out->scalar_inv_montgomery = ec_simple_scalar_inv_montgomery;
|
1059
|
-
out->scalar_inv_montgomery_vartime = ec_GFp_simple_mont_inv_mod_ord_vartime;
|
1060
|
-
out->cmp_x_coordinate = ec_GFp_nistp256_cmp_x_coordinate;
|
1061
|
-
}
|
1062
|
-
|
1063
|
-
#undef BORINGSSL_NISTP256_64BIT
|