grpc 1.53.1 → 1.54.0

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.

Files changed (689) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +78 -66
  3. data/include/grpc/event_engine/event_engine.h +30 -14
  4. data/include/grpc/grpc_security.h +4 -0
  5. data/include/grpc/support/port_platform.h +4 -4
  6. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +11 -0
  7. data/src/core/ext/filters/client_channel/backend_metric.cc +6 -0
  8. data/src/core/ext/filters/client_channel/backup_poller.cc +2 -11
  9. data/src/core/ext/filters/client_channel/backup_poller.h +0 -3
  10. data/src/core/ext/filters/client_channel/client_channel.cc +848 -813
  11. data/src/core/ext/filters/client_channel/client_channel.h +131 -173
  12. data/src/core/ext/filters/client_channel/client_channel_internal.h +114 -0
  13. data/src/core/ext/filters/client_channel/config_selector.h +4 -3
  14. data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +6 -1
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +17 -18
  16. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +134 -151
  17. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2 -16
  18. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +14 -10
  19. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +68 -30
  20. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +11 -3
  21. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +8 -1
  22. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +2 -5
  23. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +2 -2
  24. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +30 -38
  25. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +4 -4
  26. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +20 -26
  27. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +31 -179
  28. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +1 -2
  29. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -2
  30. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +4 -2
  31. data/src/core/ext/filters/client_channel/retry_filter.cc +95 -102
  32. data/src/core/ext/filters/client_channel/subchannel.cc +2 -4
  33. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +26 -27
  34. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +8 -5
  35. data/src/core/ext/filters/http/client/http_client_filter.cc +3 -3
  36. data/src/core/ext/filters/http/http_filters_plugin.cc +1 -12
  37. data/src/core/ext/filters/http/message_compress/compression_filter.cc +27 -11
  38. data/src/core/ext/filters/message_size/message_size_filter.cc +141 -224
  39. data/src/core/ext/filters/message_size/message_size_filter.h +48 -3
  40. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +7 -6
  41. data/src/core/ext/gcp/metadata_query.cc +142 -0
  42. data/src/core/ext/gcp/metadata_query.h +82 -0
  43. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +70 -55
  44. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +8 -12
  45. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -5
  46. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +116 -58
  47. data/src/core/ext/transport/chttp2/transport/flow_control.cc +5 -2
  48. data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -1
  49. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +4 -1
  50. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +222 -118
  51. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +113 -295
  52. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -2
  53. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +0 -2
  54. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +277 -451
  55. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -3
  56. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +12 -14
  57. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +1 -9
  58. data/src/core/ext/transport/chttp2/transport/internal.h +16 -3
  59. data/src/core/ext/transport/chttp2/transport/parsing.cc +3 -2
  60. data/src/core/ext/transport/chttp2/transport/writing.cc +10 -5
  61. data/src/core/ext/transport/inproc/inproc_transport.cc +20 -14
  62. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +5 -3
  63. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +22 -0
  64. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +5 -3
  65. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +22 -0
  66. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +23 -5
  67. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +94 -3
  68. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +23 -2
  69. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +120 -0
  70. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +6 -3
  71. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +22 -0
  72. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +24 -6
  73. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +111 -12
  74. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +9 -7
  75. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +27 -9
  76. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +0 -1
  77. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +11 -7
  78. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +56 -12
  79. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +5 -3
  80. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +24 -0
  81. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +5 -3
  82. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +24 -0
  83. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +13 -2
  84. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +49 -0
  85. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +24 -9
  86. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +66 -12
  87. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +191 -187
  88. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +139 -136
  89. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +31 -15
  90. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -0
  91. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +12 -9
  92. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +15 -0
  93. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +54 -45
  94. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +135 -119
  95. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +5 -0
  96. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +100 -97
  97. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +15 -18
  98. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +272 -264
  99. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +117 -117
  100. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +5 -5
  101. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +5 -5
  102. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +5 -5
  103. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +12 -9
  104. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -0
  105. data/src/core/ext/xds/xds_channel_stack_modifier.cc +1 -2
  106. data/src/core/ext/xds/xds_client_stats.cc +29 -15
  107. data/src/core/ext/xds/xds_client_stats.h +24 -20
  108. data/src/core/ext/xds/xds_endpoint.cc +5 -2
  109. data/src/core/ext/xds/xds_endpoint.h +9 -1
  110. data/src/core/ext/xds/xds_http_rbac_filter.cc +1 -1
  111. data/src/core/ext/xds/xds_lb_policy_registry.cc +13 -0
  112. data/src/core/ext/xds/xds_transport_grpc.cc +1 -1
  113. data/src/core/lib/channel/call_finalization.h +1 -1
  114. data/src/core/lib/channel/call_tracer.cc +51 -0
  115. data/src/core/lib/channel/call_tracer.h +101 -38
  116. data/src/core/lib/channel/connected_channel.cc +483 -1050
  117. data/src/core/lib/channel/context.h +8 -1
  118. data/src/core/lib/channel/promise_based_filter.cc +106 -42
  119. data/src/core/lib/channel/promise_based_filter.h +27 -13
  120. data/src/core/lib/channel/server_call_tracer_filter.cc +110 -0
  121. data/src/core/lib/config/config_vars.cc +151 -0
  122. data/src/core/lib/config/config_vars.h +127 -0
  123. data/src/core/lib/config/config_vars_non_generated.cc +51 -0
  124. data/src/core/lib/config/load_config.cc +66 -0
  125. data/src/core/lib/config/load_config.h +49 -0
  126. data/src/core/lib/debug/trace.cc +5 -6
  127. data/src/core/lib/debug/trace.h +0 -5
  128. data/src/core/lib/event_engine/event_engine.cc +37 -2
  129. data/src/core/lib/event_engine/handle_containers.h +7 -22
  130. data/src/core/lib/event_engine/memory_allocator_factory.h +47 -0
  131. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -4
  132. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -9
  133. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +48 -15
  134. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +8 -8
  135. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +6 -5
  136. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +6 -3
  137. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +27 -18
  138. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +0 -3
  139. data/src/core/lib/event_engine/resolved_address.cc +2 -1
  140. data/src/core/lib/event_engine/windows/win_socket.cc +0 -1
  141. data/src/core/lib/event_engine/windows/windows_endpoint.cc +129 -82
  142. data/src/core/lib/event_engine/windows/windows_endpoint.h +21 -5
  143. data/src/core/lib/event_engine/windows/windows_engine.cc +39 -18
  144. data/src/core/lib/event_engine/windows/windows_engine.h +2 -1
  145. data/src/core/lib/event_engine/windows/windows_listener.cc +370 -0
  146. data/src/core/lib/event_engine/windows/windows_listener.h +155 -0
  147. data/src/core/lib/experiments/config.cc +3 -10
  148. data/src/core/lib/experiments/experiments.cc +7 -0
  149. data/src/core/lib/experiments/experiments.h +9 -1
  150. data/src/core/lib/gpr/log.cc +15 -28
  151. data/src/core/lib/gprpp/fork.cc +8 -14
  152. data/src/core/lib/gprpp/orphanable.h +4 -3
  153. data/src/core/lib/gprpp/per_cpu.h +9 -3
  154. data/src/core/lib/gprpp/{thd_posix.cc → posix/thd.cc} +49 -37
  155. data/src/core/lib/gprpp/ref_counted.h +33 -34
  156. data/src/core/lib/gprpp/thd.h +16 -0
  157. data/src/core/lib/gprpp/time.cc +1 -0
  158. data/src/core/lib/gprpp/time.h +4 -4
  159. data/src/core/lib/gprpp/{thd_windows.cc → windows/thd.cc} +2 -2
  160. data/src/core/lib/iomgr/call_combiner.h +2 -2
  161. data/src/core/lib/iomgr/endpoint_cfstream.cc +4 -2
  162. data/src/core/lib/iomgr/ev_posix.cc +13 -53
  163. data/src/core/lib/iomgr/ev_posix.h +0 -3
  164. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +103 -76
  165. data/src/core/lib/iomgr/iomgr.cc +4 -8
  166. data/src/core/lib/iomgr/iomgr_windows.cc +8 -2
  167. data/src/core/lib/iomgr/pollset_set_windows.cc +9 -9
  168. data/src/core/lib/iomgr/pollset_windows.cc +1 -1
  169. data/src/core/lib/iomgr/socket_utils_common_posix.cc +16 -3
  170. data/src/core/lib/iomgr/tcp_client_windows.cc +2 -2
  171. data/src/core/lib/iomgr/tcp_posix.cc +0 -1
  172. data/src/core/lib/iomgr/tcp_server_posix.cc +5 -16
  173. data/src/core/lib/iomgr/tcp_server_windows.cc +176 -9
  174. data/src/core/lib/iomgr/tcp_windows.cc +12 -8
  175. data/src/core/lib/load_balancing/lb_policy.cc +9 -13
  176. data/src/core/lib/load_balancing/lb_policy.h +4 -2
  177. data/src/core/lib/promise/activity.cc +22 -6
  178. data/src/core/lib/promise/activity.h +61 -24
  179. data/src/core/lib/promise/cancel_callback.h +77 -0
  180. data/src/core/lib/promise/detail/basic_seq.h +1 -1
  181. data/src/core/lib/promise/detail/promise_factory.h +4 -0
  182. data/src/core/lib/promise/for_each.h +176 -0
  183. data/src/core/lib/promise/if.h +9 -0
  184. data/src/core/lib/promise/interceptor_list.h +23 -2
  185. data/src/core/lib/promise/latch.h +89 -3
  186. data/src/core/lib/promise/loop.h +13 -9
  187. data/src/core/lib/promise/map.h +7 -0
  188. data/src/core/lib/promise/party.cc +286 -0
  189. data/src/core/lib/promise/party.h +499 -0
  190. data/src/core/lib/promise/pipe.h +197 -57
  191. data/src/core/lib/promise/poll.h +48 -0
  192. data/src/core/lib/promise/promise.h +2 -2
  193. data/src/core/lib/resource_quota/arena.cc +19 -3
  194. data/src/core/lib/resource_quota/arena.h +119 -5
  195. data/src/core/lib/resource_quota/memory_quota.cc +1 -1
  196. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +12 -35
  197. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +1 -0
  198. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +0 -59
  199. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +10 -5
  200. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
  201. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +13 -0
  202. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +2 -0
  203. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +5 -9
  204. data/src/core/lib/security/security_connector/ssl_utils.cc +11 -25
  205. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +12 -0
  206. data/src/core/lib/security/transport/secure_endpoint.cc +4 -2
  207. data/src/core/lib/security/transport/server_auth_filter.cc +20 -2
  208. data/src/core/lib/slice/slice.cc +1 -1
  209. data/src/core/lib/surface/builtins.cc +2 -0
  210. data/src/core/lib/surface/call.cc +926 -1024
  211. data/src/core/lib/surface/call.h +10 -0
  212. data/src/core/lib/surface/lame_client.cc +1 -0
  213. data/src/core/lib/surface/validate_metadata.cc +42 -43
  214. data/src/core/lib/surface/validate_metadata.h +0 -9
  215. data/src/core/lib/surface/version.cc +2 -2
  216. data/src/core/lib/transport/batch_builder.cc +179 -0
  217. data/src/core/lib/transport/batch_builder.h +468 -0
  218. data/src/core/lib/transport/bdp_estimator.cc +7 -7
  219. data/src/core/lib/transport/bdp_estimator.h +10 -6
  220. data/src/core/lib/transport/custom_metadata.h +30 -0
  221. data/src/core/lib/transport/metadata_batch.cc +5 -2
  222. data/src/core/lib/transport/metadata_batch.h +17 -113
  223. data/src/core/lib/transport/parsed_metadata.h +6 -16
  224. data/src/core/lib/transport/timeout_encoding.cc +6 -1
  225. data/src/core/lib/transport/transport.cc +30 -2
  226. data/src/core/lib/transport/transport.h +70 -14
  227. data/src/core/lib/transport/transport_impl.h +7 -0
  228. data/src/core/lib/transport/transport_op_string.cc +52 -42
  229. data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -2
  230. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +1 -0
  231. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +21 -4
  232. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +5 -0
  233. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -1
  234. data/src/core/tsi/ssl_transport_security.cc +4 -2
  235. data/src/ruby/lib/grpc/version.rb +1 -1
  236. data/third_party/abseil-cpp/absl/base/config.h +1 -1
  237. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +34 -0
  238. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +200 -0
  239. data/third_party/abseil-cpp/absl/flags/config.h +68 -0
  240. data/third_party/abseil-cpp/absl/flags/declare.h +73 -0
  241. data/third_party/abseil-cpp/absl/flags/flag.cc +38 -0
  242. data/third_party/abseil-cpp/absl/flags/flag.h +310 -0
  243. data/{src/core/lib/gprpp/global_config_custom.h → third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc} +11 -14
  244. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
  245. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +615 -0
  246. data/third_party/abseil-cpp/absl/flags/internal/flag.h +800 -0
  247. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +116 -0
  248. data/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
  249. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +65 -0
  250. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +61 -0
  251. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +60 -0
  252. data/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
  253. data/third_party/abseil-cpp/absl/flags/internal/registry.h +97 -0
  254. data/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
  255. data/third_party/abseil-cpp/absl/flags/marshalling.cc +241 -0
  256. data/third_party/abseil-cpp/absl/flags/marshalling.h +356 -0
  257. data/third_party/abseil-cpp/absl/flags/reflection.cc +354 -0
  258. data/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
  259. data/third_party/abseil-cpp/absl/flags/usage_config.cc +165 -0
  260. data/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
  261. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +12 -8
  262. data/third_party/boringssl-with-bazel/err_data.c +728 -712
  263. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +177 -177
  264. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +28 -55
  265. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +21 -23
  266. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +20 -23
  267. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +66 -185
  268. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +18 -21
  269. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +356 -311
  270. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +174 -194
  271. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +146 -210
  272. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +6 -9
  273. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +346 -526
  274. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +110 -131
  275. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +130 -116
  276. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +93 -60
  277. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +93 -181
  278. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +242 -305
  279. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +41 -18
  280. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +30 -33
  281. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +36 -33
  282. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +29 -26
  283. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +133 -88
  284. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +230 -0
  285. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +791 -791
  286. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +526 -526
  287. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +114 -135
  288. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +201 -207
  289. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +21 -26
  290. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +55 -68
  291. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +2 -4
  292. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +11 -7
  293. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +4 -4
  294. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +15 -9
  295. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -4
  296. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +17 -10
  297. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -3
  298. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -13
  299. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -6
  300. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -0
  301. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +9 -5
  302. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +10 -23
  303. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +2 -6
  304. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +2 -1
  305. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +29 -28
  306. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +161 -201
  307. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +254 -39
  308. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +2 -2
  309. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +0 -2
  310. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +4 -4
  311. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +9 -8
  312. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +37 -75
  313. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +8 -10
  314. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/cipher → cipher_extra}/e_des.c +100 -78
  315. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +1 -0
  316. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +1 -0
  317. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +2 -0
  318. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +6 -12
  319. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +14 -11
  320. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +6 -10
  321. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -1
  322. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +12 -0
  323. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +74 -0
  324. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +62 -0
  325. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-fuchsia.c → cpu_aarch64_fuchsia.c} +8 -7
  326. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-linux.c → cpu_aarch64_linux.c} +6 -4
  327. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-win.c → cpu_aarch64_win.c} +4 -4
  328. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm.c → cpu_arm.c} +1 -1
  329. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +55 -0
  330. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.c → cpu_arm_linux.c} +11 -90
  331. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.h → cpu_arm_linux.h} +0 -38
  332. data/third_party/boringssl-with-bazel/src/crypto/{cpu-intel.c → cpu_intel.c} +1 -2
  333. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +25 -20
  334. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +16 -27
  335. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +17 -32
  336. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/des.c +232 -232
  337. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/internal.h +1 -1
  338. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +1 -0
  339. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +232 -29
  340. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -3
  341. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +39 -16
  342. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +37 -7
  343. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +3 -3
  344. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +11 -36
  345. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +214 -99
  346. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +21 -5
  347. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +2 -4
  348. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +83 -60
  349. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +46 -12
  350. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +3 -3
  351. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +25 -23
  352. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +43 -9
  353. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +75 -44
  354. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +19 -25
  355. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +96 -45
  356. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +7 -8
  357. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +26 -23
  358. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +233 -0
  359. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +5 -5
  360. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +42 -25
  361. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +4 -5
  362. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +35 -47
  363. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +135 -244
  364. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -4
  365. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +15 -10
  366. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +29 -15
  367. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -2
  368. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +13 -14
  369. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +3 -13
  370. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +13 -7
  371. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +9 -7
  372. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +35 -27
  373. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +16 -26
  374. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +88 -60
  375. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +4 -3
  376. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -2
  377. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +1 -1
  378. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
  379. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +99 -113
  380. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +0 -1
  381. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +5 -3
  382. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +112 -168
  383. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +86 -31
  384. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +11 -6
  385. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +4 -5
  386. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +4 -5
  387. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +13 -0
  388. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +13 -5
  389. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +19 -108
  390. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +19 -15
  391. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +15 -16
  392. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +22 -21
  393. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +3 -0
  394. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +79 -19
  395. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +102 -99
  396. data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra → fipsmodule/cipher}/e_aesccm.c +52 -46
  397. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +39 -0
  398. data/third_party/boringssl-with-bazel/src/crypto/{cmac → fipsmodule/cmac}/cmac.c +55 -11
  399. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +2 -3
  400. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +21 -6
  401. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +56 -0
  402. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +5 -3
  403. data/third_party/boringssl-with-bazel/src/crypto/{evp → fipsmodule/digestsign}/digestsign.c +51 -15
  404. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +25 -25
  405. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +91 -17
  406. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +5 -5
  407. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +34 -12
  408. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +54 -23
  409. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +44 -60
  410. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64-table.h → p256-nistz-table.h} +1 -1
  411. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.c → p256-nistz.c} +60 -53
  412. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.h → p256-nistz.h} +5 -13
  413. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +48 -36
  414. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +2 -8
  415. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +2 -7
  416. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -3
  417. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +0 -1
  418. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +8 -0
  419. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +42 -14
  420. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +6 -0
  421. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +52 -24
  422. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +9 -15
  423. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +1 -4
  424. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +2 -4
  425. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +71 -43
  426. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +14 -16
  427. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +1 -4
  428. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +31 -13
  429. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +16 -8
  430. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +3 -2
  431. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +2 -2
  432. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +9 -38
  433. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +73 -59
  434. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +11 -45
  435. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -1
  436. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +22 -0
  437. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +63 -52
  438. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +107 -62
  439. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +58 -31
  440. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +41 -0
  441. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +523 -422
  442. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +89 -0
  443. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +334 -0
  444. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +3 -12
  445. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +2 -0
  446. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +12 -8
  447. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +14 -12
  448. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +19 -6
  449. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +32 -14
  450. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +65 -29
  451. data/third_party/boringssl-with-bazel/src/crypto/internal.h +373 -18
  452. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +61 -0
  453. data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +205 -0
  454. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +13 -1
  455. data/third_party/boringssl-with-bazel/src/crypto/mem.c +220 -13
  456. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -7
  457. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +13 -1
  458. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +81 -90
  459. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +150 -245
  460. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +629 -613
  461. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +17 -17
  462. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +142 -149
  463. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +99 -131
  464. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -1
  465. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -1
  466. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -1
  467. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +0 -3
  468. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -66
  469. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +31 -38
  470. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +2 -1
  471. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +18 -31
  472. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  473. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +8 -1
  474. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +129 -5
  475. data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +0 -2
  476. data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +3 -4
  477. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +8 -11
  478. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +61 -27
  479. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +10 -13
  480. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +10 -13
  481. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +66 -34
  482. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +190 -77
  483. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +81 -284
  484. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +109 -42
  485. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +22 -24
  486. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +54 -55
  487. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +32 -34
  488. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +32 -16
  489. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +465 -704
  490. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +284 -331
  491. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +183 -178
  492. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +11 -15
  493. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +67 -50
  494. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +153 -150
  495. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +786 -0
  496. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +95 -102
  497. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +72 -57
  498. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +12 -10
  499. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +227 -252
  500. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +52 -47
  501. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +3 -4
  502. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +230 -224
  503. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +161 -327
  504. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +37 -33
  505. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +14 -31
  506. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +55 -85
  507. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +534 -618
  508. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +129 -122
  509. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +116 -182
  510. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +132 -132
  511. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +181 -202
  512. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +64 -79
  513. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +175 -160
  514. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +1865 -2050
  515. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +433 -462
  516. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +156 -163
  517. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +267 -263
  518. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +40 -15
  519. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +59 -63
  520. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +63 -67
  521. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +114 -144
  522. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +25 -26
  523. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +326 -415
  524. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +8 -7
  525. data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +30 -28
  526. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +354 -370
  527. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +37 -32
  528. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +116 -119
  529. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +36 -26
  530. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +3 -4
  531. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +10 -13
  532. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +3 -4
  533. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +419 -261
  534. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +113 -105
  535. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +11 -15
  536. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +78 -170
  537. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +126 -131
  538. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +3 -4
  539. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +465 -469
  540. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +56 -54
  541. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +46 -49
  542. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +309 -346
  543. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +341 -365
  544. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +429 -393
  545. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +29 -24
  546. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +65 -59
  547. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +125 -121
  548. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +43 -42
  549. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +122 -125
  550. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +50 -20
  551. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +247 -253
  552. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +386 -389
  553. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +45 -32
  554. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +57 -54
  555. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +63 -67
  556. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +143 -136
  557. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +664 -707
  558. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +83 -75
  559. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1062 -1146
  560. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +8 -4
  561. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +28 -48
  562. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +211 -187
  563. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +26 -78
  564. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +19 -14
  565. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +21 -2
  566. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +49 -17
  567. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +99 -29
  568. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +49 -60
  569. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +2 -15
  570. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +16 -200
  571. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +34 -0
  572. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +82 -0
  573. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +32 -30
  574. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +7 -0
  575. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +4 -0
  576. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +48 -5
  577. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +37 -8
  578. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -0
  579. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +33 -5
  580. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +22 -30
  581. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
  582. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +7 -0
  583. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +41 -16
  584. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +91 -0
  585. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +74 -8
  586. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +13 -0
  587. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
  588. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +11 -15
  589. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +8 -0
  590. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +12 -1
  591. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +7 -4
  592. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +96 -0
  593. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +13 -21
  594. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +139 -75
  595. data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +1 -6
  596. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +384 -286
  597. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +5 -6
  598. data/third_party/boringssl-with-bazel/src/include/openssl/time.h +41 -0
  599. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +18 -7
  600. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +49 -23
  601. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +0 -11
  602. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1592 -1074
  603. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +202 -205
  604. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +2 -2
  605. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +6 -13
  606. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +17 -18
  607. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +4 -5
  608. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +25 -33
  609. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +34 -20
  610. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +65 -34
  611. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +198 -54
  612. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +5 -5
  613. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +32 -28
  614. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +76 -44
  615. data/third_party/boringssl-with-bazel/src/ssl/internal.h +130 -98
  616. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +27 -11
  617. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
  618. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +91 -75
  619. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +8 -10
  620. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +39 -65
  621. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +1 -0
  622. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +5 -9
  623. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +30 -33
  624. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +77 -100
  625. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +120 -107
  626. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +164 -30
  627. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +150 -60
  628. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +22 -11
  629. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +22 -6
  630. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +15 -13
  631. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +5 -43
  632. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +7 -4
  633. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +2 -2
  634. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +22 -34
  635. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +2 -2
  636. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +16 -98
  637. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +1241 -657
  638. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +751 -398
  639. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3551 -1938
  640. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1272 -487
  641. metadata +103 -70
  642. data/src/core/ext/filters/client_channel/lb_call_state_internal.h +0 -39
  643. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +0 -30
  644. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +0 -29
  645. data/src/core/lib/gprpp/global_config.h +0 -93
  646. data/src/core/lib/gprpp/global_config_env.cc +0 -140
  647. data/src/core/lib/gprpp/global_config_env.h +0 -133
  648. data/src/core/lib/gprpp/global_config_generic.h +0 -40
  649. data/src/core/lib/promise/intra_activity_waiter.h +0 -55
  650. data/src/core/lib/security/security_connector/ssl_utils_config.cc +0 -32
  651. data/src/core/lib/security/security_connector/ssl_utils_config.h +0 -29
  652. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +0 -195
  653. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +0 -83
  654. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +0 -236
  655. data/third_party/boringssl-with-bazel/src/crypto/asn1/charmap.h +0 -15
  656. data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +0 -206
  657. data/third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c +0 -38
  658. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +0 -361
  659. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +0 -287
  660. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +0 -132
  661. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +0 -155
  662. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +0 -131
  663. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +0 -189
  664. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +0 -843
  665. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +0 -289
  666. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +0 -57
  667. /data/src/core/lib/gpr/{log_android.cc → android/log.cc} +0 -0
  668. /data/src/core/lib/gpr/{cpu_iphone.cc → iphone/cpu.cc} +0 -0
  669. /data/src/core/lib/gpr/{cpu_linux.cc → linux/cpu.cc} +0 -0
  670. /data/src/core/lib/gpr/{log_linux.cc → linux/log.cc} +0 -0
  671. /data/src/core/lib/gpr/{tmpfile_msys.cc → msys/tmpfile.cc} +0 -0
  672. /data/src/core/lib/gpr/{cpu_posix.cc → posix/cpu.cc} +0 -0
  673. /data/src/core/lib/gpr/{log_posix.cc → posix/log.cc} +0 -0
  674. /data/src/core/lib/gpr/{string_posix.cc → posix/string.cc} +0 -0
  675. /data/src/core/lib/gpr/{sync_posix.cc → posix/sync.cc} +0 -0
  676. /data/src/core/lib/gpr/{time_posix.cc → posix/time.cc} +0 -0
  677. /data/src/core/lib/gpr/{tmpfile_posix.cc → posix/tmpfile.cc} +0 -0
  678. /data/src/core/lib/gpr/{cpu_windows.cc → windows/cpu.cc} +0 -0
  679. /data/src/core/lib/gpr/{log_windows.cc → windows/log.cc} +0 -0
  680. /data/src/core/lib/gpr/{string_windows.cc → windows/string.cc} +0 -0
  681. /data/src/core/lib/gpr/{string_util_windows.cc → windows/string_util.cc} +0 -0
  682. /data/src/core/lib/gpr/{sync_windows.cc → windows/sync.cc} +0 -0
  683. /data/src/core/lib/gpr/{time_windows.cc → windows/time.cc} +0 -0
  684. /data/src/core/lib/gpr/{tmpfile_windows.cc → windows/tmpfile.cc} +0 -0
  685. /data/src/core/lib/gprpp/{env_linux.cc → linux/env.cc} +0 -0
  686. /data/src/core/lib/gprpp/{env_posix.cc → posix/env.cc} +0 -0
  687. /data/src/core/lib/gprpp/{stat_posix.cc → posix/stat.cc} +0 -0
  688. /data/src/core/lib/gprpp/{env_windows.cc → windows/env.cc} +0 -0
  689. /data/src/core/lib/gprpp/{stat_windows.cc → windows/stat.cc} +0 -0
@@ -1,26 +1,56 @@
1
- /* Autogenerated: src/ExtractionOCaml/unsaturated_solinas --static 25519 5 '2^255 - 19' 64 carry_mul carry_square carry add sub opp selectznz to_bytes from_bytes carry_scmul121666 */
1
+ /* Autogenerated: 'src/ExtractionOCaml/unsaturated_solinas' --inline --static --use-value-barrier 25519 64 '(auto)' '2^255 - 19' carry_mul carry_square carry add sub opp selectznz to_bytes from_bytes relax carry_scmul121666 */
2
2
  /* curve description: 25519 */
3
- /* requested operations: carry_mul, carry_square, carry, add, sub, opp, selectznz, to_bytes, from_bytes, carry_scmul121666 */
4
- /* n = 5 (from "5") */
5
- /* s-c = 2^255 - [(1, 19)] (from "2^255 - 19") */
6
3
  /* machine_wordsize = 64 (from "64") */
7
-
4
+ /* requested operations: carry_mul, carry_square, carry, add, sub, opp, selectznz, to_bytes, from_bytes, relax, carry_scmul121666 */
5
+ /* n = 5 (from "(auto)") */
6
+ /* s-c = 2^255 - [(1, 19)] (from "2^255 - 19") */
7
+ /* tight_bounds_multiplier = 1 (from "") */
8
+ /* */
8
9
  /* Computed values: */
9
- /* carry_chain = [0, 1, 2, 3, 4, 0, 1] */
10
+ /* carry_chain = [0, 1, 2, 3, 4, 0, 1] */
11
+ /* eval z = z[0] + (z[1] << 51) + (z[2] << 102) + (z[3] << 153) + (z[4] << 204) */
12
+ /* bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) */
13
+ /* balance = [0xfffffffffffda, 0xffffffffffffe, 0xffffffffffffe, 0xffffffffffffe, 0xffffffffffffe] */
10
14
 
11
15
  #include <stdint.h>
12
16
  typedef unsigned char fiat_25519_uint1;
13
17
  typedef signed char fiat_25519_int1;
14
- typedef signed __int128 fiat_25519_int128;
15
- typedef unsigned __int128 fiat_25519_uint128;
18
+ #if defined(__GNUC__) || defined(__clang__)
19
+ # define FIAT_25519_FIAT_EXTENSION __extension__
20
+ # define FIAT_25519_FIAT_INLINE __inline__
21
+ #else
22
+ # define FIAT_25519_FIAT_EXTENSION
23
+ # define FIAT_25519_FIAT_INLINE
24
+ #endif
25
+
26
+ FIAT_25519_FIAT_EXTENSION typedef signed __int128 fiat_25519_int128;
27
+ FIAT_25519_FIAT_EXTENSION typedef unsigned __int128 fiat_25519_uint128;
28
+
29
+ /* The type fiat_25519_loose_field_element is a field element with loose bounds. */
30
+ /* Bounds: [[0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000], [0x0 ~> 0x18000000000000]] */
31
+ typedef uint64_t fiat_25519_loose_field_element[5];
32
+
33
+ /* The type fiat_25519_tight_field_element is a field element with tight bounds. */
34
+ /* Bounds: [[0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000], [0x0 ~> 0x8000000000000]] */
35
+ typedef uint64_t fiat_25519_tight_field_element[5];
16
36
 
17
37
  #if (-1 & 3) != 3
18
38
  #error "This code only works on a two's complement system"
19
39
  #endif
20
40
 
41
+ #if !defined(FIAT_25519_NO_ASM) && (defined(__GNUC__) || defined(__clang__))
42
+ static __inline__ uint64_t fiat_25519_value_barrier_u64(uint64_t a) {
43
+ __asm__("" : "+r"(a) : /* no inputs */);
44
+ return a;
45
+ }
46
+ #else
47
+ # define fiat_25519_value_barrier_u64(x) (x)
48
+ #endif
49
+
21
50
 
22
51
  /*
23
52
  * The function fiat_25519_addcarryx_u51 is an addition with carry.
53
+ *
24
54
  * Postconditions:
25
55
  * out1 = (arg1 + arg2 + arg3) mod 2^51
26
56
  * out2 = ⌊(arg1 + arg2 + arg3) / 2^51⌋
@@ -33,16 +63,20 @@ typedef unsigned __int128 fiat_25519_uint128;
33
63
  * out1: [0x0 ~> 0x7ffffffffffff]
34
64
  * out2: [0x0 ~> 0x1]
35
65
  */
36
- static void fiat_25519_addcarryx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
37
- uint64_t x1 = ((arg1 + arg2) + arg3);
38
- uint64_t x2 = (x1 & UINT64_C(0x7ffffffffffff));
39
- fiat_25519_uint1 x3 = (fiat_25519_uint1)(x1 >> 51);
66
+ static FIAT_25519_FIAT_INLINE void fiat_25519_addcarryx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
67
+ uint64_t x1;
68
+ uint64_t x2;
69
+ fiat_25519_uint1 x3;
70
+ x1 = ((arg1 + arg2) + arg3);
71
+ x2 = (x1 & UINT64_C(0x7ffffffffffff));
72
+ x3 = (fiat_25519_uint1)(x1 >> 51);
40
73
  *out1 = x2;
41
74
  *out2 = x3;
42
75
  }
43
76
 
44
77
  /*
45
78
  * The function fiat_25519_subborrowx_u51 is a subtraction with borrow.
79
+ *
46
80
  * Postconditions:
47
81
  * out1 = (-arg1 + arg2 + -arg3) mod 2^51
48
82
  * out2 = -⌊(-arg1 + arg2 + -arg3) / 2^51⌋
@@ -55,16 +89,20 @@ static void fiat_25519_addcarryx_u51(uint64_t* out1, fiat_25519_uint1* out2, fia
55
89
  * out1: [0x0 ~> 0x7ffffffffffff]
56
90
  * out2: [0x0 ~> 0x1]
57
91
  */
58
- static void fiat_25519_subborrowx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
59
- int64_t x1 = ((int64_t)(arg2 - (int64_t)arg1) - (int64_t)arg3);
60
- fiat_25519_int1 x2 = (fiat_25519_int1)(x1 >> 51);
61
- uint64_t x3 = (x1 & UINT64_C(0x7ffffffffffff));
92
+ static FIAT_25519_FIAT_INLINE void fiat_25519_subborrowx_u51(uint64_t* out1, fiat_25519_uint1* out2, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
93
+ int64_t x1;
94
+ fiat_25519_int1 x2;
95
+ uint64_t x3;
96
+ x1 = ((int64_t)(arg2 - (int64_t)arg1) - (int64_t)arg3);
97
+ x2 = (fiat_25519_int1)(x1 >> 51);
98
+ x3 = (x1 & UINT64_C(0x7ffffffffffff));
62
99
  *out1 = x3;
63
100
  *out2 = (fiat_25519_uint1)(0x0 - x2);
64
101
  }
65
102
 
66
103
  /*
67
104
  * The function fiat_25519_cmovznz_u64 is a single-word conditional move.
105
+ *
68
106
  * Postconditions:
69
107
  * out1 = (if arg1 = 0 then arg2 else arg3)
70
108
  *
@@ -75,83 +113,128 @@ static void fiat_25519_subborrowx_u51(uint64_t* out1, fiat_25519_uint1* out2, fi
75
113
  * Output Bounds:
76
114
  * out1: [0x0 ~> 0xffffffffffffffff]
77
115
  */
78
- static void fiat_25519_cmovznz_u64(uint64_t* out1, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
79
- fiat_25519_uint1 x1 = (!(!arg1));
80
- uint64_t x2 = ((fiat_25519_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff));
81
- // Note this line has been patched from the synthesized code to add value
82
- // barriers.
83
- //
84
- // Clang recognizes this pattern as a select. While it usually transforms it
85
- // to a cmov, it sometimes further transforms it into a branch, which we do
86
- // not want.
87
- uint64_t x3 = ((value_barrier_u64(x2) & arg3) | (value_barrier_u64(~x2) & arg2));
116
+ static FIAT_25519_FIAT_INLINE void fiat_25519_cmovznz_u64(uint64_t* out1, fiat_25519_uint1 arg1, uint64_t arg2, uint64_t arg3) {
117
+ fiat_25519_uint1 x1;
118
+ uint64_t x2;
119
+ uint64_t x3;
120
+ x1 = (!(!arg1));
121
+ x2 = ((fiat_25519_int1)(0x0 - x1) & UINT64_C(0xffffffffffffffff));
122
+ x3 = ((fiat_25519_value_barrier_u64(x2) & arg3) | (fiat_25519_value_barrier_u64((~x2)) & arg2));
88
123
  *out1 = x3;
89
124
  }
90
125
 
91
126
  /*
92
127
  * The function fiat_25519_carry_mul multiplies two field elements and reduces the result.
128
+ *
93
129
  * Postconditions:
94
130
  * eval out1 mod m = (eval arg1 * eval arg2) mod m
95
131
  *
96
- * Input Bounds:
97
- * arg1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
98
- * arg2: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
99
- * Output Bounds:
100
- * out1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
101
132
  */
102
- static void fiat_25519_carry_mul(uint64_t out1[5], const uint64_t arg1[5], const uint64_t arg2[5]) {
103
- fiat_25519_uint128 x1 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[4]) * UINT8_C(0x13)));
104
- fiat_25519_uint128 x2 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[3]) * UINT8_C(0x13)));
105
- fiat_25519_uint128 x3 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[2]) * UINT8_C(0x13)));
106
- fiat_25519_uint128 x4 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[1]) * UINT8_C(0x13)));
107
- fiat_25519_uint128 x5 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[4]) * UINT8_C(0x13)));
108
- fiat_25519_uint128 x6 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[3]) * UINT8_C(0x13)));
109
- fiat_25519_uint128 x7 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[2]) * UINT8_C(0x13)));
110
- fiat_25519_uint128 x8 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[4]) * UINT8_C(0x13)));
111
- fiat_25519_uint128 x9 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[3]) * UINT8_C(0x13)));
112
- fiat_25519_uint128 x10 = ((fiat_25519_uint128)(arg1[1]) * ((arg2[4]) * UINT8_C(0x13)));
113
- fiat_25519_uint128 x11 = ((fiat_25519_uint128)(arg1[4]) * (arg2[0]));
114
- fiat_25519_uint128 x12 = ((fiat_25519_uint128)(arg1[3]) * (arg2[1]));
115
- fiat_25519_uint128 x13 = ((fiat_25519_uint128)(arg1[3]) * (arg2[0]));
116
- fiat_25519_uint128 x14 = ((fiat_25519_uint128)(arg1[2]) * (arg2[2]));
117
- fiat_25519_uint128 x15 = ((fiat_25519_uint128)(arg1[2]) * (arg2[1]));
118
- fiat_25519_uint128 x16 = ((fiat_25519_uint128)(arg1[2]) * (arg2[0]));
119
- fiat_25519_uint128 x17 = ((fiat_25519_uint128)(arg1[1]) * (arg2[3]));
120
- fiat_25519_uint128 x18 = ((fiat_25519_uint128)(arg1[1]) * (arg2[2]));
121
- fiat_25519_uint128 x19 = ((fiat_25519_uint128)(arg1[1]) * (arg2[1]));
122
- fiat_25519_uint128 x20 = ((fiat_25519_uint128)(arg1[1]) * (arg2[0]));
123
- fiat_25519_uint128 x21 = ((fiat_25519_uint128)(arg1[0]) * (arg2[4]));
124
- fiat_25519_uint128 x22 = ((fiat_25519_uint128)(arg1[0]) * (arg2[3]));
125
- fiat_25519_uint128 x23 = ((fiat_25519_uint128)(arg1[0]) * (arg2[2]));
126
- fiat_25519_uint128 x24 = ((fiat_25519_uint128)(arg1[0]) * (arg2[1]));
127
- fiat_25519_uint128 x25 = ((fiat_25519_uint128)(arg1[0]) * (arg2[0]));
128
- fiat_25519_uint128 x26 = (x25 + (x10 + (x9 + (x7 + x4))));
129
- uint64_t x27 = (uint64_t)(x26 >> 51);
130
- uint64_t x28 = (uint64_t)(x26 & UINT64_C(0x7ffffffffffff));
131
- fiat_25519_uint128 x29 = (x21 + (x17 + (x14 + (x12 + x11))));
132
- fiat_25519_uint128 x30 = (x22 + (x18 + (x15 + (x13 + x1))));
133
- fiat_25519_uint128 x31 = (x23 + (x19 + (x16 + (x5 + x2))));
134
- fiat_25519_uint128 x32 = (x24 + (x20 + (x8 + (x6 + x3))));
135
- fiat_25519_uint128 x33 = (x27 + x32);
136
- uint64_t x34 = (uint64_t)(x33 >> 51);
137
- uint64_t x35 = (uint64_t)(x33 & UINT64_C(0x7ffffffffffff));
138
- fiat_25519_uint128 x36 = (x34 + x31);
139
- uint64_t x37 = (uint64_t)(x36 >> 51);
140
- uint64_t x38 = (uint64_t)(x36 & UINT64_C(0x7ffffffffffff));
141
- fiat_25519_uint128 x39 = (x37 + x30);
142
- uint64_t x40 = (uint64_t)(x39 >> 51);
143
- uint64_t x41 = (uint64_t)(x39 & UINT64_C(0x7ffffffffffff));
144
- fiat_25519_uint128 x42 = (x40 + x29);
145
- uint64_t x43 = (uint64_t)(x42 >> 51);
146
- uint64_t x44 = (uint64_t)(x42 & UINT64_C(0x7ffffffffffff));
147
- uint64_t x45 = (x43 * UINT8_C(0x13));
148
- uint64_t x46 = (x28 + x45);
149
- uint64_t x47 = (x46 >> 51);
150
- uint64_t x48 = (x46 & UINT64_C(0x7ffffffffffff));
151
- uint64_t x49 = (x47 + x35);
152
- fiat_25519_uint1 x50 = (fiat_25519_uint1)(x49 >> 51);
153
- uint64_t x51 = (x49 & UINT64_C(0x7ffffffffffff));
154
- uint64_t x52 = (x50 + x38);
133
+ static FIAT_25519_FIAT_INLINE void fiat_25519_carry_mul(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1, const fiat_25519_loose_field_element arg2) {
134
+ fiat_25519_uint128 x1;
135
+ fiat_25519_uint128 x2;
136
+ fiat_25519_uint128 x3;
137
+ fiat_25519_uint128 x4;
138
+ fiat_25519_uint128 x5;
139
+ fiat_25519_uint128 x6;
140
+ fiat_25519_uint128 x7;
141
+ fiat_25519_uint128 x8;
142
+ fiat_25519_uint128 x9;
143
+ fiat_25519_uint128 x10;
144
+ fiat_25519_uint128 x11;
145
+ fiat_25519_uint128 x12;
146
+ fiat_25519_uint128 x13;
147
+ fiat_25519_uint128 x14;
148
+ fiat_25519_uint128 x15;
149
+ fiat_25519_uint128 x16;
150
+ fiat_25519_uint128 x17;
151
+ fiat_25519_uint128 x18;
152
+ fiat_25519_uint128 x19;
153
+ fiat_25519_uint128 x20;
154
+ fiat_25519_uint128 x21;
155
+ fiat_25519_uint128 x22;
156
+ fiat_25519_uint128 x23;
157
+ fiat_25519_uint128 x24;
158
+ fiat_25519_uint128 x25;
159
+ fiat_25519_uint128 x26;
160
+ uint64_t x27;
161
+ uint64_t x28;
162
+ fiat_25519_uint128 x29;
163
+ fiat_25519_uint128 x30;
164
+ fiat_25519_uint128 x31;
165
+ fiat_25519_uint128 x32;
166
+ fiat_25519_uint128 x33;
167
+ uint64_t x34;
168
+ uint64_t x35;
169
+ fiat_25519_uint128 x36;
170
+ uint64_t x37;
171
+ uint64_t x38;
172
+ fiat_25519_uint128 x39;
173
+ uint64_t x40;
174
+ uint64_t x41;
175
+ fiat_25519_uint128 x42;
176
+ uint64_t x43;
177
+ uint64_t x44;
178
+ uint64_t x45;
179
+ uint64_t x46;
180
+ uint64_t x47;
181
+ uint64_t x48;
182
+ uint64_t x49;
183
+ fiat_25519_uint1 x50;
184
+ uint64_t x51;
185
+ uint64_t x52;
186
+ x1 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[4]) * UINT8_C(0x13)));
187
+ x2 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[3]) * UINT8_C(0x13)));
188
+ x3 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[2]) * UINT8_C(0x13)));
189
+ x4 = ((fiat_25519_uint128)(arg1[4]) * ((arg2[1]) * UINT8_C(0x13)));
190
+ x5 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[4]) * UINT8_C(0x13)));
191
+ x6 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[3]) * UINT8_C(0x13)));
192
+ x7 = ((fiat_25519_uint128)(arg1[3]) * ((arg2[2]) * UINT8_C(0x13)));
193
+ x8 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[4]) * UINT8_C(0x13)));
194
+ x9 = ((fiat_25519_uint128)(arg1[2]) * ((arg2[3]) * UINT8_C(0x13)));
195
+ x10 = ((fiat_25519_uint128)(arg1[1]) * ((arg2[4]) * UINT8_C(0x13)));
196
+ x11 = ((fiat_25519_uint128)(arg1[4]) * (arg2[0]));
197
+ x12 = ((fiat_25519_uint128)(arg1[3]) * (arg2[1]));
198
+ x13 = ((fiat_25519_uint128)(arg1[3]) * (arg2[0]));
199
+ x14 = ((fiat_25519_uint128)(arg1[2]) * (arg2[2]));
200
+ x15 = ((fiat_25519_uint128)(arg1[2]) * (arg2[1]));
201
+ x16 = ((fiat_25519_uint128)(arg1[2]) * (arg2[0]));
202
+ x17 = ((fiat_25519_uint128)(arg1[1]) * (arg2[3]));
203
+ x18 = ((fiat_25519_uint128)(arg1[1]) * (arg2[2]));
204
+ x19 = ((fiat_25519_uint128)(arg1[1]) * (arg2[1]));
205
+ x20 = ((fiat_25519_uint128)(arg1[1]) * (arg2[0]));
206
+ x21 = ((fiat_25519_uint128)(arg1[0]) * (arg2[4]));
207
+ x22 = ((fiat_25519_uint128)(arg1[0]) * (arg2[3]));
208
+ x23 = ((fiat_25519_uint128)(arg1[0]) * (arg2[2]));
209
+ x24 = ((fiat_25519_uint128)(arg1[0]) * (arg2[1]));
210
+ x25 = ((fiat_25519_uint128)(arg1[0]) * (arg2[0]));
211
+ x26 = (x25 + (x10 + (x9 + (x7 + x4))));
212
+ x27 = (uint64_t)(x26 >> 51);
213
+ x28 = (uint64_t)(x26 & UINT64_C(0x7ffffffffffff));
214
+ x29 = (x21 + (x17 + (x14 + (x12 + x11))));
215
+ x30 = (x22 + (x18 + (x15 + (x13 + x1))));
216
+ x31 = (x23 + (x19 + (x16 + (x5 + x2))));
217
+ x32 = (x24 + (x20 + (x8 + (x6 + x3))));
218
+ x33 = (x27 + x32);
219
+ x34 = (uint64_t)(x33 >> 51);
220
+ x35 = (uint64_t)(x33 & UINT64_C(0x7ffffffffffff));
221
+ x36 = (x34 + x31);
222
+ x37 = (uint64_t)(x36 >> 51);
223
+ x38 = (uint64_t)(x36 & UINT64_C(0x7ffffffffffff));
224
+ x39 = (x37 + x30);
225
+ x40 = (uint64_t)(x39 >> 51);
226
+ x41 = (uint64_t)(x39 & UINT64_C(0x7ffffffffffff));
227
+ x42 = (x40 + x29);
228
+ x43 = (uint64_t)(x42 >> 51);
229
+ x44 = (uint64_t)(x42 & UINT64_C(0x7ffffffffffff));
230
+ x45 = (x43 * UINT8_C(0x13));
231
+ x46 = (x28 + x45);
232
+ x47 = (x46 >> 51);
233
+ x48 = (x46 & UINT64_C(0x7ffffffffffff));
234
+ x49 = (x47 + x35);
235
+ x50 = (fiat_25519_uint1)(x49 >> 51);
236
+ x51 = (x49 & UINT64_C(0x7ffffffffffff));
237
+ x52 = (x50 + x38);
155
238
  out1[0] = x48;
156
239
  out1[1] = x51;
157
240
  out1[2] = x52;
@@ -161,65 +244,112 @@ static void fiat_25519_carry_mul(uint64_t out1[5], const uint64_t arg1[5], const
161
244
 
162
245
  /*
163
246
  * The function fiat_25519_carry_square squares a field element and reduces the result.
247
+ *
164
248
  * Postconditions:
165
249
  * eval out1 mod m = (eval arg1 * eval arg1) mod m
166
250
  *
167
- * Input Bounds:
168
- * arg1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
169
- * Output Bounds:
170
- * out1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
171
251
  */
172
- static void fiat_25519_carry_square(uint64_t out1[5], const uint64_t arg1[5]) {
173
- uint64_t x1 = ((arg1[4]) * UINT8_C(0x13));
174
- uint64_t x2 = (x1 * 0x2);
175
- uint64_t x3 = ((arg1[4]) * 0x2);
176
- uint64_t x4 = ((arg1[3]) * UINT8_C(0x13));
177
- uint64_t x5 = (x4 * 0x2);
178
- uint64_t x6 = ((arg1[3]) * 0x2);
179
- uint64_t x7 = ((arg1[2]) * 0x2);
180
- uint64_t x8 = ((arg1[1]) * 0x2);
181
- fiat_25519_uint128 x9 = ((fiat_25519_uint128)(arg1[4]) * x1);
182
- fiat_25519_uint128 x10 = ((fiat_25519_uint128)(arg1[3]) * x2);
183
- fiat_25519_uint128 x11 = ((fiat_25519_uint128)(arg1[3]) * x4);
184
- fiat_25519_uint128 x12 = ((fiat_25519_uint128)(arg1[2]) * x2);
185
- fiat_25519_uint128 x13 = ((fiat_25519_uint128)(arg1[2]) * x5);
186
- fiat_25519_uint128 x14 = ((fiat_25519_uint128)(arg1[2]) * (arg1[2]));
187
- fiat_25519_uint128 x15 = ((fiat_25519_uint128)(arg1[1]) * x2);
188
- fiat_25519_uint128 x16 = ((fiat_25519_uint128)(arg1[1]) * x6);
189
- fiat_25519_uint128 x17 = ((fiat_25519_uint128)(arg1[1]) * x7);
190
- fiat_25519_uint128 x18 = ((fiat_25519_uint128)(arg1[1]) * (arg1[1]));
191
- fiat_25519_uint128 x19 = ((fiat_25519_uint128)(arg1[0]) * x3);
192
- fiat_25519_uint128 x20 = ((fiat_25519_uint128)(arg1[0]) * x6);
193
- fiat_25519_uint128 x21 = ((fiat_25519_uint128)(arg1[0]) * x7);
194
- fiat_25519_uint128 x22 = ((fiat_25519_uint128)(arg1[0]) * x8);
195
- fiat_25519_uint128 x23 = ((fiat_25519_uint128)(arg1[0]) * (arg1[0]));
196
- fiat_25519_uint128 x24 = (x23 + (x15 + x13));
197
- uint64_t x25 = (uint64_t)(x24 >> 51);
198
- uint64_t x26 = (uint64_t)(x24 & UINT64_C(0x7ffffffffffff));
199
- fiat_25519_uint128 x27 = (x19 + (x16 + x14));
200
- fiat_25519_uint128 x28 = (x20 + (x17 + x9));
201
- fiat_25519_uint128 x29 = (x21 + (x18 + x10));
202
- fiat_25519_uint128 x30 = (x22 + (x12 + x11));
203
- fiat_25519_uint128 x31 = (x25 + x30);
204
- uint64_t x32 = (uint64_t)(x31 >> 51);
205
- uint64_t x33 = (uint64_t)(x31 & UINT64_C(0x7ffffffffffff));
206
- fiat_25519_uint128 x34 = (x32 + x29);
207
- uint64_t x35 = (uint64_t)(x34 >> 51);
208
- uint64_t x36 = (uint64_t)(x34 & UINT64_C(0x7ffffffffffff));
209
- fiat_25519_uint128 x37 = (x35 + x28);
210
- uint64_t x38 = (uint64_t)(x37 >> 51);
211
- uint64_t x39 = (uint64_t)(x37 & UINT64_C(0x7ffffffffffff));
212
- fiat_25519_uint128 x40 = (x38 + x27);
213
- uint64_t x41 = (uint64_t)(x40 >> 51);
214
- uint64_t x42 = (uint64_t)(x40 & UINT64_C(0x7ffffffffffff));
215
- uint64_t x43 = (x41 * UINT8_C(0x13));
216
- uint64_t x44 = (x26 + x43);
217
- uint64_t x45 = (x44 >> 51);
218
- uint64_t x46 = (x44 & UINT64_C(0x7ffffffffffff));
219
- uint64_t x47 = (x45 + x33);
220
- fiat_25519_uint1 x48 = (fiat_25519_uint1)(x47 >> 51);
221
- uint64_t x49 = (x47 & UINT64_C(0x7ffffffffffff));
222
- uint64_t x50 = (x48 + x36);
252
+ static FIAT_25519_FIAT_INLINE void fiat_25519_carry_square(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) {
253
+ uint64_t x1;
254
+ uint64_t x2;
255
+ uint64_t x3;
256
+ uint64_t x4;
257
+ uint64_t x5;
258
+ uint64_t x6;
259
+ uint64_t x7;
260
+ uint64_t x8;
261
+ fiat_25519_uint128 x9;
262
+ fiat_25519_uint128 x10;
263
+ fiat_25519_uint128 x11;
264
+ fiat_25519_uint128 x12;
265
+ fiat_25519_uint128 x13;
266
+ fiat_25519_uint128 x14;
267
+ fiat_25519_uint128 x15;
268
+ fiat_25519_uint128 x16;
269
+ fiat_25519_uint128 x17;
270
+ fiat_25519_uint128 x18;
271
+ fiat_25519_uint128 x19;
272
+ fiat_25519_uint128 x20;
273
+ fiat_25519_uint128 x21;
274
+ fiat_25519_uint128 x22;
275
+ fiat_25519_uint128 x23;
276
+ fiat_25519_uint128 x24;
277
+ uint64_t x25;
278
+ uint64_t x26;
279
+ fiat_25519_uint128 x27;
280
+ fiat_25519_uint128 x28;
281
+ fiat_25519_uint128 x29;
282
+ fiat_25519_uint128 x30;
283
+ fiat_25519_uint128 x31;
284
+ uint64_t x32;
285
+ uint64_t x33;
286
+ fiat_25519_uint128 x34;
287
+ uint64_t x35;
288
+ uint64_t x36;
289
+ fiat_25519_uint128 x37;
290
+ uint64_t x38;
291
+ uint64_t x39;
292
+ fiat_25519_uint128 x40;
293
+ uint64_t x41;
294
+ uint64_t x42;
295
+ uint64_t x43;
296
+ uint64_t x44;
297
+ uint64_t x45;
298
+ uint64_t x46;
299
+ uint64_t x47;
300
+ fiat_25519_uint1 x48;
301
+ uint64_t x49;
302
+ uint64_t x50;
303
+ x1 = ((arg1[4]) * UINT8_C(0x13));
304
+ x2 = (x1 * 0x2);
305
+ x3 = ((arg1[4]) * 0x2);
306
+ x4 = ((arg1[3]) * UINT8_C(0x13));
307
+ x5 = (x4 * 0x2);
308
+ x6 = ((arg1[3]) * 0x2);
309
+ x7 = ((arg1[2]) * 0x2);
310
+ x8 = ((arg1[1]) * 0x2);
311
+ x9 = ((fiat_25519_uint128)(arg1[4]) * x1);
312
+ x10 = ((fiat_25519_uint128)(arg1[3]) * x2);
313
+ x11 = ((fiat_25519_uint128)(arg1[3]) * x4);
314
+ x12 = ((fiat_25519_uint128)(arg1[2]) * x2);
315
+ x13 = ((fiat_25519_uint128)(arg1[2]) * x5);
316
+ x14 = ((fiat_25519_uint128)(arg1[2]) * (arg1[2]));
317
+ x15 = ((fiat_25519_uint128)(arg1[1]) * x2);
318
+ x16 = ((fiat_25519_uint128)(arg1[1]) * x6);
319
+ x17 = ((fiat_25519_uint128)(arg1[1]) * x7);
320
+ x18 = ((fiat_25519_uint128)(arg1[1]) * (arg1[1]));
321
+ x19 = ((fiat_25519_uint128)(arg1[0]) * x3);
322
+ x20 = ((fiat_25519_uint128)(arg1[0]) * x6);
323
+ x21 = ((fiat_25519_uint128)(arg1[0]) * x7);
324
+ x22 = ((fiat_25519_uint128)(arg1[0]) * x8);
325
+ x23 = ((fiat_25519_uint128)(arg1[0]) * (arg1[0]));
326
+ x24 = (x23 + (x15 + x13));
327
+ x25 = (uint64_t)(x24 >> 51);
328
+ x26 = (uint64_t)(x24 & UINT64_C(0x7ffffffffffff));
329
+ x27 = (x19 + (x16 + x14));
330
+ x28 = (x20 + (x17 + x9));
331
+ x29 = (x21 + (x18 + x10));
332
+ x30 = (x22 + (x12 + x11));
333
+ x31 = (x25 + x30);
334
+ x32 = (uint64_t)(x31 >> 51);
335
+ x33 = (uint64_t)(x31 & UINT64_C(0x7ffffffffffff));
336
+ x34 = (x32 + x29);
337
+ x35 = (uint64_t)(x34 >> 51);
338
+ x36 = (uint64_t)(x34 & UINT64_C(0x7ffffffffffff));
339
+ x37 = (x35 + x28);
340
+ x38 = (uint64_t)(x37 >> 51);
341
+ x39 = (uint64_t)(x37 & UINT64_C(0x7ffffffffffff));
342
+ x40 = (x38 + x27);
343
+ x41 = (uint64_t)(x40 >> 51);
344
+ x42 = (uint64_t)(x40 & UINT64_C(0x7ffffffffffff));
345
+ x43 = (x41 * UINT8_C(0x13));
346
+ x44 = (x26 + x43);
347
+ x45 = (x44 >> 51);
348
+ x46 = (x44 & UINT64_C(0x7ffffffffffff));
349
+ x47 = (x45 + x33);
350
+ x48 = (fiat_25519_uint1)(x47 >> 51);
351
+ x49 = (x47 & UINT64_C(0x7ffffffffffff));
352
+ x50 = (x48 + x36);
223
353
  out1[0] = x46;
224
354
  out1[1] = x49;
225
355
  out1[2] = x50;
@@ -229,27 +359,36 @@ static void fiat_25519_carry_square(uint64_t out1[5], const uint64_t arg1[5]) {
229
359
 
230
360
  /*
231
361
  * The function fiat_25519_carry reduces a field element.
362
+ *
232
363
  * Postconditions:
233
364
  * eval out1 mod m = eval arg1 mod m
234
365
  *
235
- * Input Bounds:
236
- * arg1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
237
- * Output Bounds:
238
- * out1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
239
366
  */
240
- static void fiat_25519_carry(uint64_t out1[5], const uint64_t arg1[5]) {
241
- uint64_t x1 = (arg1[0]);
242
- uint64_t x2 = ((x1 >> 51) + (arg1[1]));
243
- uint64_t x3 = ((x2 >> 51) + (arg1[2]));
244
- uint64_t x4 = ((x3 >> 51) + (arg1[3]));
245
- uint64_t x5 = ((x4 >> 51) + (arg1[4]));
246
- uint64_t x6 = ((x1 & UINT64_C(0x7ffffffffffff)) + ((x5 >> 51) * UINT8_C(0x13)));
247
- uint64_t x7 = ((fiat_25519_uint1)(x6 >> 51) + (x2 & UINT64_C(0x7ffffffffffff)));
248
- uint64_t x8 = (x6 & UINT64_C(0x7ffffffffffff));
249
- uint64_t x9 = (x7 & UINT64_C(0x7ffffffffffff));
250
- uint64_t x10 = ((fiat_25519_uint1)(x7 >> 51) + (x3 & UINT64_C(0x7ffffffffffff)));
251
- uint64_t x11 = (x4 & UINT64_C(0x7ffffffffffff));
252
- uint64_t x12 = (x5 & UINT64_C(0x7ffffffffffff));
367
+ static FIAT_25519_FIAT_INLINE void fiat_25519_carry(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) {
368
+ uint64_t x1;
369
+ uint64_t x2;
370
+ uint64_t x3;
371
+ uint64_t x4;
372
+ uint64_t x5;
373
+ uint64_t x6;
374
+ uint64_t x7;
375
+ uint64_t x8;
376
+ uint64_t x9;
377
+ uint64_t x10;
378
+ uint64_t x11;
379
+ uint64_t x12;
380
+ x1 = (arg1[0]);
381
+ x2 = ((x1 >> 51) + (arg1[1]));
382
+ x3 = ((x2 >> 51) + (arg1[2]));
383
+ x4 = ((x3 >> 51) + (arg1[3]));
384
+ x5 = ((x4 >> 51) + (arg1[4]));
385
+ x6 = ((x1 & UINT64_C(0x7ffffffffffff)) + ((x5 >> 51) * UINT8_C(0x13)));
386
+ x7 = ((fiat_25519_uint1)(x6 >> 51) + (x2 & UINT64_C(0x7ffffffffffff)));
387
+ x8 = (x6 & UINT64_C(0x7ffffffffffff));
388
+ x9 = (x7 & UINT64_C(0x7ffffffffffff));
389
+ x10 = ((fiat_25519_uint1)(x7 >> 51) + (x3 & UINT64_C(0x7ffffffffffff)));
390
+ x11 = (x4 & UINT64_C(0x7ffffffffffff));
391
+ x12 = (x5 & UINT64_C(0x7ffffffffffff));
253
392
  out1[0] = x8;
254
393
  out1[1] = x9;
255
394
  out1[2] = x10;
@@ -259,21 +398,22 @@ static void fiat_25519_carry(uint64_t out1[5], const uint64_t arg1[5]) {
259
398
 
260
399
  /*
261
400
  * The function fiat_25519_add adds two field elements.
401
+ *
262
402
  * Postconditions:
263
403
  * eval out1 mod m = (eval arg1 + eval arg2) mod m
264
404
  *
265
- * Input Bounds:
266
- * arg1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
267
- * arg2: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
268
- * Output Bounds:
269
- * out1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
270
405
  */
271
- static void fiat_25519_add(uint64_t out1[5], const uint64_t arg1[5], const uint64_t arg2[5]) {
272
- uint64_t x1 = ((arg1[0]) + (arg2[0]));
273
- uint64_t x2 = ((arg1[1]) + (arg2[1]));
274
- uint64_t x3 = ((arg1[2]) + (arg2[2]));
275
- uint64_t x4 = ((arg1[3]) + (arg2[3]));
276
- uint64_t x5 = ((arg1[4]) + (arg2[4]));
406
+ static FIAT_25519_FIAT_INLINE void fiat_25519_add(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1, const fiat_25519_tight_field_element arg2) {
407
+ uint64_t x1;
408
+ uint64_t x2;
409
+ uint64_t x3;
410
+ uint64_t x4;
411
+ uint64_t x5;
412
+ x1 = ((arg1[0]) + (arg2[0]));
413
+ x2 = ((arg1[1]) + (arg2[1]));
414
+ x3 = ((arg1[2]) + (arg2[2]));
415
+ x4 = ((arg1[3]) + (arg2[3]));
416
+ x5 = ((arg1[4]) + (arg2[4]));
277
417
  out1[0] = x1;
278
418
  out1[1] = x2;
279
419
  out1[2] = x3;
@@ -283,21 +423,22 @@ static void fiat_25519_add(uint64_t out1[5], const uint64_t arg1[5], const uint6
283
423
 
284
424
  /*
285
425
  * The function fiat_25519_sub subtracts two field elements.
426
+ *
286
427
  * Postconditions:
287
428
  * eval out1 mod m = (eval arg1 - eval arg2) mod m
288
429
  *
289
- * Input Bounds:
290
- * arg1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
291
- * arg2: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
292
- * Output Bounds:
293
- * out1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
294
430
  */
295
- static void fiat_25519_sub(uint64_t out1[5], const uint64_t arg1[5], const uint64_t arg2[5]) {
296
- uint64_t x1 = ((UINT64_C(0xfffffffffffda) + (arg1[0])) - (arg2[0]));
297
- uint64_t x2 = ((UINT64_C(0xffffffffffffe) + (arg1[1])) - (arg2[1]));
298
- uint64_t x3 = ((UINT64_C(0xffffffffffffe) + (arg1[2])) - (arg2[2]));
299
- uint64_t x4 = ((UINT64_C(0xffffffffffffe) + (arg1[3])) - (arg2[3]));
300
- uint64_t x5 = ((UINT64_C(0xffffffffffffe) + (arg1[4])) - (arg2[4]));
431
+ static FIAT_25519_FIAT_INLINE void fiat_25519_sub(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1, const fiat_25519_tight_field_element arg2) {
432
+ uint64_t x1;
433
+ uint64_t x2;
434
+ uint64_t x3;
435
+ uint64_t x4;
436
+ uint64_t x5;
437
+ x1 = ((UINT64_C(0xfffffffffffda) + (arg1[0])) - (arg2[0]));
438
+ x2 = ((UINT64_C(0xffffffffffffe) + (arg1[1])) - (arg2[1]));
439
+ x3 = ((UINT64_C(0xffffffffffffe) + (arg1[2])) - (arg2[2]));
440
+ x4 = ((UINT64_C(0xffffffffffffe) + (arg1[3])) - (arg2[3]));
441
+ x5 = ((UINT64_C(0xffffffffffffe) + (arg1[4])) - (arg2[4]));
301
442
  out1[0] = x1;
302
443
  out1[1] = x2;
303
444
  out1[2] = x3;
@@ -307,20 +448,22 @@ static void fiat_25519_sub(uint64_t out1[5], const uint64_t arg1[5], const uint6
307
448
 
308
449
  /*
309
450
  * The function fiat_25519_opp negates a field element.
451
+ *
310
452
  * Postconditions:
311
453
  * eval out1 mod m = -eval arg1 mod m
312
454
  *
313
- * Input Bounds:
314
- * arg1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
315
- * Output Bounds:
316
- * out1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
317
455
  */
318
- static void fiat_25519_opp(uint64_t out1[5], const uint64_t arg1[5]) {
319
- uint64_t x1 = (UINT64_C(0xfffffffffffda) - (arg1[0]));
320
- uint64_t x2 = (UINT64_C(0xffffffffffffe) - (arg1[1]));
321
- uint64_t x3 = (UINT64_C(0xffffffffffffe) - (arg1[2]));
322
- uint64_t x4 = (UINT64_C(0xffffffffffffe) - (arg1[3]));
323
- uint64_t x5 = (UINT64_C(0xffffffffffffe) - (arg1[4]));
456
+ static FIAT_25519_FIAT_INLINE void fiat_25519_opp(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1) {
457
+ uint64_t x1;
458
+ uint64_t x2;
459
+ uint64_t x3;
460
+ uint64_t x4;
461
+ uint64_t x5;
462
+ x1 = (UINT64_C(0xfffffffffffda) - (arg1[0]));
463
+ x2 = (UINT64_C(0xffffffffffffe) - (arg1[1]));
464
+ x3 = (UINT64_C(0xffffffffffffe) - (arg1[2]));
465
+ x4 = (UINT64_C(0xffffffffffffe) - (arg1[3]));
466
+ x5 = (UINT64_C(0xffffffffffffe) - (arg1[4]));
324
467
  out1[0] = x1;
325
468
  out1[1] = x2;
326
469
  out1[2] = x3;
@@ -330,6 +473,7 @@ static void fiat_25519_opp(uint64_t out1[5], const uint64_t arg1[5]) {
330
473
 
331
474
  /*
332
475
  * The function fiat_25519_selectznz is a multi-limb conditional select.
476
+ *
333
477
  * Postconditions:
334
478
  * eval out1 = (if arg1 = 0 then eval arg2 else eval arg3)
335
479
  *
@@ -340,16 +484,16 @@ static void fiat_25519_opp(uint64_t out1[5], const uint64_t arg1[5]) {
340
484
  * Output Bounds:
341
485
  * out1: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
342
486
  */
343
- static void fiat_25519_selectznz(uint64_t out1[5], fiat_25519_uint1 arg1, const uint64_t arg2[5], const uint64_t arg3[5]) {
487
+ static FIAT_25519_FIAT_INLINE void fiat_25519_selectznz(uint64_t out1[5], fiat_25519_uint1 arg1, const uint64_t arg2[5], const uint64_t arg3[5]) {
344
488
  uint64_t x1;
345
- fiat_25519_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0]));
346
489
  uint64_t x2;
347
- fiat_25519_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1]));
348
490
  uint64_t x3;
349
- fiat_25519_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2]));
350
491
  uint64_t x4;
351
- fiat_25519_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3]));
352
492
  uint64_t x5;
493
+ fiat_25519_cmovznz_u64(&x1, arg1, (arg2[0]), (arg3[0]));
494
+ fiat_25519_cmovznz_u64(&x2, arg1, (arg2[1]), (arg3[1]));
495
+ fiat_25519_cmovznz_u64(&x3, arg1, (arg2[2]), (arg3[2]));
496
+ fiat_25519_cmovznz_u64(&x4, arg1, (arg2[3]), (arg3[3]));
353
497
  fiat_25519_cmovznz_u64(&x5, arg1, (arg2[4]), (arg3[4]));
354
498
  out1[0] = x1;
355
499
  out1[1] = x2;
@@ -360,260 +504,469 @@ static void fiat_25519_selectznz(uint64_t out1[5], fiat_25519_uint1 arg1, const
360
504
 
361
505
  /*
362
506
  * The function fiat_25519_to_bytes serializes a field element to bytes in little-endian order.
507
+ *
363
508
  * Postconditions:
364
509
  * out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..31]
365
510
  *
366
- * Input Bounds:
367
- * arg1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
368
511
  * Output Bounds:
369
512
  * out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]]
370
513
  */
371
- static void fiat_25519_to_bytes(uint8_t out1[32], const uint64_t arg1[5]) {
514
+ static FIAT_25519_FIAT_INLINE void fiat_25519_to_bytes(uint8_t out1[32], const fiat_25519_tight_field_element arg1) {
372
515
  uint64_t x1;
373
516
  fiat_25519_uint1 x2;
374
- fiat_25519_subborrowx_u51(&x1, &x2, 0x0, (arg1[0]), UINT64_C(0x7ffffffffffed));
375
517
  uint64_t x3;
376
518
  fiat_25519_uint1 x4;
377
- fiat_25519_subborrowx_u51(&x3, &x4, x2, (arg1[1]), UINT64_C(0x7ffffffffffff));
378
519
  uint64_t x5;
379
520
  fiat_25519_uint1 x6;
380
- fiat_25519_subborrowx_u51(&x5, &x6, x4, (arg1[2]), UINT64_C(0x7ffffffffffff));
381
521
  uint64_t x7;
382
522
  fiat_25519_uint1 x8;
383
- fiat_25519_subborrowx_u51(&x7, &x8, x6, (arg1[3]), UINT64_C(0x7ffffffffffff));
384
523
  uint64_t x9;
385
524
  fiat_25519_uint1 x10;
386
- fiat_25519_subborrowx_u51(&x9, &x10, x8, (arg1[4]), UINT64_C(0x7ffffffffffff));
387
525
  uint64_t x11;
388
- fiat_25519_cmovznz_u64(&x11, x10, 0x0, UINT64_C(0xffffffffffffffff));
389
526
  uint64_t x12;
390
527
  fiat_25519_uint1 x13;
391
- fiat_25519_addcarryx_u51(&x12, &x13, 0x0, x1, (x11 & UINT64_C(0x7ffffffffffed)));
392
528
  uint64_t x14;
393
529
  fiat_25519_uint1 x15;
394
- fiat_25519_addcarryx_u51(&x14, &x15, x13, x3, (x11 & UINT64_C(0x7ffffffffffff)));
395
530
  uint64_t x16;
396
531
  fiat_25519_uint1 x17;
397
- fiat_25519_addcarryx_u51(&x16, &x17, x15, x5, (x11 & UINT64_C(0x7ffffffffffff)));
398
532
  uint64_t x18;
399
533
  fiat_25519_uint1 x19;
400
- fiat_25519_addcarryx_u51(&x18, &x19, x17, x7, (x11 & UINT64_C(0x7ffffffffffff)));
401
534
  uint64_t x20;
402
535
  fiat_25519_uint1 x21;
536
+ uint64_t x22;
537
+ uint64_t x23;
538
+ uint64_t x24;
539
+ uint64_t x25;
540
+ uint8_t x26;
541
+ uint64_t x27;
542
+ uint8_t x28;
543
+ uint64_t x29;
544
+ uint8_t x30;
545
+ uint64_t x31;
546
+ uint8_t x32;
547
+ uint64_t x33;
548
+ uint8_t x34;
549
+ uint64_t x35;
550
+ uint8_t x36;
551
+ uint8_t x37;
552
+ uint64_t x38;
553
+ uint8_t x39;
554
+ uint64_t x40;
555
+ uint8_t x41;
556
+ uint64_t x42;
557
+ uint8_t x43;
558
+ uint64_t x44;
559
+ uint8_t x45;
560
+ uint64_t x46;
561
+ uint8_t x47;
562
+ uint64_t x48;
563
+ uint8_t x49;
564
+ uint8_t x50;
565
+ uint64_t x51;
566
+ uint8_t x52;
567
+ uint64_t x53;
568
+ uint8_t x54;
569
+ uint64_t x55;
570
+ uint8_t x56;
571
+ uint64_t x57;
572
+ uint8_t x58;
573
+ uint64_t x59;
574
+ uint8_t x60;
575
+ uint64_t x61;
576
+ uint8_t x62;
577
+ uint64_t x63;
578
+ uint8_t x64;
579
+ fiat_25519_uint1 x65;
580
+ uint64_t x66;
581
+ uint8_t x67;
582
+ uint64_t x68;
583
+ uint8_t x69;
584
+ uint64_t x70;
585
+ uint8_t x71;
586
+ uint64_t x72;
587
+ uint8_t x73;
588
+ uint64_t x74;
589
+ uint8_t x75;
590
+ uint64_t x76;
591
+ uint8_t x77;
592
+ uint8_t x78;
593
+ uint64_t x79;
594
+ uint8_t x80;
595
+ uint64_t x81;
596
+ uint8_t x82;
597
+ uint64_t x83;
598
+ uint8_t x84;
599
+ uint64_t x85;
600
+ uint8_t x86;
601
+ uint64_t x87;
602
+ uint8_t x88;
603
+ uint64_t x89;
604
+ uint8_t x90;
605
+ uint8_t x91;
606
+ fiat_25519_subborrowx_u51(&x1, &x2, 0x0, (arg1[0]), UINT64_C(0x7ffffffffffed));
607
+ fiat_25519_subborrowx_u51(&x3, &x4, x2, (arg1[1]), UINT64_C(0x7ffffffffffff));
608
+ fiat_25519_subborrowx_u51(&x5, &x6, x4, (arg1[2]), UINT64_C(0x7ffffffffffff));
609
+ fiat_25519_subborrowx_u51(&x7, &x8, x6, (arg1[3]), UINT64_C(0x7ffffffffffff));
610
+ fiat_25519_subborrowx_u51(&x9, &x10, x8, (arg1[4]), UINT64_C(0x7ffffffffffff));
611
+ fiat_25519_cmovznz_u64(&x11, x10, 0x0, UINT64_C(0xffffffffffffffff));
612
+ fiat_25519_addcarryx_u51(&x12, &x13, 0x0, x1, (x11 & UINT64_C(0x7ffffffffffed)));
613
+ fiat_25519_addcarryx_u51(&x14, &x15, x13, x3, (x11 & UINT64_C(0x7ffffffffffff)));
614
+ fiat_25519_addcarryx_u51(&x16, &x17, x15, x5, (x11 & UINT64_C(0x7ffffffffffff)));
615
+ fiat_25519_addcarryx_u51(&x18, &x19, x17, x7, (x11 & UINT64_C(0x7ffffffffffff)));
403
616
  fiat_25519_addcarryx_u51(&x20, &x21, x19, x9, (x11 & UINT64_C(0x7ffffffffffff)));
404
- uint64_t x22 = (x20 << 4);
405
- uint64_t x23 = (x18 * (uint64_t)0x2);
406
- uint64_t x24 = (x16 << 6);
407
- uint64_t x25 = (x14 << 3);
408
- uint64_t x26 = (x12 >> 8);
409
- uint8_t x27 = (uint8_t)(x12 & UINT8_C(0xff));
410
- uint64_t x28 = (x26 >> 8);
411
- uint8_t x29 = (uint8_t)(x26 & UINT8_C(0xff));
412
- uint64_t x30 = (x28 >> 8);
413
- uint8_t x31 = (uint8_t)(x28 & UINT8_C(0xff));
414
- uint64_t x32 = (x30 >> 8);
415
- uint8_t x33 = (uint8_t)(x30 & UINT8_C(0xff));
416
- uint64_t x34 = (x32 >> 8);
417
- uint8_t x35 = (uint8_t)(x32 & UINT8_C(0xff));
418
- uint8_t x36 = (uint8_t)(x34 >> 8);
419
- uint8_t x37 = (uint8_t)(x34 & UINT8_C(0xff));
420
- uint64_t x38 = (x36 + x25);
421
- uint64_t x39 = (x38 >> 8);
422
- uint8_t x40 = (uint8_t)(x38 & UINT8_C(0xff));
423
- uint64_t x41 = (x39 >> 8);
424
- uint8_t x42 = (uint8_t)(x39 & UINT8_C(0xff));
425
- uint64_t x43 = (x41 >> 8);
426
- uint8_t x44 = (uint8_t)(x41 & UINT8_C(0xff));
427
- uint64_t x45 = (x43 >> 8);
428
- uint8_t x46 = (uint8_t)(x43 & UINT8_C(0xff));
429
- uint64_t x47 = (x45 >> 8);
430
- uint8_t x48 = (uint8_t)(x45 & UINT8_C(0xff));
431
- uint8_t x49 = (uint8_t)(x47 >> 8);
432
- uint8_t x50 = (uint8_t)(x47 & UINT8_C(0xff));
433
- uint64_t x51 = (x49 + x24);
434
- uint64_t x52 = (x51 >> 8);
435
- uint8_t x53 = (uint8_t)(x51 & UINT8_C(0xff));
436
- uint64_t x54 = (x52 >> 8);
437
- uint8_t x55 = (uint8_t)(x52 & UINT8_C(0xff));
438
- uint64_t x56 = (x54 >> 8);
439
- uint8_t x57 = (uint8_t)(x54 & UINT8_C(0xff));
440
- uint64_t x58 = (x56 >> 8);
441
- uint8_t x59 = (uint8_t)(x56 & UINT8_C(0xff));
442
- uint64_t x60 = (x58 >> 8);
443
- uint8_t x61 = (uint8_t)(x58 & UINT8_C(0xff));
444
- uint64_t x62 = (x60 >> 8);
445
- uint8_t x63 = (uint8_t)(x60 & UINT8_C(0xff));
446
- fiat_25519_uint1 x64 = (fiat_25519_uint1)(x62 >> 8);
447
- uint8_t x65 = (uint8_t)(x62 & UINT8_C(0xff));
448
- uint64_t x66 = (x64 + x23);
449
- uint64_t x67 = (x66 >> 8);
450
- uint8_t x68 = (uint8_t)(x66 & UINT8_C(0xff));
451
- uint64_t x69 = (x67 >> 8);
452
- uint8_t x70 = (uint8_t)(x67 & UINT8_C(0xff));
453
- uint64_t x71 = (x69 >> 8);
454
- uint8_t x72 = (uint8_t)(x69 & UINT8_C(0xff));
455
- uint64_t x73 = (x71 >> 8);
456
- uint8_t x74 = (uint8_t)(x71 & UINT8_C(0xff));
457
- uint64_t x75 = (x73 >> 8);
458
- uint8_t x76 = (uint8_t)(x73 & UINT8_C(0xff));
459
- uint8_t x77 = (uint8_t)(x75 >> 8);
460
- uint8_t x78 = (uint8_t)(x75 & UINT8_C(0xff));
461
- uint64_t x79 = (x77 + x22);
462
- uint64_t x80 = (x79 >> 8);
463
- uint8_t x81 = (uint8_t)(x79 & UINT8_C(0xff));
464
- uint64_t x82 = (x80 >> 8);
465
- uint8_t x83 = (uint8_t)(x80 & UINT8_C(0xff));
466
- uint64_t x84 = (x82 >> 8);
467
- uint8_t x85 = (uint8_t)(x82 & UINT8_C(0xff));
468
- uint64_t x86 = (x84 >> 8);
469
- uint8_t x87 = (uint8_t)(x84 & UINT8_C(0xff));
470
- uint64_t x88 = (x86 >> 8);
471
- uint8_t x89 = (uint8_t)(x86 & UINT8_C(0xff));
472
- uint8_t x90 = (uint8_t)(x88 >> 8);
473
- uint8_t x91 = (uint8_t)(x88 & UINT8_C(0xff));
474
- out1[0] = x27;
475
- out1[1] = x29;
476
- out1[2] = x31;
477
- out1[3] = x33;
478
- out1[4] = x35;
479
- out1[5] = x37;
480
- out1[6] = x40;
481
- out1[7] = x42;
482
- out1[8] = x44;
483
- out1[9] = x46;
484
- out1[10] = x48;
485
- out1[11] = x50;
486
- out1[12] = x53;
487
- out1[13] = x55;
488
- out1[14] = x57;
489
- out1[15] = x59;
490
- out1[16] = x61;
491
- out1[17] = x63;
492
- out1[18] = x65;
493
- out1[19] = x68;
494
- out1[20] = x70;
495
- out1[21] = x72;
496
- out1[22] = x74;
497
- out1[23] = x76;
498
- out1[24] = x78;
499
- out1[25] = x81;
500
- out1[26] = x83;
501
- out1[27] = x85;
502
- out1[28] = x87;
503
- out1[29] = x89;
504
- out1[30] = x91;
505
- out1[31] = x90;
617
+ x22 = (x20 << 4);
618
+ x23 = (x18 * (uint64_t)0x2);
619
+ x24 = (x16 << 6);
620
+ x25 = (x14 << 3);
621
+ x26 = (uint8_t)(x12 & UINT8_C(0xff));
622
+ x27 = (x12 >> 8);
623
+ x28 = (uint8_t)(x27 & UINT8_C(0xff));
624
+ x29 = (x27 >> 8);
625
+ x30 = (uint8_t)(x29 & UINT8_C(0xff));
626
+ x31 = (x29 >> 8);
627
+ x32 = (uint8_t)(x31 & UINT8_C(0xff));
628
+ x33 = (x31 >> 8);
629
+ x34 = (uint8_t)(x33 & UINT8_C(0xff));
630
+ x35 = (x33 >> 8);
631
+ x36 = (uint8_t)(x35 & UINT8_C(0xff));
632
+ x37 = (uint8_t)(x35 >> 8);
633
+ x38 = (x25 + (uint64_t)x37);
634
+ x39 = (uint8_t)(x38 & UINT8_C(0xff));
635
+ x40 = (x38 >> 8);
636
+ x41 = (uint8_t)(x40 & UINT8_C(0xff));
637
+ x42 = (x40 >> 8);
638
+ x43 = (uint8_t)(x42 & UINT8_C(0xff));
639
+ x44 = (x42 >> 8);
640
+ x45 = (uint8_t)(x44 & UINT8_C(0xff));
641
+ x46 = (x44 >> 8);
642
+ x47 = (uint8_t)(x46 & UINT8_C(0xff));
643
+ x48 = (x46 >> 8);
644
+ x49 = (uint8_t)(x48 & UINT8_C(0xff));
645
+ x50 = (uint8_t)(x48 >> 8);
646
+ x51 = (x24 + (uint64_t)x50);
647
+ x52 = (uint8_t)(x51 & UINT8_C(0xff));
648
+ x53 = (x51 >> 8);
649
+ x54 = (uint8_t)(x53 & UINT8_C(0xff));
650
+ x55 = (x53 >> 8);
651
+ x56 = (uint8_t)(x55 & UINT8_C(0xff));
652
+ x57 = (x55 >> 8);
653
+ x58 = (uint8_t)(x57 & UINT8_C(0xff));
654
+ x59 = (x57 >> 8);
655
+ x60 = (uint8_t)(x59 & UINT8_C(0xff));
656
+ x61 = (x59 >> 8);
657
+ x62 = (uint8_t)(x61 & UINT8_C(0xff));
658
+ x63 = (x61 >> 8);
659
+ x64 = (uint8_t)(x63 & UINT8_C(0xff));
660
+ x65 = (fiat_25519_uint1)(x63 >> 8);
661
+ x66 = (x23 + (uint64_t)x65);
662
+ x67 = (uint8_t)(x66 & UINT8_C(0xff));
663
+ x68 = (x66 >> 8);
664
+ x69 = (uint8_t)(x68 & UINT8_C(0xff));
665
+ x70 = (x68 >> 8);
666
+ x71 = (uint8_t)(x70 & UINT8_C(0xff));
667
+ x72 = (x70 >> 8);
668
+ x73 = (uint8_t)(x72 & UINT8_C(0xff));
669
+ x74 = (x72 >> 8);
670
+ x75 = (uint8_t)(x74 & UINT8_C(0xff));
671
+ x76 = (x74 >> 8);
672
+ x77 = (uint8_t)(x76 & UINT8_C(0xff));
673
+ x78 = (uint8_t)(x76 >> 8);
674
+ x79 = (x22 + (uint64_t)x78);
675
+ x80 = (uint8_t)(x79 & UINT8_C(0xff));
676
+ x81 = (x79 >> 8);
677
+ x82 = (uint8_t)(x81 & UINT8_C(0xff));
678
+ x83 = (x81 >> 8);
679
+ x84 = (uint8_t)(x83 & UINT8_C(0xff));
680
+ x85 = (x83 >> 8);
681
+ x86 = (uint8_t)(x85 & UINT8_C(0xff));
682
+ x87 = (x85 >> 8);
683
+ x88 = (uint8_t)(x87 & UINT8_C(0xff));
684
+ x89 = (x87 >> 8);
685
+ x90 = (uint8_t)(x89 & UINT8_C(0xff));
686
+ x91 = (uint8_t)(x89 >> 8);
687
+ out1[0] = x26;
688
+ out1[1] = x28;
689
+ out1[2] = x30;
690
+ out1[3] = x32;
691
+ out1[4] = x34;
692
+ out1[5] = x36;
693
+ out1[6] = x39;
694
+ out1[7] = x41;
695
+ out1[8] = x43;
696
+ out1[9] = x45;
697
+ out1[10] = x47;
698
+ out1[11] = x49;
699
+ out1[12] = x52;
700
+ out1[13] = x54;
701
+ out1[14] = x56;
702
+ out1[15] = x58;
703
+ out1[16] = x60;
704
+ out1[17] = x62;
705
+ out1[18] = x64;
706
+ out1[19] = x67;
707
+ out1[20] = x69;
708
+ out1[21] = x71;
709
+ out1[22] = x73;
710
+ out1[23] = x75;
711
+ out1[24] = x77;
712
+ out1[25] = x80;
713
+ out1[26] = x82;
714
+ out1[27] = x84;
715
+ out1[28] = x86;
716
+ out1[29] = x88;
717
+ out1[30] = x90;
718
+ out1[31] = x91;
506
719
  }
507
720
 
508
721
  /*
509
722
  * The function fiat_25519_from_bytes deserializes a field element from bytes in little-endian order.
723
+ *
510
724
  * Postconditions:
511
725
  * eval out1 mod m = bytes_eval arg1 mod m
512
726
  *
513
727
  * Input Bounds:
514
728
  * arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0x7f]]
515
- * Output Bounds:
516
- * out1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
517
729
  */
518
- static void fiat_25519_from_bytes(uint64_t out1[5], const uint8_t arg1[32]) {
519
- uint64_t x1 = ((uint64_t)(arg1[31]) << 44);
520
- uint64_t x2 = ((uint64_t)(arg1[30]) << 36);
521
- uint64_t x3 = ((uint64_t)(arg1[29]) << 28);
522
- uint64_t x4 = ((uint64_t)(arg1[28]) << 20);
523
- uint64_t x5 = ((uint64_t)(arg1[27]) << 12);
524
- uint64_t x6 = ((uint64_t)(arg1[26]) << 4);
525
- uint64_t x7 = ((uint64_t)(arg1[25]) << 47);
526
- uint64_t x8 = ((uint64_t)(arg1[24]) << 39);
527
- uint64_t x9 = ((uint64_t)(arg1[23]) << 31);
528
- uint64_t x10 = ((uint64_t)(arg1[22]) << 23);
529
- uint64_t x11 = ((uint64_t)(arg1[21]) << 15);
530
- uint64_t x12 = ((uint64_t)(arg1[20]) << 7);
531
- uint64_t x13 = ((uint64_t)(arg1[19]) << 50);
532
- uint64_t x14 = ((uint64_t)(arg1[18]) << 42);
533
- uint64_t x15 = ((uint64_t)(arg1[17]) << 34);
534
- uint64_t x16 = ((uint64_t)(arg1[16]) << 26);
535
- uint64_t x17 = ((uint64_t)(arg1[15]) << 18);
536
- uint64_t x18 = ((uint64_t)(arg1[14]) << 10);
537
- uint64_t x19 = ((uint64_t)(arg1[13]) << 2);
538
- uint64_t x20 = ((uint64_t)(arg1[12]) << 45);
539
- uint64_t x21 = ((uint64_t)(arg1[11]) << 37);
540
- uint64_t x22 = ((uint64_t)(arg1[10]) << 29);
541
- uint64_t x23 = ((uint64_t)(arg1[9]) << 21);
542
- uint64_t x24 = ((uint64_t)(arg1[8]) << 13);
543
- uint64_t x25 = ((uint64_t)(arg1[7]) << 5);
544
- uint64_t x26 = ((uint64_t)(arg1[6]) << 48);
545
- uint64_t x27 = ((uint64_t)(arg1[5]) << 40);
546
- uint64_t x28 = ((uint64_t)(arg1[4]) << 32);
547
- uint64_t x29 = ((uint64_t)(arg1[3]) << 24);
548
- uint64_t x30 = ((uint64_t)(arg1[2]) << 16);
549
- uint64_t x31 = ((uint64_t)(arg1[1]) << 8);
550
- uint8_t x32 = (arg1[0]);
551
- uint64_t x33 = (x32 + (x31 + (x30 + (x29 + (x28 + (x27 + x26))))));
552
- uint8_t x34 = (uint8_t)(x33 >> 51);
553
- uint64_t x35 = (x33 & UINT64_C(0x7ffffffffffff));
554
- uint64_t x36 = (x6 + (x5 + (x4 + (x3 + (x2 + x1)))));
555
- uint64_t x37 = (x12 + (x11 + (x10 + (x9 + (x8 + x7)))));
556
- uint64_t x38 = (x19 + (x18 + (x17 + (x16 + (x15 + (x14 + x13))))));
557
- uint64_t x39 = (x25 + (x24 + (x23 + (x22 + (x21 + x20)))));
558
- uint64_t x40 = (x34 + x39);
559
- uint8_t x41 = (uint8_t)(x40 >> 51);
560
- uint64_t x42 = (x40 & UINT64_C(0x7ffffffffffff));
561
- uint64_t x43 = (x41 + x38);
562
- uint8_t x44 = (uint8_t)(x43 >> 51);
563
- uint64_t x45 = (x43 & UINT64_C(0x7ffffffffffff));
564
- uint64_t x46 = (x44 + x37);
565
- uint8_t x47 = (uint8_t)(x46 >> 51);
566
- uint64_t x48 = (x46 & UINT64_C(0x7ffffffffffff));
567
- uint64_t x49 = (x47 + x36);
568
- out1[0] = x35;
569
- out1[1] = x42;
570
- out1[2] = x45;
571
- out1[3] = x48;
572
- out1[4] = x49;
730
+ static FIAT_25519_FIAT_INLINE void fiat_25519_from_bytes(fiat_25519_tight_field_element out1, const uint8_t arg1[32]) {
731
+ uint64_t x1;
732
+ uint64_t x2;
733
+ uint64_t x3;
734
+ uint64_t x4;
735
+ uint64_t x5;
736
+ uint64_t x6;
737
+ uint64_t x7;
738
+ uint64_t x8;
739
+ uint64_t x9;
740
+ uint64_t x10;
741
+ uint64_t x11;
742
+ uint64_t x12;
743
+ uint64_t x13;
744
+ uint64_t x14;
745
+ uint64_t x15;
746
+ uint64_t x16;
747
+ uint64_t x17;
748
+ uint64_t x18;
749
+ uint64_t x19;
750
+ uint64_t x20;
751
+ uint64_t x21;
752
+ uint64_t x22;
753
+ uint64_t x23;
754
+ uint64_t x24;
755
+ uint64_t x25;
756
+ uint64_t x26;
757
+ uint64_t x27;
758
+ uint64_t x28;
759
+ uint64_t x29;
760
+ uint64_t x30;
761
+ uint64_t x31;
762
+ uint8_t x32;
763
+ uint64_t x33;
764
+ uint64_t x34;
765
+ uint64_t x35;
766
+ uint64_t x36;
767
+ uint64_t x37;
768
+ uint64_t x38;
769
+ uint64_t x39;
770
+ uint8_t x40;
771
+ uint64_t x41;
772
+ uint64_t x42;
773
+ uint64_t x43;
774
+ uint64_t x44;
775
+ uint64_t x45;
776
+ uint64_t x46;
777
+ uint64_t x47;
778
+ uint8_t x48;
779
+ uint64_t x49;
780
+ uint64_t x50;
781
+ uint64_t x51;
782
+ uint64_t x52;
783
+ uint64_t x53;
784
+ uint64_t x54;
785
+ uint64_t x55;
786
+ uint64_t x56;
787
+ uint8_t x57;
788
+ uint64_t x58;
789
+ uint64_t x59;
790
+ uint64_t x60;
791
+ uint64_t x61;
792
+ uint64_t x62;
793
+ uint64_t x63;
794
+ uint64_t x64;
795
+ uint8_t x65;
796
+ uint64_t x66;
797
+ uint64_t x67;
798
+ uint64_t x68;
799
+ uint64_t x69;
800
+ uint64_t x70;
801
+ uint64_t x71;
802
+ x1 = ((uint64_t)(arg1[31]) << 44);
803
+ x2 = ((uint64_t)(arg1[30]) << 36);
804
+ x3 = ((uint64_t)(arg1[29]) << 28);
805
+ x4 = ((uint64_t)(arg1[28]) << 20);
806
+ x5 = ((uint64_t)(arg1[27]) << 12);
807
+ x6 = ((uint64_t)(arg1[26]) << 4);
808
+ x7 = ((uint64_t)(arg1[25]) << 47);
809
+ x8 = ((uint64_t)(arg1[24]) << 39);
810
+ x9 = ((uint64_t)(arg1[23]) << 31);
811
+ x10 = ((uint64_t)(arg1[22]) << 23);
812
+ x11 = ((uint64_t)(arg1[21]) << 15);
813
+ x12 = ((uint64_t)(arg1[20]) << 7);
814
+ x13 = ((uint64_t)(arg1[19]) << 50);
815
+ x14 = ((uint64_t)(arg1[18]) << 42);
816
+ x15 = ((uint64_t)(arg1[17]) << 34);
817
+ x16 = ((uint64_t)(arg1[16]) << 26);
818
+ x17 = ((uint64_t)(arg1[15]) << 18);
819
+ x18 = ((uint64_t)(arg1[14]) << 10);
820
+ x19 = ((uint64_t)(arg1[13]) << 2);
821
+ x20 = ((uint64_t)(arg1[12]) << 45);
822
+ x21 = ((uint64_t)(arg1[11]) << 37);
823
+ x22 = ((uint64_t)(arg1[10]) << 29);
824
+ x23 = ((uint64_t)(arg1[9]) << 21);
825
+ x24 = ((uint64_t)(arg1[8]) << 13);
826
+ x25 = ((uint64_t)(arg1[7]) << 5);
827
+ x26 = ((uint64_t)(arg1[6]) << 48);
828
+ x27 = ((uint64_t)(arg1[5]) << 40);
829
+ x28 = ((uint64_t)(arg1[4]) << 32);
830
+ x29 = ((uint64_t)(arg1[3]) << 24);
831
+ x30 = ((uint64_t)(arg1[2]) << 16);
832
+ x31 = ((uint64_t)(arg1[1]) << 8);
833
+ x32 = (arg1[0]);
834
+ x33 = (x31 + (uint64_t)x32);
835
+ x34 = (x30 + x33);
836
+ x35 = (x29 + x34);
837
+ x36 = (x28 + x35);
838
+ x37 = (x27 + x36);
839
+ x38 = (x26 + x37);
840
+ x39 = (x38 & UINT64_C(0x7ffffffffffff));
841
+ x40 = (uint8_t)(x38 >> 51);
842
+ x41 = (x25 + (uint64_t)x40);
843
+ x42 = (x24 + x41);
844
+ x43 = (x23 + x42);
845
+ x44 = (x22 + x43);
846
+ x45 = (x21 + x44);
847
+ x46 = (x20 + x45);
848
+ x47 = (x46 & UINT64_C(0x7ffffffffffff));
849
+ x48 = (uint8_t)(x46 >> 51);
850
+ x49 = (x19 + (uint64_t)x48);
851
+ x50 = (x18 + x49);
852
+ x51 = (x17 + x50);
853
+ x52 = (x16 + x51);
854
+ x53 = (x15 + x52);
855
+ x54 = (x14 + x53);
856
+ x55 = (x13 + x54);
857
+ x56 = (x55 & UINT64_C(0x7ffffffffffff));
858
+ x57 = (uint8_t)(x55 >> 51);
859
+ x58 = (x12 + (uint64_t)x57);
860
+ x59 = (x11 + x58);
861
+ x60 = (x10 + x59);
862
+ x61 = (x9 + x60);
863
+ x62 = (x8 + x61);
864
+ x63 = (x7 + x62);
865
+ x64 = (x63 & UINT64_C(0x7ffffffffffff));
866
+ x65 = (uint8_t)(x63 >> 51);
867
+ x66 = (x6 + (uint64_t)x65);
868
+ x67 = (x5 + x66);
869
+ x68 = (x4 + x67);
870
+ x69 = (x3 + x68);
871
+ x70 = (x2 + x69);
872
+ x71 = (x1 + x70);
873
+ out1[0] = x39;
874
+ out1[1] = x47;
875
+ out1[2] = x56;
876
+ out1[3] = x64;
877
+ out1[4] = x71;
878
+ }
879
+
880
+ /*
881
+ * The function fiat_25519_relax is the identity function converting from tight field elements to loose field elements.
882
+ *
883
+ * Postconditions:
884
+ * out1 = arg1
885
+ *
886
+ */
887
+ static FIAT_25519_FIAT_INLINE void fiat_25519_relax(fiat_25519_loose_field_element out1, const fiat_25519_tight_field_element arg1) {
888
+ uint64_t x1;
889
+ uint64_t x2;
890
+ uint64_t x3;
891
+ uint64_t x4;
892
+ uint64_t x5;
893
+ x1 = (arg1[0]);
894
+ x2 = (arg1[1]);
895
+ x3 = (arg1[2]);
896
+ x4 = (arg1[3]);
897
+ x5 = (arg1[4]);
898
+ out1[0] = x1;
899
+ out1[1] = x2;
900
+ out1[2] = x3;
901
+ out1[3] = x4;
902
+ out1[4] = x5;
573
903
  }
574
904
 
575
905
  /*
576
906
  * The function fiat_25519_carry_scmul_121666 multiplies a field element by 121666 and reduces the result.
907
+ *
577
908
  * Postconditions:
578
909
  * eval out1 mod m = (121666 * eval arg1) mod m
579
910
  *
580
- * Input Bounds:
581
- * arg1: [[0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664], [0x0 ~> 0x1a666666666664]]
582
- * Output Bounds:
583
- * out1: [[0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc], [0x0 ~> 0x8cccccccccccc]]
584
911
  */
585
- static void fiat_25519_carry_scmul_121666(uint64_t out1[5], const uint64_t arg1[5]) {
586
- fiat_25519_uint128 x1 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[4]));
587
- fiat_25519_uint128 x2 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[3]));
588
- fiat_25519_uint128 x3 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[2]));
589
- fiat_25519_uint128 x4 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[1]));
590
- fiat_25519_uint128 x5 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[0]));
591
- uint64_t x6 = (uint64_t)(x5 >> 51);
592
- uint64_t x7 = (uint64_t)(x5 & UINT64_C(0x7ffffffffffff));
593
- fiat_25519_uint128 x8 = (x6 + x4);
594
- uint64_t x9 = (uint64_t)(x8 >> 51);
595
- uint64_t x10 = (uint64_t)(x8 & UINT64_C(0x7ffffffffffff));
596
- fiat_25519_uint128 x11 = (x9 + x3);
597
- uint64_t x12 = (uint64_t)(x11 >> 51);
598
- uint64_t x13 = (uint64_t)(x11 & UINT64_C(0x7ffffffffffff));
599
- fiat_25519_uint128 x14 = (x12 + x2);
600
- uint64_t x15 = (uint64_t)(x14 >> 51);
601
- uint64_t x16 = (uint64_t)(x14 & UINT64_C(0x7ffffffffffff));
602
- fiat_25519_uint128 x17 = (x15 + x1);
603
- uint64_t x18 = (uint64_t)(x17 >> 51);
604
- uint64_t x19 = (uint64_t)(x17 & UINT64_C(0x7ffffffffffff));
605
- uint64_t x20 = (x18 * UINT8_C(0x13));
606
- uint64_t x21 = (x7 + x20);
607
- fiat_25519_uint1 x22 = (fiat_25519_uint1)(x21 >> 51);
608
- uint64_t x23 = (x21 & UINT64_C(0x7ffffffffffff));
609
- uint64_t x24 = (x22 + x10);
610
- fiat_25519_uint1 x25 = (fiat_25519_uint1)(x24 >> 51);
611
- uint64_t x26 = (x24 & UINT64_C(0x7ffffffffffff));
612
- uint64_t x27 = (x25 + x13);
912
+ static FIAT_25519_FIAT_INLINE void fiat_25519_carry_scmul_121666(fiat_25519_tight_field_element out1, const fiat_25519_loose_field_element arg1) {
913
+ fiat_25519_uint128 x1;
914
+ fiat_25519_uint128 x2;
915
+ fiat_25519_uint128 x3;
916
+ fiat_25519_uint128 x4;
917
+ fiat_25519_uint128 x5;
918
+ uint64_t x6;
919
+ uint64_t x7;
920
+ fiat_25519_uint128 x8;
921
+ uint64_t x9;
922
+ uint64_t x10;
923
+ fiat_25519_uint128 x11;
924
+ uint64_t x12;
925
+ uint64_t x13;
926
+ fiat_25519_uint128 x14;
927
+ uint64_t x15;
928
+ uint64_t x16;
929
+ fiat_25519_uint128 x17;
930
+ uint64_t x18;
931
+ uint64_t x19;
932
+ uint64_t x20;
933
+ uint64_t x21;
934
+ fiat_25519_uint1 x22;
935
+ uint64_t x23;
936
+ uint64_t x24;
937
+ fiat_25519_uint1 x25;
938
+ uint64_t x26;
939
+ uint64_t x27;
940
+ x1 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[4]));
941
+ x2 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[3]));
942
+ x3 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[2]));
943
+ x4 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[1]));
944
+ x5 = ((fiat_25519_uint128)UINT32_C(0x1db42) * (arg1[0]));
945
+ x6 = (uint64_t)(x5 >> 51);
946
+ x7 = (uint64_t)(x5 & UINT64_C(0x7ffffffffffff));
947
+ x8 = (x6 + x4);
948
+ x9 = (uint64_t)(x8 >> 51);
949
+ x10 = (uint64_t)(x8 & UINT64_C(0x7ffffffffffff));
950
+ x11 = (x9 + x3);
951
+ x12 = (uint64_t)(x11 >> 51);
952
+ x13 = (uint64_t)(x11 & UINT64_C(0x7ffffffffffff));
953
+ x14 = (x12 + x2);
954
+ x15 = (uint64_t)(x14 >> 51);
955
+ x16 = (uint64_t)(x14 & UINT64_C(0x7ffffffffffff));
956
+ x17 = (x15 + x1);
957
+ x18 = (uint64_t)(x17 >> 51);
958
+ x19 = (uint64_t)(x17 & UINT64_C(0x7ffffffffffff));
959
+ x20 = (x18 * UINT8_C(0x13));
960
+ x21 = (x7 + x20);
961
+ x22 = (fiat_25519_uint1)(x21 >> 51);
962
+ x23 = (x21 & UINT64_C(0x7ffffffffffff));
963
+ x24 = (x22 + x10);
964
+ x25 = (fiat_25519_uint1)(x24 >> 51);
965
+ x26 = (x24 & UINT64_C(0x7ffffffffffff));
966
+ x27 = (x25 + x13);
613
967
  out1[0] = x23;
614
968
  out1[1] = x26;
615
969
  out1[2] = x27;
616
970
  out1[3] = x16;
617
971
  out1[4] = x19;
618
972
  }
619
-