wearefair-grpc 1.3.1.pre.a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/Makefile +19484 -0
- data/etc/roots.pem +5288 -0
- data/include/grpc/byte_buffer.h +102 -0
- data/include/grpc/byte_buffer_reader.h +39 -0
- data/include/grpc/census.h +484 -0
- data/include/grpc/compression.h +85 -0
- data/include/grpc/grpc.h +509 -0
- data/include/grpc/grpc_cronet.h +51 -0
- data/include/grpc/grpc_posix.h +81 -0
- data/include/grpc/grpc_security.h +390 -0
- data/include/grpc/grpc_security_constants.h +114 -0
- data/include/grpc/impl/codegen/atm.h +100 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +97 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +97 -0
- data/include/grpc/impl/codegen/atm_windows.h +140 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +57 -0
- data/include/grpc/impl/codegen/compression_types.h +122 -0
- data/include/grpc/impl/codegen/connectivity_state.h +61 -0
- data/include/grpc/impl/codegen/exec_ctx_fwd.h +41 -0
- data/include/grpc/impl/codegen/gpr_slice.h +84 -0
- data/include/grpc/impl/codegen/gpr_types.h +75 -0
- data/include/grpc/impl/codegen/grpc_types.h +550 -0
- data/include/grpc/impl/codegen/port_platform.h +421 -0
- data/include/grpc/impl/codegen/propagation_bits.h +67 -0
- data/include/grpc/impl/codegen/slice.h +157 -0
- data/include/grpc/impl/codegen/status.h +163 -0
- data/include/grpc/impl/codegen/sync.h +75 -0
- data/include/grpc/impl/codegen/sync_generic.h +55 -0
- data/include/grpc/impl/codegen/sync_posix.h +47 -0
- data/include/grpc/impl/codegen/sync_windows.h +49 -0
- data/include/grpc/load_reporting.h +63 -0
- data/include/grpc/module.modulemap +13 -0
- data/include/grpc/slice.h +168 -0
- data/include/grpc/slice_buffer.h +94 -0
- data/include/grpc/status.h +39 -0
- data/include/grpc/support/alloc.h +82 -0
- data/include/grpc/support/atm.h +39 -0
- data/include/grpc/support/atm_gcc_atomic.h +39 -0
- data/include/grpc/support/atm_gcc_sync.h +39 -0
- data/include/grpc/support/atm_windows.h +39 -0
- data/include/grpc/support/avl.h +97 -0
- data/include/grpc/support/cmdline.h +103 -0
- data/include/grpc/support/cpu.h +59 -0
- data/include/grpc/support/histogram.h +79 -0
- data/include/grpc/support/host_port.h +66 -0
- data/include/grpc/support/log.h +118 -0
- data/include/grpc/support/log_windows.h +53 -0
- data/include/grpc/support/port_platform.h +39 -0
- data/include/grpc/support/string_util.h +64 -0
- data/include/grpc/support/subprocess.h +59 -0
- data/include/grpc/support/sync.h +295 -0
- data/include/grpc/support/sync_generic.h +39 -0
- data/include/grpc/support/sync_posix.h +39 -0
- data/include/grpc/support/sync_windows.h +39 -0
- data/include/grpc/support/thd.h +91 -0
- data/include/grpc/support/time.h +105 -0
- data/include/grpc/support/tls.h +77 -0
- data/include/grpc/support/tls_gcc.h +100 -0
- data/include/grpc/support/tls_msvc.h +56 -0
- data/include/grpc/support/tls_pthread.h +60 -0
- data/include/grpc/support/useful.h +80 -0
- data/src/boringssl/err_data.c +1270 -0
- data/src/core/ext/census/aggregation.h +66 -0
- data/src/core/ext/census/base_resources.c +71 -0
- data/src/core/ext/census/base_resources.h +39 -0
- data/src/core/ext/census/census_interface.h +76 -0
- data/src/core/ext/census/census_rpc_stats.h +101 -0
- data/src/core/ext/census/context.c +509 -0
- data/src/core/ext/census/gen/census.pb.c +176 -0
- data/src/core/ext/census/gen/census.pb.h +295 -0
- data/src/core/ext/census/gen/trace_context.pb.c +54 -0
- data/src/core/ext/census/gen/trace_context.pb.h +93 -0
- data/src/core/ext/census/grpc_context.c +53 -0
- data/src/core/ext/census/grpc_filter.c +213 -0
- data/src/core/ext/census/grpc_filter.h +44 -0
- data/src/core/ext/census/grpc_plugin.c +85 -0
- data/src/core/ext/census/initialize.c +66 -0
- data/src/core/ext/census/mlog.c +600 -0
- data/src/core/ext/census/mlog.h +95 -0
- data/src/core/ext/census/operation.c +63 -0
- data/src/core/ext/census/placeholders.c +64 -0
- data/src/core/ext/census/resource.c +312 -0
- data/src/core/ext/census/resource.h +63 -0
- data/src/core/ext/census/rpc_metric_id.h +51 -0
- data/src/core/ext/census/trace_context.c +86 -0
- data/src/core/ext/census/trace_context.h +71 -0
- data/src/core/ext/census/trace_label.h +61 -0
- data/src/core/ext/census/trace_propagation.h +63 -0
- data/src/core/ext/census/trace_status.h +45 -0
- data/src/core/ext/census/trace_string.h +50 -0
- data/src/core/ext/census/tracing.c +71 -0
- data/src/core/ext/census/tracing.h +124 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.c +226 -0
- data/src/core/ext/filters/client_channel/client_channel.c +1410 -0
- data/src/core/ext/filters/client_channel/client_channel.h +64 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.c +87 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +92 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.c +106 -0
- data/src/core/ext/filters/client_channel/connector.c +55 -0
- data/src/core/ext/filters/client_channel/connector.h +88 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.c +389 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +49 -0
- data/src/core/ext/filters/client_channel/http_proxy.c +125 -0
- data/src/core/ext/filters/client_channel/http_proxy.h +39 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c +1419 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +44 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +57 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.c +107 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c +249 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +105 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +88 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +158 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c +476 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c +795 -0
- data/src/core/ext/filters/client_channel/lb_policy.c +167 -0
- data/src/core/ext/filters/client_channel/lb_policy.h +209 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.c +163 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +134 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.c +85 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +55 -0
- data/src/core/ext/filters/client_channel/parse_address.c +170 -0
- data/src/core/ext/filters/client_channel/parse_address.h +54 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.c +63 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +89 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.c +139 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +59 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c +350 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +66 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c +319 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c +289 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +64 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c +325 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c +234 -0
- data/src/core/ext/filters/client_channel/resolver.c +88 -0
- data/src/core/ext/filters/client_channel/resolver.h +101 -0
- data/src/core/ext/filters/client_channel/resolver_factory.c +56 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +85 -0
- data/src/core/ext/filters/client_channel/resolver_registry.c +174 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +84 -0
- data/src/core/ext/filters/client_channel/retry_throttle.c +210 -0
- data/src/core/ext/filters/client_channel/retry_throttle.h +65 -0
- data/src/core/ext/filters/client_channel/subchannel.c +835 -0
- data/src/core/ext/filters/client_channel/subchannel.h +203 -0
- data/src/core/ext/filters/client_channel/subchannel_index.c +262 -0
- data/src/core/ext/filters/client_channel/subchannel_index.h +77 -0
- data/src/core/ext/filters/client_channel/uri_parser.c +315 -0
- data/src/core/ext/filters/client_channel/uri_parser.h +65 -0
- data/src/core/ext/filters/load_reporting/load_reporting.c +106 -0
- data/src/core/ext/filters/load_reporting/load_reporting.h +73 -0
- data/src/core/ext/filters/load_reporting/load_reporting_filter.c +218 -0
- data/src/core/ext/filters/load_reporting/load_reporting_filter.h +42 -0
- data/src/core/ext/filters/max_age/max_age_filter.c +439 -0
- data/src/core/ext/filters/max_age/max_age_filter.h +39 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.c +56 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +49 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.c +221 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +41 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +121 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +95 -0
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c +239 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.c +304 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +47 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.c +59 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c +90 -0
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c +101 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.c +236 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +67 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.c +241 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +54 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.c +43 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +2847 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +53 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +61 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.c +287 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.h +104 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.c +198 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +78 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.c +145 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +59 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +125 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +58 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.c +239 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +76 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.c +134 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +57 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +661 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +107 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.c +1734 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +129 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.c +383 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +112 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.c +75 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +74 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.c +105 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +48 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +88 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +63 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +852 -0
- data/src/core/ext/transport/chttp2/transport/parsing.c +825 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.c +194 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.c +176 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.h +83 -0
- data/src/core/ext/transport/chttp2/transport/varint.c +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +75 -0
- data/src/core/ext/transport/chttp2/transport/writing.c +429 -0
- data/src/core/lib/channel/channel_args.c +355 -0
- data/src/core/lib/channel/channel_args.h +126 -0
- data/src/core/lib/channel/channel_stack.c +291 -0
- data/src/core/lib/channel/channel_stack.h +319 -0
- data/src/core/lib/channel/channel_stack_builder.c +284 -0
- data/src/core/lib/channel/channel_stack_builder.h +170 -0
- data/src/core/lib/channel/compress_filter.c +353 -0
- data/src/core/lib/channel/compress_filter.h +67 -0
- data/src/core/lib/channel/connected_channel.c +188 -0
- data/src/core/lib/channel/connected_channel.h +48 -0
- data/src/core/lib/channel/context.h +64 -0
- data/src/core/lib/channel/deadline_filter.c +348 -0
- data/src/core/lib/channel/deadline_filter.h +102 -0
- data/src/core/lib/channel/handshaker.c +281 -0
- data/src/core/lib/channel/handshaker.h +182 -0
- data/src/core/lib/channel/handshaker_factory.c +54 -0
- data/src/core/lib/channel/handshaker_factory.h +66 -0
- data/src/core/lib/channel/handshaker_registry.c +113 -0
- data/src/core/lib/channel/handshaker_registry.h +63 -0
- data/src/core/lib/channel/http_client_filter.c +601 -0
- data/src/core/lib/channel/http_client_filter.h +47 -0
- data/src/core/lib/channel/http_server_filter.c +445 -0
- data/src/core/lib/channel/http_server_filter.h +42 -0
- data/src/core/lib/channel/message_size_filter.c +270 -0
- data/src/core/lib/channel/message_size_filter.h +39 -0
- data/src/core/lib/compression/algorithm_metadata.h +53 -0
- data/src/core/lib/compression/compression.c +198 -0
- data/src/core/lib/compression/message_compress.c +204 -0
- data/src/core/lib/compression/message_compress.h +54 -0
- data/src/core/lib/debug/trace.c +140 -0
- data/src/core/lib/debug/trace.h +43 -0
- data/src/core/lib/http/format_request.c +135 -0
- data/src/core/lib/http/format_request.h +47 -0
- data/src/core/lib/http/httpcli.c +336 -0
- data/src/core/lib/http/httpcli.h +141 -0
- data/src/core/lib/http/httpcli_security_connector.c +199 -0
- data/src/core/lib/http/parser.c +379 -0
- data/src/core/lib/http/parser.h +126 -0
- data/src/core/lib/iomgr/closure.c +168 -0
- data/src/core/lib/iomgr/closure.h +153 -0
- data/src/core/lib/iomgr/combiner.c +460 -0
- data/src/core/lib/iomgr/combiner.h +83 -0
- data/src/core/lib/iomgr/endpoint.c +78 -0
- data/src/core/lib/iomgr/endpoint.h +117 -0
- data/src/core/lib/iomgr/endpoint_pair.h +47 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.c +87 -0
- data/src/core/lib/iomgr/endpoint_pair_uv.c +53 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.c +101 -0
- data/src/core/lib/iomgr/error.c +793 -0
- data/src/core/lib/iomgr/error.h +218 -0
- data/src/core/lib/iomgr/error_internal.h +75 -0
- data/src/core/lib/iomgr/ev_epoll_linux.c +1965 -0
- data/src/core/lib/iomgr/ev_epoll_linux.h +48 -0
- data/src/core/lib/iomgr/ev_poll_posix.c +1593 -0
- data/src/core/lib/iomgr/ev_poll_posix.h +42 -0
- data/src/core/lib/iomgr/ev_posix.c +287 -0
- data/src/core/lib/iomgr/ev_posix.h +189 -0
- data/src/core/lib/iomgr/exec_ctx.c +117 -0
- data/src/core/lib/iomgr/exec_ctx.h +117 -0
- data/src/core/lib/iomgr/executor.c +170 -0
- data/src/core/lib/iomgr/executor.h +51 -0
- data/src/core/lib/iomgr/iocp_windows.c +168 -0
- data/src/core/lib/iomgr/iocp_windows.h +55 -0
- data/src/core/lib/iomgr/iomgr.c +183 -0
- data/src/core/lib/iomgr/iomgr.h +47 -0
- data/src/core/lib/iomgr/iomgr_internal.h +58 -0
- data/src/core/lib/iomgr/iomgr_posix.c +56 -0
- data/src/core/lib/iomgr/iomgr_posix.h +39 -0
- data/src/core/lib/iomgr/iomgr_uv.c +49 -0
- data/src/core/lib/iomgr/iomgr_windows.c +76 -0
- data/src/core/lib/iomgr/load_file.c +92 -0
- data/src/core/lib/iomgr/load_file.h +56 -0
- data/src/core/lib/iomgr/lockfree_event.c +238 -0
- data/src/core/lib/iomgr/lockfree_event.h +54 -0
- data/src/core/lib/iomgr/network_status_tracker.c +48 -0
- data/src/core/lib/iomgr/network_status_tracker.h +45 -0
- data/src/core/lib/iomgr/polling_entity.c +104 -0
- data/src/core/lib/iomgr/polling_entity.h +81 -0
- data/src/core/lib/iomgr/pollset.h +97 -0
- data/src/core/lib/iomgr/pollset_set.h +62 -0
- data/src/core/lib/iomgr/pollset_set_uv.c +63 -0
- data/src/core/lib/iomgr/pollset_set_windows.c +64 -0
- data/src/core/lib/iomgr/pollset_set_windows.h +39 -0
- data/src/core/lib/iomgr/pollset_uv.c +156 -0
- data/src/core/lib/iomgr/pollset_uv.h +42 -0
- data/src/core/lib/iomgr/pollset_windows.c +232 -0
- data/src/core/lib/iomgr/pollset_windows.h +78 -0
- data/src/core/lib/iomgr/port.h +138 -0
- data/src/core/lib/iomgr/resolve_address.h +70 -0
- data/src/core/lib/iomgr/resolve_address_posix.c +207 -0
- data/src/core/lib/iomgr/resolve_address_uv.c +284 -0
- data/src/core/lib/iomgr/resolve_address_windows.c +190 -0
- data/src/core/lib/iomgr/resource_quota.c +877 -0
- data/src/core/lib/iomgr/resource_quota.h +167 -0
- data/src/core/lib/iomgr/sockaddr.h +55 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +44 -0
- data/src/core/lib/iomgr/sockaddr_utils.c +272 -0
- data/src/core/lib/iomgr/sockaddr_utils.h +93 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +43 -0
- data/src/core/lib/iomgr/socket_factory_posix.c +110 -0
- data/src/core/lib/iomgr/socket_factory_posix.h +90 -0
- data/src/core/lib/iomgr/socket_mutator.c +98 -0
- data/src/core/lib/iomgr/socket_mutator.h +80 -0
- data/src/core/lib/iomgr/socket_utils.h +42 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.c +330 -0
- data/src/core/lib/iomgr/socket_utils_linux.c +57 -0
- data/src/core/lib/iomgr/socket_utils_posix.c +73 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +147 -0
- data/src/core/lib/iomgr/socket_utils_uv.c +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.c +52 -0
- data/src/core/lib/iomgr/socket_windows.c +167 -0
- data/src/core/lib/iomgr/socket_windows.h +125 -0
- data/src/core/lib/iomgr/tcp_client.h +55 -0
- data/src/core/lib/iomgr/tcp_client_posix.c +368 -0
- data/src/core/lib/iomgr/tcp_client_posix.h +45 -0
- data/src/core/lib/iomgr/tcp_client_uv.c +192 -0
- data/src/core/lib/iomgr/tcp_client_windows.c +260 -0
- data/src/core/lib/iomgr/tcp_posix.c +677 -0
- data/src/core/lib/iomgr/tcp_posix.h +70 -0
- data/src/core/lib/iomgr/tcp_server.h +116 -0
- data/src/core/lib/iomgr/tcp_server_posix.c +579 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +135 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.c +221 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c +196 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c +49 -0
- data/src/core/lib/iomgr/tcp_server_uv.c +393 -0
- data/src/core/lib/iomgr/tcp_server_windows.c +558 -0
- data/src/core/lib/iomgr/tcp_uv.c +374 -0
- data/src/core/lib/iomgr/tcp_uv.h +59 -0
- data/src/core/lib/iomgr/tcp_windows.c +462 -0
- data/src/core/lib/iomgr/tcp_windows.h +59 -0
- data/src/core/lib/iomgr/time_averaged_stats.c +77 -0
- data/src/core/lib/iomgr/time_averaged_stats.h +88 -0
- data/src/core/lib/iomgr/timer.h +111 -0
- data/src/core/lib/iomgr/timer_generic.c +567 -0
- data/src/core/lib/iomgr/timer_generic.h +49 -0
- data/src/core/lib/iomgr/timer_heap.c +152 -0
- data/src/core/lib/iomgr/timer_heap.h +57 -0
- data/src/core/lib/iomgr/timer_uv.c +103 -0
- data/src/core/lib/iomgr/timer_uv.h +47 -0
- data/src/core/lib/iomgr/udp_server.c +529 -0
- data/src/core/lib/iomgr/udp_server.h +89 -0
- data/src/core/lib/iomgr/unix_sockets_posix.c +108 -0
- data/src/core/lib/iomgr/unix_sockets_posix.h +56 -0
- data/src/core/lib/iomgr/unix_sockets_posix_noop.c +62 -0
- data/src/core/lib/iomgr/wakeup_fd_cv.c +118 -0
- data/src/core/lib/iomgr/wakeup_fd_cv.h +80 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.c +97 -0
- data/src/core/lib/iomgr/wakeup_fd_nospecial.c +51 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.c +112 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +41 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.c +101 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +109 -0
- data/src/core/lib/iomgr/workqueue.h +87 -0
- data/src/core/lib/iomgr/workqueue_uv.c +65 -0
- data/src/core/lib/iomgr/workqueue_uv.h +37 -0
- data/src/core/lib/iomgr/workqueue_windows.c +63 -0
- data/src/core/lib/iomgr/workqueue_windows.h +37 -0
- data/src/core/lib/json/json.c +63 -0
- data/src/core/lib/json/json.h +88 -0
- data/src/core/lib/json/json_common.h +49 -0
- data/src/core/lib/json/json_reader.c +675 -0
- data/src/core/lib/json/json_reader.h +160 -0
- data/src/core/lib/json/json_string.c +379 -0
- data/src/core/lib/json/json_writer.c +258 -0
- data/src/core/lib/json/json_writer.h +97 -0
- data/src/core/lib/profiling/basic_timers.c +298 -0
- data/src/core/lib/profiling/stap_timers.c +65 -0
- data/src/core/lib/profiling/timers.h +121 -0
- data/src/core/lib/security/context/security_context.c +350 -0
- data/src/core/lib/security/context/security_context.h +134 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.c +274 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +72 -0
- data/src/core/lib/security/credentials/credentials.c +308 -0
- data/src/core/lib/security/credentials/credentials.h +268 -0
- data/src/core/lib/security/credentials/credentials_metadata.c +103 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.c +141 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +71 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.c +54 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.c +337 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +60 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.c +85 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.h +44 -0
- data/src/core/lib/security/credentials/jwt/json_token.c +321 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +88 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.c +195 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +63 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.c +910 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +140 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +468 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +109 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.c +153 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +45 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.c +242 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +48 -0
- data/src/core/lib/security/transport/auth_filters.h +42 -0
- data/src/core/lib/security/transport/client_auth_filter.c +384 -0
- data/src/core/lib/security/transport/lb_targets_info.c +70 -0
- data/src/core/lib/security/transport/lb_targets_info.h +47 -0
- data/src/core/lib/security/transport/secure_endpoint.c +427 -0
- data/src/core/lib/security/transport/secure_endpoint.h +49 -0
- data/src/core/lib/security/transport/security_connector.c +909 -0
- data/src/core/lib/security/transport/security_connector.h +252 -0
- data/src/core/lib/security/transport/security_handshaker.c +507 -0
- data/src/core/lib/security/transport/security_handshaker.h +49 -0
- data/src/core/lib/security/transport/server_auth_filter.c +277 -0
- data/src/core/lib/security/transport/tsi_error.c +42 -0
- data/src/core/lib/security/transport/tsi_error.h +42 -0
- data/src/core/lib/security/util/json_util.c +61 -0
- data/src/core/lib/security/util/json_util.h +55 -0
- data/src/core/lib/slice/b64.c +251 -0
- data/src/core/lib/slice/b64.h +65 -0
- data/src/core/lib/slice/percent_encoding.c +182 -0
- data/src/core/lib/slice/percent_encoding.h +78 -0
- data/src/core/lib/slice/slice.c +466 -0
- data/src/core/lib/slice/slice_buffer.c +355 -0
- data/src/core/lib/slice/slice_hash_table.c +125 -0
- data/src/core/lib/slice/slice_hash_table.h +77 -0
- data/src/core/lib/slice/slice_intern.c +346 -0
- data/src/core/lib/slice/slice_internal.h +64 -0
- data/src/core/lib/slice/slice_string_helpers.c +95 -0
- data/src/core/lib/slice/slice_string_helpers.h +63 -0
- data/src/core/lib/support/alloc.c +117 -0
- data/src/core/lib/support/arena.c +98 -0
- data/src/core/lib/support/arena.h +54 -0
- data/src/core/lib/support/atm.c +47 -0
- data/src/core/lib/support/avl.c +299 -0
- data/src/core/lib/support/backoff.c +87 -0
- data/src/core/lib/support/backoff.h +71 -0
- data/src/core/lib/support/block_annotate.h +48 -0
- data/src/core/lib/support/cmdline.c +345 -0
- data/src/core/lib/support/cpu_iphone.c +49 -0
- data/src/core/lib/support/cpu_linux.c +83 -0
- data/src/core/lib/support/cpu_posix.c +72 -0
- data/src/core/lib/support/cpu_windows.c +47 -0
- data/src/core/lib/support/env.h +58 -0
- data/src/core/lib/support/env_linux.c +89 -0
- data/src/core/lib/support/env_posix.c +57 -0
- data/src/core/lib/support/env_windows.c +79 -0
- data/src/core/lib/support/histogram.c +243 -0
- data/src/core/lib/support/host_port.c +110 -0
- data/src/core/lib/support/log.c +103 -0
- data/src/core/lib/support/log_android.c +87 -0
- data/src/core/lib/support/log_linux.c +105 -0
- data/src/core/lib/support/log_posix.c +106 -0
- data/src/core/lib/support/log_windows.c +112 -0
- data/src/core/lib/support/mpscq.c +83 -0
- data/src/core/lib/support/mpscq.h +65 -0
- data/src/core/lib/support/murmur_hash.c +94 -0
- data/src/core/lib/support/murmur_hash.h +44 -0
- data/src/core/lib/support/spinlock.h +52 -0
- data/src/core/lib/support/stack_lockfree.c +185 -0
- data/src/core/lib/support/stack_lockfree.h +53 -0
- data/src/core/lib/support/string.c +315 -0
- data/src/core/lib/support/string.h +128 -0
- data/src/core/lib/support/string_posix.c +86 -0
- data/src/core/lib/support/string_util_windows.c +94 -0
- data/src/core/lib/support/string_windows.c +83 -0
- data/src/core/lib/support/string_windows.h +47 -0
- data/src/core/lib/support/subprocess_posix.c +114 -0
- data/src/core/lib/support/subprocess_windows.c +141 -0
- data/src/core/lib/support/sync.c +137 -0
- data/src/core/lib/support/sync_posix.c +113 -0
- data/src/core/lib/support/sync_windows.c +133 -0
- data/src/core/lib/support/thd.c +64 -0
- data/src/core/lib/support/thd_internal.h +39 -0
- data/src/core/lib/support/thd_posix.c +95 -0
- data/src/core/lib/support/thd_windows.c +117 -0
- data/src/core/lib/support/time.c +262 -0
- data/src/core/lib/support/time_posix.c +176 -0
- data/src/core/lib/support/time_precise.c +89 -0
- data/src/core/lib/support/time_precise.h +42 -0
- data/src/core/lib/support/time_windows.c +116 -0
- data/src/core/lib/support/tls_pthread.c +45 -0
- data/src/core/lib/support/tmpfile.h +53 -0
- data/src/core/lib/support/tmpfile_msys.c +73 -0
- data/src/core/lib/support/tmpfile_posix.c +85 -0
- data/src/core/lib/support/tmpfile_windows.c +84 -0
- data/src/core/lib/support/wrap_memcpy.c +55 -0
- data/src/core/lib/surface/alarm.c +87 -0
- data/src/core/lib/surface/api_trace.c +36 -0
- data/src/core/lib/surface/api_trace.h +65 -0
- data/src/core/lib/surface/byte_buffer.c +103 -0
- data/src/core/lib/surface/byte_buffer_reader.c +140 -0
- data/src/core/lib/surface/call.c +1835 -0
- data/src/core/lib/surface/call.h +135 -0
- data/src/core/lib/surface/call_details.c +56 -0
- data/src/core/lib/surface/call_log_batch.c +131 -0
- data/src/core/lib/surface/call_test_only.h +64 -0
- data/src/core/lib/surface/channel.c +434 -0
- data/src/core/lib/surface/channel.h +99 -0
- data/src/core/lib/surface/channel_init.c +140 -0
- data/src/core/lib/surface/channel_init.h +96 -0
- data/src/core/lib/surface/channel_ping.c +80 -0
- data/src/core/lib/surface/channel_stack_type.c +54 -0
- data/src/core/lib/surface/channel_stack_type.h +58 -0
- data/src/core/lib/surface/completion_queue.c +692 -0
- data/src/core/lib/surface/completion_queue.h +102 -0
- data/src/core/lib/surface/completion_queue_factory.c +77 -0
- data/src/core/lib/surface/completion_queue_factory.h +51 -0
- data/src/core/lib/surface/event_string.c +81 -0
- data/src/core/lib/surface/event_string.h +42 -0
- data/src/core/lib/surface/init.c +261 -0
- data/src/core/lib/surface/init.h +42 -0
- data/src/core/lib/surface/init_secure.c +94 -0
- data/src/core/lib/surface/lame_client.c +188 -0
- data/src/core/lib/surface/lame_client.h +41 -0
- data/src/core/lib/surface/metadata_array.c +49 -0
- data/src/core/lib/surface/server.c +1529 -0
- data/src/core/lib/surface/server.h +71 -0
- data/src/core/lib/surface/validate_metadata.c +108 -0
- data/src/core/lib/surface/validate_metadata.h +43 -0
- data/src/core/lib/surface/version.c +41 -0
- data/src/core/lib/transport/bdp_estimator.c +104 -0
- data/src/core/lib/transport/bdp_estimator.h +76 -0
- data/src/core/lib/transport/byte_stream.c +81 -0
- data/src/core/lib/transport/byte_stream.h +85 -0
- data/src/core/lib/transport/connectivity_state.c +219 -0
- data/src/core/lib/transport/connectivity_state.h +101 -0
- data/src/core/lib/transport/error_utils.c +124 -0
- data/src/core/lib/transport/error_utils.h +56 -0
- data/src/core/lib/transport/http2_errors.h +56 -0
- data/src/core/lib/transport/metadata.c +529 -0
- data/src/core/lib/transport/metadata.h +186 -0
- data/src/core/lib/transport/metadata_batch.c +328 -0
- data/src/core/lib/transport/metadata_batch.h +166 -0
- data/src/core/lib/transport/pid_controller.c +78 -0
- data/src/core/lib/transport/pid_controller.h +77 -0
- data/src/core/lib/transport/service_config.c +266 -0
- data/src/core/lib/transport/service_config.h +77 -0
- data/src/core/lib/transport/static_metadata.c +801 -0
- data/src/core/lib/transport/static_metadata.h +557 -0
- data/src/core/lib/transport/status_conversion.c +113 -0
- data/src/core/lib/transport/status_conversion.h +49 -0
- data/src/core/lib/transport/timeout_encoding.c +190 -0
- data/src/core/lib/transport/timeout_encoding.h +49 -0
- data/src/core/lib/transport/transport.c +282 -0
- data/src/core/lib/transport/transport.h +354 -0
- data/src/core/lib/transport/transport_impl.h +90 -0
- data/src/core/lib/transport/transport_op_string.c +217 -0
- data/src/core/plugin_registry/grpc_plugin_registry.c +82 -0
- data/src/core/tsi/fake_transport_security.c +527 -0
- data/src/core/tsi/fake_transport_security.h +61 -0
- data/src/core/tsi/ssl_transport_security.c +1533 -0
- data/src/core/tsi/ssl_transport_security.h +214 -0
- data/src/core/tsi/ssl_types.h +55 -0
- data/src/core/tsi/transport_security.c +266 -0
- data/src/core/tsi/transport_security.h +111 -0
- data/src/core/tsi/transport_security_interface.h +353 -0
- data/src/ruby/bin/apis/google/protobuf/empty.rb +44 -0
- data/src/ruby/bin/apis/pubsub_demo.rb +256 -0
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub.rb +174 -0
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb +103 -0
- data/src/ruby/bin/math_client.rb +147 -0
- data/src/ruby/bin/math_pb.rb +32 -0
- data/src/ruby/bin/math_server.rb +206 -0
- data/src/ruby/bin/math_services_pb.rb +66 -0
- data/src/ruby/bin/noproto_client.rb +108 -0
- data/src/ruby/bin/noproto_server.rb +112 -0
- data/src/ruby/ext/grpc/extconf.rb +131 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +77 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +50 -0
- data/src/ruby/ext/grpc/rb_call.c +1009 -0
- data/src/ruby/ext/grpc/rb_call.h +66 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +295 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +46 -0
- data/src/ruby/ext/grpc/rb_channel.c +662 -0
- data/src/ruby/ext/grpc/rb_channel.h +49 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +168 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +53 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +268 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +47 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +117 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +51 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +472 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +44 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +158 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +37 -0
- data/src/ruby/ext/grpc/rb_grpc.c +343 -0
- data/src/ruby/ext/grpc/rb_grpc.h +87 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +634 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +955 -0
- data/src/ruby/ext/grpc/rb_loader.c +72 -0
- data/src/ruby/ext/grpc/rb_loader.h +40 -0
- data/src/ruby/ext/grpc/rb_server.c +359 -0
- data/src/ruby/ext/grpc/rb_server.h +47 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +258 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +47 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +71 -0
- data/src/ruby/lib/grpc/errors.rb +215 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +547 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +229 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +463 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +173 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +476 -0
- data/src/ruby/lib/grpc/generic/service.rb +225 -0
- data/src/ruby/lib/grpc/grpc.rb +39 -0
- data/src/ruby/lib/grpc/grpc_c.bundle +0 -0
- data/src/ruby/lib/grpc/logconfig.rb +59 -0
- data/src/ruby/lib/grpc/notifier.rb +60 -0
- data/src/ruby/lib/grpc/version.rb +33 -0
- data/src/ruby/lib/grpc.rb +49 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +58 -0
- data/src/ruby/pb/grpc/health/checker.rb +77 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +28 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +56 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +58 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +64 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +15 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +82 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +14 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +117 -0
- data/src/ruby/pb/test/client.rb +779 -0
- data/src/ruby/pb/test/server.rb +267 -0
- data/src/ruby/spec/call_credentials_spec.rb +57 -0
- data/src/ruby/spec/call_spec.rb +162 -0
- data/src/ruby/spec/channel_connection_spec.rb +141 -0
- data/src/ruby/spec/channel_credentials_spec.rb +97 -0
- data/src/ruby/spec/channel_spec.rb +205 -0
- data/src/ruby/spec/client_server_spec.rb +491 -0
- data/src/ruby/spec/compression_options_spec.rb +164 -0
- data/src/ruby/spec/error_sanity_spec.rb +64 -0
- data/src/ruby/spec/generic/active_call_spec.rb +632 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +556 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +351 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +142 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +524 -0
- data/src/ruby/spec/generic/service_spec.rb +276 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +71 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +222 -0
- data/src/ruby/spec/server_credentials_spec.rb +94 -0
- data/src/ruby/spec/server_spec.rb +205 -0
- data/src/ruby/spec/spec_helper.rb +71 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +15 -0
- data/src/ruby/spec/testdata/server1.key +16 -0
- data/src/ruby/spec/testdata/server1.pem +16 -0
- data/src/ruby/spec/time_consts_spec.rb +89 -0
- data/third_party/boringssl/crypto/aes/aes.c +1142 -0
- data/third_party/boringssl/crypto/aes/internal.h +87 -0
- data/third_party/boringssl/crypto/aes/mode_wrappers.c +112 -0
- data/third_party/boringssl/crypto/asn1/a_bitstr.c +263 -0
- data/third_party/boringssl/crypto/asn1/a_bool.c +110 -0
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +282 -0
- data/third_party/boringssl/crypto/asn1/a_dup.c +111 -0
- data/third_party/boringssl/crypto/asn1/a_enum.c +181 -0
- data/third_party/boringssl/crypto/asn1/a_gentm.c +256 -0
- data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +147 -0
- data/third_party/boringssl/crypto/asn1/a_int.c +460 -0
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +409 -0
- data/third_party/boringssl/crypto/asn1/a_object.c +400 -0
- data/third_party/boringssl/crypto/asn1/a_octet.c +77 -0
- data/third_party/boringssl/crypto/asn1/a_print.c +121 -0
- data/third_party/boringssl/crypto/asn1/a_strnid.c +309 -0
- data/third_party/boringssl/crypto/asn1/a_time.c +206 -0
- data/third_party/boringssl/crypto/asn1/a_type.c +151 -0
- data/third_party/boringssl/crypto/asn1/a_utctm.c +304 -0
- data/third_party/boringssl/crypto/asn1/a_utf8.c +234 -0
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +483 -0
- data/third_party/boringssl/crypto/asn1/asn1_locl.h +63 -0
- data/third_party/boringssl/crypto/asn1/asn1_par.c +80 -0
- data/third_party/boringssl/crypto/asn1/asn_pack.c +105 -0
- data/third_party/boringssl/crypto/asn1/f_enum.c +93 -0
- data/third_party/boringssl/crypto/asn1/f_int.c +97 -0
- data/third_party/boringssl/crypto/asn1/f_string.c +91 -0
- data/third_party/boringssl/crypto/asn1/t_bitst.c +103 -0
- data/third_party/boringssl/crypto/asn1/tasn_dec.c +1221 -0
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +665 -0
- data/third_party/boringssl/crypto/asn1/tasn_fre.c +246 -0
- data/third_party/boringssl/crypto/asn1/tasn_new.c +381 -0
- data/third_party/boringssl/crypto/asn1/tasn_typ.c +131 -0
- data/third_party/boringssl/crypto/asn1/tasn_utl.c +266 -0
- data/third_party/boringssl/crypto/asn1/x_bignum.c +153 -0
- data/third_party/boringssl/crypto/asn1/x_long.c +197 -0
- data/third_party/boringssl/crypto/base64/base64.c +442 -0
- data/third_party/boringssl/crypto/bio/bio.c +598 -0
- data/third_party/boringssl/crypto/bio/bio_mem.c +328 -0
- data/third_party/boringssl/crypto/bio/buffer.c +496 -0
- data/third_party/boringssl/crypto/bio/connect.c +553 -0
- data/third_party/boringssl/crypto/bio/fd.c +277 -0
- data/third_party/boringssl/crypto/bio/file.c +313 -0
- data/third_party/boringssl/crypto/bio/hexdump.c +191 -0
- data/third_party/boringssl/crypto/bio/internal.h +111 -0
- data/third_party/boringssl/crypto/bio/pair.c +803 -0
- data/third_party/boringssl/crypto/bio/printf.c +119 -0
- data/third_party/boringssl/crypto/bio/socket.c +203 -0
- data/third_party/boringssl/crypto/bio/socket_helper.c +113 -0
- data/third_party/boringssl/crypto/bn/add.c +377 -0
- data/third_party/boringssl/crypto/bn/asm/x86_64-gcc.c +531 -0
- data/third_party/boringssl/crypto/bn/bn.c +379 -0
- data/third_party/boringssl/crypto/bn/bn_asn1.c +80 -0
- data/third_party/boringssl/crypto/bn/cmp.c +225 -0
- data/third_party/boringssl/crypto/bn/convert.c +599 -0
- data/third_party/boringssl/crypto/bn/ctx.c +311 -0
- data/third_party/boringssl/crypto/bn/div.c +671 -0
- data/third_party/boringssl/crypto/bn/exponentiation.c +1258 -0
- data/third_party/boringssl/crypto/bn/gcd.c +628 -0
- data/third_party/boringssl/crypto/bn/generic.c +703 -0
- data/third_party/boringssl/crypto/bn/internal.h +245 -0
- data/third_party/boringssl/crypto/bn/kronecker.c +175 -0
- data/third_party/boringssl/crypto/bn/montgomery.c +410 -0
- data/third_party/boringssl/crypto/bn/montgomery_inv.c +160 -0
- data/third_party/boringssl/crypto/bn/mul.c +869 -0
- data/third_party/boringssl/crypto/bn/prime.c +861 -0
- data/third_party/boringssl/crypto/bn/random.c +340 -0
- data/third_party/boringssl/crypto/bn/rsaz_exp.c +319 -0
- data/third_party/boringssl/crypto/bn/rsaz_exp.h +56 -0
- data/third_party/boringssl/crypto/bn/shift.c +299 -0
- data/third_party/boringssl/crypto/bn/sqrt.c +504 -0
- data/third_party/boringssl/crypto/buf/buf.c +239 -0
- data/third_party/boringssl/crypto/bytestring/asn1_compat.c +51 -0
- data/third_party/boringssl/crypto/bytestring/ber.c +263 -0
- data/third_party/boringssl/crypto/bytestring/cbb.c +473 -0
- data/third_party/boringssl/crypto/bytestring/cbs.c +439 -0
- data/third_party/boringssl/crypto/bytestring/internal.h +75 -0
- data/third_party/boringssl/crypto/chacha/chacha.c +167 -0
- data/third_party/boringssl/crypto/cipher/aead.c +156 -0
- data/third_party/boringssl/crypto/cipher/cipher.c +652 -0
- data/third_party/boringssl/crypto/cipher/derive_key.c +154 -0
- data/third_party/boringssl/crypto/cipher/e_aes.c +1717 -0
- data/third_party/boringssl/crypto/cipher/e_chacha20poly1305.c +300 -0
- data/third_party/boringssl/crypto/cipher/e_des.c +205 -0
- data/third_party/boringssl/crypto/cipher/e_null.c +85 -0
- data/third_party/boringssl/crypto/cipher/e_rc2.c +443 -0
- data/third_party/boringssl/crypto/cipher/e_rc4.c +87 -0
- data/third_party/boringssl/crypto/cipher/e_ssl3.c +403 -0
- data/third_party/boringssl/crypto/cipher/e_tls.c +602 -0
- data/third_party/boringssl/crypto/cipher/internal.h +162 -0
- data/third_party/boringssl/crypto/cipher/tls_cbc.c +553 -0
- data/third_party/boringssl/crypto/cmac/cmac.c +239 -0
- data/third_party/boringssl/crypto/conf/conf.c +788 -0
- data/third_party/boringssl/crypto/conf/conf_def.h +127 -0
- data/third_party/boringssl/crypto/conf/internal.h +31 -0
- data/third_party/boringssl/crypto/cpu-aarch64-linux.c +61 -0
- data/third_party/boringssl/crypto/cpu-arm-linux.c +360 -0
- data/third_party/boringssl/crypto/cpu-arm.c +38 -0
- data/third_party/boringssl/crypto/cpu-intel.c +263 -0
- data/third_party/boringssl/crypto/cpu-ppc64le.c +40 -0
- data/third_party/boringssl/crypto/crypto.c +164 -0
- data/third_party/boringssl/crypto/curve25519/curve25519.c +4944 -0
- data/third_party/boringssl/crypto/curve25519/internal.h +109 -0
- data/third_party/boringssl/crypto/curve25519/spake25519.c +464 -0
- data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +246 -0
- data/third_party/boringssl/crypto/des/des.c +771 -0
- data/third_party/boringssl/crypto/des/internal.h +212 -0
- data/third_party/boringssl/crypto/dh/check.c +218 -0
- data/third_party/boringssl/crypto/dh/dh.c +487 -0
- data/third_party/boringssl/crypto/dh/dh_asn1.c +160 -0
- data/third_party/boringssl/crypto/dh/params.c +253 -0
- data/third_party/boringssl/crypto/digest/digest.c +248 -0
- data/third_party/boringssl/crypto/digest/digests.c +321 -0
- data/third_party/boringssl/crypto/digest/internal.h +112 -0
- data/third_party/boringssl/crypto/digest/md32_common.h +262 -0
- data/third_party/boringssl/crypto/dsa/dsa.c +964 -0
- data/third_party/boringssl/crypto/dsa/dsa_asn1.c +339 -0
- data/third_party/boringssl/crypto/ec/ec.c +847 -0
- data/third_party/boringssl/crypto/ec/ec_asn1.c +549 -0
- data/third_party/boringssl/crypto/ec/ec_key.c +479 -0
- data/third_party/boringssl/crypto/ec/ec_montgomery.c +308 -0
- data/third_party/boringssl/crypto/ec/internal.h +276 -0
- data/third_party/boringssl/crypto/ec/oct.c +428 -0
- data/third_party/boringssl/crypto/ec/p224-64.c +1187 -0
- data/third_party/boringssl/crypto/ec/p256-64.c +1741 -0
- data/third_party/boringssl/crypto/ec/p256-x86_64-table.h +9543 -0
- data/third_party/boringssl/crypto/ec/p256-x86_64.c +574 -0
- data/third_party/boringssl/crypto/ec/simple.c +1117 -0
- data/third_party/boringssl/crypto/ec/util-64.c +109 -0
- data/third_party/boringssl/crypto/ec/wnaf.c +449 -0
- data/third_party/boringssl/crypto/ecdh/ecdh.c +159 -0
- data/third_party/boringssl/crypto/ecdsa/ecdsa.c +478 -0
- data/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c +227 -0
- data/third_party/boringssl/crypto/engine/engine.c +96 -0
- data/third_party/boringssl/crypto/err/err.c +756 -0
- data/third_party/boringssl/crypto/evp/digestsign.c +159 -0
- data/third_party/boringssl/crypto/evp/evp.c +367 -0
- data/third_party/boringssl/crypto/evp/evp_asn1.c +337 -0
- data/third_party/boringssl/crypto/evp/evp_ctx.c +448 -0
- data/third_party/boringssl/crypto/evp/internal.h +237 -0
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +268 -0
- data/third_party/boringssl/crypto/evp/p_ec.c +236 -0
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +257 -0
- data/third_party/boringssl/crypto/evp/p_rsa.c +673 -0
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +200 -0
- data/third_party/boringssl/crypto/evp/pbkdf.c +151 -0
- data/third_party/boringssl/crypto/evp/print.c +520 -0
- data/third_party/boringssl/crypto/evp/sign.c +151 -0
- data/third_party/boringssl/crypto/ex_data.c +292 -0
- data/third_party/boringssl/crypto/hkdf/hkdf.c +110 -0
- data/third_party/boringssl/crypto/hmac/hmac.c +213 -0
- data/third_party/boringssl/crypto/internal.h +527 -0
- data/third_party/boringssl/crypto/lhash/lhash.c +342 -0
- data/third_party/boringssl/crypto/md4/md4.c +234 -0
- data/third_party/boringssl/crypto/md5/md5.c +275 -0
- data/third_party/boringssl/crypto/mem.c +200 -0
- data/third_party/boringssl/crypto/modes/cbc.c +216 -0
- data/third_party/boringssl/crypto/modes/cfb.c +230 -0
- data/third_party/boringssl/crypto/modes/ctr.c +219 -0
- data/third_party/boringssl/crypto/modes/gcm.c +1288 -0
- data/third_party/boringssl/crypto/modes/internal.h +358 -0
- data/third_party/boringssl/crypto/modes/ofb.c +95 -0
- data/third_party/boringssl/crypto/newhope/error_correction.c +131 -0
- data/third_party/boringssl/crypto/newhope/internal.h +71 -0
- data/third_party/boringssl/crypto/newhope/newhope.c +174 -0
- data/third_party/boringssl/crypto/newhope/ntt.c +148 -0
- data/third_party/boringssl/crypto/newhope/poly.c +183 -0
- data/third_party/boringssl/crypto/newhope/precomp.c +306 -0
- data/third_party/boringssl/crypto/newhope/reduce.c +42 -0
- data/third_party/boringssl/crypto/obj/obj.c +640 -0
- data/third_party/boringssl/crypto/obj/obj_dat.h +5254 -0
- data/third_party/boringssl/crypto/obj/obj_xref.c +124 -0
- data/third_party/boringssl/crypto/obj/obj_xref.h +96 -0
- data/third_party/boringssl/crypto/pem/pem_all.c +262 -0
- data/third_party/boringssl/crypto/pem/pem_info.c +381 -0
- data/third_party/boringssl/crypto/pem/pem_lib.c +778 -0
- data/third_party/boringssl/crypto/pem/pem_oth.c +88 -0
- data/third_party/boringssl/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl/crypto/pem/pem_pkey.c +227 -0
- data/third_party/boringssl/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl/crypto/pem/pem_xaux.c +67 -0
- data/third_party/boringssl/crypto/pkcs8/internal.h +83 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbe.c +151 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +441 -0
- data/third_party/boringssl/crypto/pkcs8/p8_pkey.c +85 -0
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +1219 -0
- data/third_party/boringssl/crypto/poly1305/internal.h +40 -0
- data/third_party/boringssl/crypto/poly1305/poly1305.c +324 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +304 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +890 -0
- data/third_party/boringssl/crypto/rand/deterministic.c +47 -0
- data/third_party/boringssl/crypto/rand/internal.h +32 -0
- data/third_party/boringssl/crypto/rand/rand.c +244 -0
- data/third_party/boringssl/crypto/rand/urandom.c +221 -0
- data/third_party/boringssl/crypto/rand/windows.c +53 -0
- data/third_party/boringssl/crypto/rc4/rc4.c +98 -0
- data/third_party/boringssl/crypto/refcount_c11.c +67 -0
- data/third_party/boringssl/crypto/refcount_lock.c +53 -0
- data/third_party/boringssl/crypto/rsa/blinding.c +264 -0
- data/third_party/boringssl/crypto/rsa/internal.h +148 -0
- data/third_party/boringssl/crypto/rsa/padding.c +708 -0
- data/third_party/boringssl/crypto/rsa/rsa.c +830 -0
- data/third_party/boringssl/crypto/rsa/rsa_asn1.c +446 -0
- data/third_party/boringssl/crypto/rsa/rsa_impl.c +1139 -0
- data/third_party/boringssl/crypto/sha/sha1.c +337 -0
- data/third_party/boringssl/crypto/sha/sha256.c +327 -0
- data/third_party/boringssl/crypto/sha/sha512.c +607 -0
- data/third_party/boringssl/crypto/stack/stack.c +377 -0
- data/third_party/boringssl/crypto/thread.c +110 -0
- data/third_party/boringssl/crypto/thread_none.c +59 -0
- data/third_party/boringssl/crypto/thread_pthread.c +176 -0
- data/third_party/boringssl/crypto/thread_win.c +237 -0
- data/third_party/boringssl/crypto/time_support.c +206 -0
- data/third_party/boringssl/crypto/x509/a_digest.c +96 -0
- data/third_party/boringssl/crypto/x509/a_sign.c +135 -0
- data/third_party/boringssl/crypto/x509/a_strex.c +633 -0
- data/third_party/boringssl/crypto/x509/a_verify.c +127 -0
- data/third_party/boringssl/crypto/x509/algorithm.c +137 -0
- data/third_party/boringssl/crypto/x509/asn1_gen.c +818 -0
- data/third_party/boringssl/crypto/x509/by_dir.c +453 -0
- data/third_party/boringssl/crypto/x509/by_file.c +275 -0
- data/third_party/boringssl/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl/crypto/x509/i2d_pr.c +83 -0
- data/third_party/boringssl/crypto/x509/internal.h +66 -0
- data/third_party/boringssl/crypto/x509/pkcs7.c +353 -0
- data/third_party/boringssl/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl/crypto/x509/t_crl.c +128 -0
- data/third_party/boringssl/crypto/x509/t_req.c +246 -0
- data/third_party/boringssl/crypto/x509/t_x509.c +506 -0
- data/third_party/boringssl/crypto/x509/t_x509a.c +111 -0
- data/third_party/boringssl/crypto/x509/vpm_int.h +70 -0
- data/third_party/boringssl/crypto/x509/x509.c +157 -0
- data/third_party/boringssl/crypto/x509/x509_att.c +381 -0
- data/third_party/boringssl/crypto/x509/x509_cmp.c +474 -0
- data/third_party/boringssl/crypto/x509/x509_d2.c +106 -0
- data/third_party/boringssl/crypto/x509/x509_def.c +98 -0
- data/third_party/boringssl/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl/crypto/x509/x509_lu.c +690 -0
- data/third_party/boringssl/crypto/x509/x509_obj.c +197 -0
- data/third_party/boringssl/crypto/x509/x509_r2x.c +117 -0
- data/third_party/boringssl/crypto/x509/x509_req.c +322 -0
- data/third_party/boringssl/crypto/x509/x509_set.c +154 -0
- data/third_party/boringssl/crypto/x509/x509_trs.c +326 -0
- data/third_party/boringssl/crypto/x509/x509_txt.c +211 -0
- data/third_party/boringssl/crypto/x509/x509_v3.c +278 -0
- data/third_party/boringssl/crypto/x509/x509_vfy.c +2436 -0
- data/third_party/boringssl/crypto/x509/x509_vpm.c +647 -0
- data/third_party/boringssl/crypto/x509/x509cset.c +170 -0
- data/third_party/boringssl/crypto/x509/x509name.c +386 -0
- data/third_party/boringssl/crypto/x509/x509rset.c +81 -0
- data/third_party/boringssl/crypto/x509/x509spki.c +137 -0
- data/third_party/boringssl/crypto/x509/x509type.c +126 -0
- data/third_party/boringssl/crypto/x509/x_algor.c +151 -0
- data/third_party/boringssl/crypto/x509/x_all.c +501 -0
- data/third_party/boringssl/crypto/x509/x_attrib.c +111 -0
- data/third_party/boringssl/crypto/x509/x_crl.c +539 -0
- data/third_party/boringssl/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl/crypto/x509/x_info.c +98 -0
- data/third_party/boringssl/crypto/x509/x_name.c +534 -0
- data/third_party/boringssl/crypto/x509/x_pkey.c +103 -0
- data/third_party/boringssl/crypto/x509/x_pubkey.c +368 -0
- data/third_party/boringssl/crypto/x509/x_req.c +109 -0
- data/third_party/boringssl/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl/crypto/x509/x_spki.c +80 -0
- data/third_party/boringssl/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl/crypto/x509/x_x509.c +289 -0
- data/third_party/boringssl/crypto/x509/x_x509a.c +205 -0
- data/third_party/boringssl/crypto/x509v3/ext_dat.h +135 -0
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +284 -0
- data/third_party/boringssl/crypto/x509v3/pcy_data.c +130 -0
- data/third_party/boringssl/crypto/x509v3/pcy_int.h +217 -0
- data/third_party/boringssl/crypto/x509v3/pcy_lib.c +164 -0
- data/third_party/boringssl/crypto/x509v3/pcy_map.c +130 -0
- data/third_party/boringssl/crypto/x509v3/pcy_node.c +188 -0
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +829 -0
- data/third_party/boringssl/crypto/x509v3/v3_akey.c +204 -0
- data/third_party/boringssl/crypto/x509v3/v3_akeya.c +72 -0
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +614 -0
- data/third_party/boringssl/crypto/x509v3/v3_bcons.c +133 -0
- data/third_party/boringssl/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +462 -0
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +496 -0
- data/third_party/boringssl/crypto/x509v3/v3_crld.c +561 -0
- data/third_party/boringssl/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/boringssl/crypto/x509v3/v3_extku.c +148 -0
- data/third_party/boringssl/crypto/x509v3/v3_genn.c +250 -0
- data/third_party/boringssl/crypto/x509v3/v3_ia5.c +119 -0
- data/third_party/boringssl/crypto/x509v3/v3_info.c +212 -0
- data/third_party/boringssl/crypto/x509v3/v3_int.c +91 -0
- data/third_party/boringssl/crypto/x509v3/v3_lib.c +362 -0
- data/third_party/boringssl/crypto/x509v3/v3_ncons.c +482 -0
- data/third_party/boringssl/crypto/x509v3/v3_pci.c +317 -0
- data/third_party/boringssl/crypto/x509v3/v3_pcia.c +57 -0
- data/third_party/boringssl/crypto/x509v3/v3_pcons.c +139 -0
- data/third_party/boringssl/crypto/x509v3/v3_pku.c +110 -0
- data/third_party/boringssl/crypto/x509v3/v3_pmaps.c +154 -0
- data/third_party/boringssl/crypto/x509v3/v3_prn.c +229 -0
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +874 -0
- data/third_party/boringssl/crypto/x509v3/v3_skey.c +152 -0
- data/third_party/boringssl/crypto/x509v3/v3_sxnet.c +274 -0
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +1327 -0
- data/third_party/boringssl/include/openssl/aead.h +345 -0
- data/third_party/boringssl/include/openssl/aes.h +158 -0
- data/third_party/boringssl/include/openssl/arm_arch.h +121 -0
- data/third_party/boringssl/include/openssl/asn1.h +1038 -0
- data/third_party/boringssl/include/openssl/asn1_mac.h +18 -0
- data/third_party/boringssl/include/openssl/asn1t.h +896 -0
- data/third_party/boringssl/include/openssl/base.h +412 -0
- data/third_party/boringssl/include/openssl/base64.h +187 -0
- data/third_party/boringssl/include/openssl/bio.h +926 -0
- data/third_party/boringssl/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl/include/openssl/bn.h +955 -0
- data/third_party/boringssl/include/openssl/buf.h +133 -0
- data/third_party/boringssl/include/openssl/buffer.h +18 -0
- data/third_party/boringssl/include/openssl/bytestring.h +437 -0
- data/third_party/boringssl/include/openssl/cast.h +96 -0
- data/third_party/boringssl/include/openssl/chacha.h +37 -0
- data/third_party/boringssl/include/openssl/cipher.h +588 -0
- data/third_party/boringssl/include/openssl/cmac.h +87 -0
- data/third_party/boringssl/include/openssl/conf.h +181 -0
- data/third_party/boringssl/include/openssl/cpu.h +181 -0
- data/third_party/boringssl/include/openssl/crypto.h +94 -0
- data/third_party/boringssl/include/openssl/curve25519.h +183 -0
- data/third_party/boringssl/include/openssl/des.h +177 -0
- data/third_party/boringssl/include/openssl/dh.h +297 -0
- data/third_party/boringssl/include/openssl/digest.h +285 -0
- data/third_party/boringssl/include/openssl/dsa.h +436 -0
- data/third_party/boringssl/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl/include/openssl/ec.h +406 -0
- data/third_party/boringssl/include/openssl/ec_key.h +337 -0
- data/third_party/boringssl/include/openssl/ecdh.h +102 -0
- data/third_party/boringssl/include/openssl/ecdsa.h +217 -0
- data/third_party/boringssl/include/openssl/engine.h +109 -0
- data/third_party/boringssl/include/openssl/err.h +488 -0
- data/third_party/boringssl/include/openssl/evp.h +797 -0
- data/third_party/boringssl/include/openssl/ex_data.h +213 -0
- data/third_party/boringssl/include/openssl/hkdf.h +64 -0
- data/third_party/boringssl/include/openssl/hmac.h +174 -0
- data/third_party/boringssl/include/openssl/lhash.h +192 -0
- data/third_party/boringssl/include/openssl/lhash_macros.h +132 -0
- data/third_party/boringssl/include/openssl/md4.h +106 -0
- data/third_party/boringssl/include/openssl/md5.h +107 -0
- data/third_party/boringssl/include/openssl/mem.h +150 -0
- data/third_party/boringssl/include/openssl/newhope.h +158 -0
- data/third_party/boringssl/include/openssl/nid.h +4166 -0
- data/third_party/boringssl/include/openssl/obj.h +226 -0
- data/third_party/boringssl/include/openssl/obj_mac.h +18 -0
- data/third_party/boringssl/include/openssl/objects.h +18 -0
- data/third_party/boringssl/include/openssl/opensslconf.h +60 -0
- data/third_party/boringssl/include/openssl/opensslv.h +18 -0
- data/third_party/boringssl/include/openssl/ossl_typ.h +18 -0
- data/third_party/boringssl/include/openssl/pem.h +517 -0
- data/third_party/boringssl/include/openssl/pkcs12.h +18 -0
- data/third_party/boringssl/include/openssl/pkcs7.h +16 -0
- data/third_party/boringssl/include/openssl/pkcs8.h +236 -0
- data/third_party/boringssl/include/openssl/poly1305.h +51 -0
- data/third_party/boringssl/include/openssl/rand.h +122 -0
- data/third_party/boringssl/include/openssl/rc4.h +96 -0
- data/third_party/boringssl/include/openssl/ripemd.h +107 -0
- data/third_party/boringssl/include/openssl/rsa.h +699 -0
- data/third_party/boringssl/include/openssl/safestack.h +16 -0
- data/third_party/boringssl/include/openssl/sha.h +260 -0
- data/third_party/boringssl/include/openssl/srtp.h +18 -0
- data/third_party/boringssl/include/openssl/ssl.h +4826 -0
- data/third_party/boringssl/include/openssl/ssl3.h +434 -0
- data/third_party/boringssl/include/openssl/stack.h +293 -0
- data/third_party/boringssl/include/openssl/stack_macros.h +3902 -0
- data/third_party/boringssl/include/openssl/thread.h +191 -0
- data/third_party/boringssl/include/openssl/time_support.h +91 -0
- data/third_party/boringssl/include/openssl/tls1.h +657 -0
- data/third_party/boringssl/include/openssl/type_check.h +91 -0
- data/third_party/boringssl/include/openssl/x509.h +1299 -0
- data/third_party/boringssl/include/openssl/x509_vfy.h +618 -0
- data/third_party/boringssl/include/openssl/x509v3.h +819 -0
- data/third_party/boringssl/ssl/custom_extensions.c +255 -0
- data/third_party/boringssl/ssl/d1_both.c +845 -0
- data/third_party/boringssl/ssl/d1_lib.c +270 -0
- data/third_party/boringssl/ssl/d1_pkt.c +419 -0
- data/third_party/boringssl/ssl/d1_srtp.c +236 -0
- data/third_party/boringssl/ssl/dtls_method.c +203 -0
- data/third_party/boringssl/ssl/dtls_record.c +309 -0
- data/third_party/boringssl/ssl/handshake_client.c +2002 -0
- data/third_party/boringssl/ssl/handshake_server.c +1932 -0
- data/third_party/boringssl/ssl/internal.h +1551 -0
- data/third_party/boringssl/ssl/s3_both.c +745 -0
- data/third_party/boringssl/ssl/s3_enc.c +412 -0
- data/third_party/boringssl/ssl/s3_lib.c +336 -0
- data/third_party/boringssl/ssl/s3_pkt.c +497 -0
- data/third_party/boringssl/ssl/ssl_aead_ctx.c +329 -0
- data/third_party/boringssl/ssl/ssl_asn1.c +748 -0
- data/third_party/boringssl/ssl/ssl_buffer.c +311 -0
- data/third_party/boringssl/ssl/ssl_cert.c +814 -0
- data/third_party/boringssl/ssl/ssl_cipher.c +2062 -0
- data/third_party/boringssl/ssl/ssl_ecdh.c +610 -0
- data/third_party/boringssl/ssl/ssl_file.c +586 -0
- data/third_party/boringssl/ssl/ssl_lib.c +3063 -0
- data/third_party/boringssl/ssl/ssl_rsa.c +793 -0
- data/third_party/boringssl/ssl/ssl_session.c +985 -0
- data/third_party/boringssl/ssl/ssl_stat.c +509 -0
- data/third_party/boringssl/ssl/t1_enc.c +547 -0
- data/third_party/boringssl/ssl/t1_lib.c +3279 -0
- data/third_party/boringssl/ssl/tls13_both.c +440 -0
- data/third_party/boringssl/ssl/tls13_client.c +682 -0
- data/third_party/boringssl/ssl/tls13_enc.c +391 -0
- data/third_party/boringssl/ssl/tls13_server.c +672 -0
- data/third_party/boringssl/ssl/tls_method.c +245 -0
- data/third_party/boringssl/ssl/tls_record.c +461 -0
- data/third_party/cares/ares_build.h +264 -0
- data/third_party/cares/cares/ares.h +636 -0
- data/third_party/cares/cares/ares__close_sockets.c +61 -0
- data/third_party/cares/cares/ares__get_hostent.c +261 -0
- data/third_party/cares/cares/ares__read_line.c +73 -0
- data/third_party/cares/cares/ares__timeval.c +111 -0
- data/third_party/cares/cares/ares_cancel.c +63 -0
- data/third_party/cares/cares/ares_create_query.c +202 -0
- data/third_party/cares/cares/ares_data.c +221 -0
- data/third_party/cares/cares/ares_data.h +72 -0
- data/third_party/cares/cares/ares_destroy.c +108 -0
- data/third_party/cares/cares/ares_dns.h +103 -0
- data/third_party/cares/cares/ares_expand_name.c +205 -0
- data/third_party/cares/cares/ares_expand_string.c +70 -0
- data/third_party/cares/cares/ares_fds.c +59 -0
- data/third_party/cares/cares/ares_free_hostent.c +41 -0
- data/third_party/cares/cares/ares_free_string.c +25 -0
- data/third_party/cares/cares/ares_getenv.c +30 -0
- data/third_party/cares/cares/ares_getenv.h +26 -0
- data/third_party/cares/cares/ares_gethostbyaddr.c +294 -0
- data/third_party/cares/cares/ares_gethostbyname.c +518 -0
- data/third_party/cares/cares/ares_getnameinfo.c +422 -0
- data/third_party/cares/cares/ares_getopt.c +122 -0
- data/third_party/cares/cares/ares_getopt.h +53 -0
- data/third_party/cares/cares/ares_getsock.c +66 -0
- data/third_party/cares/cares/ares_inet_net_pton.h +25 -0
- data/third_party/cares/cares/ares_init.c +2146 -0
- data/third_party/cares/cares/ares_iphlpapi.h +221 -0
- data/third_party/cares/cares/ares_ipv6.h +78 -0
- data/third_party/cares/cares/ares_library_init.c +167 -0
- data/third_party/cares/cares/ares_library_init.h +42 -0
- data/third_party/cares/cares/ares_llist.c +63 -0
- data/third_party/cares/cares/ares_llist.h +39 -0
- data/third_party/cares/cares/ares_mkquery.c +24 -0
- data/third_party/cares/cares/ares_nowarn.c +260 -0
- data/third_party/cares/cares/ares_nowarn.h +61 -0
- data/third_party/cares/cares/ares_options.c +402 -0
- data/third_party/cares/cares/ares_parse_a_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_mx_reply.c +170 -0
- data/third_party/cares/cares/ares_parse_naptr_reply.c +188 -0
- data/third_party/cares/cares/ares_parse_ns_reply.c +183 -0
- data/third_party/cares/cares/ares_parse_ptr_reply.c +219 -0
- data/third_party/cares/cares/ares_parse_soa_reply.c +133 -0
- data/third_party/cares/cares/ares_parse_srv_reply.c +179 -0
- data/third_party/cares/cares/ares_parse_txt_reply.c +220 -0
- data/third_party/cares/cares/ares_platform.c +11035 -0
- data/third_party/cares/cares/ares_platform.h +43 -0
- data/third_party/cares/cares/ares_private.h +363 -0
- data/third_party/cares/cares/ares_process.c +1359 -0
- data/third_party/cares/cares/ares_query.c +186 -0
- data/third_party/cares/cares/ares_rules.h +125 -0
- data/third_party/cares/cares/ares_search.c +316 -0
- data/third_party/cares/cares/ares_send.c +131 -0
- data/third_party/cares/cares/ares_setup.h +217 -0
- data/third_party/cares/cares/ares_strcasecmp.c +66 -0
- data/third_party/cares/cares/ares_strcasecmp.h +30 -0
- data/third_party/cares/cares/ares_strdup.c +49 -0
- data/third_party/cares/cares/ares_strdup.h +24 -0
- data/third_party/cares/cares/ares_strerror.c +56 -0
- data/third_party/cares/cares/ares_timeout.c +88 -0
- data/third_party/cares/cares/ares_version.c +11 -0
- data/third_party/cares/cares/ares_version.h +24 -0
- data/third_party/cares/cares/ares_writev.c +79 -0
- data/third_party/cares/cares/bitncmp.c +59 -0
- data/third_party/cares/cares/bitncmp.h +26 -0
- data/third_party/cares/cares/config-win32.h +377 -0
- data/third_party/cares/cares/inet_net_pton.c +450 -0
- data/third_party/cares/cares/inet_ntop.c +208 -0
- data/third_party/cares/cares/setup_once.h +554 -0
- data/third_party/cares/cares/windows_port.c +22 -0
- data/third_party/cares/config_darwin/ares_config.h +523 -0
- data/third_party/cares/config_linux/ares_config.h +524 -0
- data/third_party/nanopb/pb.h +579 -0
- data/third_party/nanopb/pb_common.c +97 -0
- data/third_party/nanopb/pb_common.h +42 -0
- data/third_party/nanopb/pb_decode.c +1347 -0
- data/third_party/nanopb/pb_decode.h +149 -0
- data/third_party/nanopb/pb_encode.c +696 -0
- data/third_party/nanopb/pb_encode.h +154 -0
- data/third_party/zlib/adler32.c +179 -0
- data/third_party/zlib/compress.c +80 -0
- data/third_party/zlib/crc32.c +425 -0
- data/third_party/zlib/crc32.h +441 -0
- data/third_party/zlib/deflate.c +1967 -0
- data/third_party/zlib/deflate.h +346 -0
- data/third_party/zlib/gzclose.c +25 -0
- data/third_party/zlib/gzguts.h +209 -0
- data/third_party/zlib/gzlib.c +634 -0
- data/third_party/zlib/gzread.c +594 -0
- data/third_party/zlib/gzwrite.c +577 -0
- data/third_party/zlib/infback.c +640 -0
- data/third_party/zlib/inffast.c +340 -0
- data/third_party/zlib/inffast.h +11 -0
- data/third_party/zlib/inffixed.h +94 -0
- data/third_party/zlib/inflate.c +1512 -0
- data/third_party/zlib/inflate.h +122 -0
- data/third_party/zlib/inftrees.c +306 -0
- data/third_party/zlib/inftrees.h +62 -0
- data/third_party/zlib/trees.c +1226 -0
- data/third_party/zlib/trees.h +128 -0
- data/third_party/zlib/uncompr.c +59 -0
- data/third_party/zlib/zconf.h +511 -0
- data/third_party/zlib/zlib.h +1768 -0
- data/third_party/zlib/zutil.c +324 -0
- data/third_party/zlib/zutil.h +253 -0
- metadata +1397 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/*
|
|
2
|
+
*
|
|
3
|
+
* Copyright 2015, Google Inc.
|
|
4
|
+
* All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Redistribution and use in source and binary forms, with or without
|
|
7
|
+
* modification, are permitted provided that the following conditions are
|
|
8
|
+
* met:
|
|
9
|
+
*
|
|
10
|
+
* * Redistributions of source code must retain the above copyright
|
|
11
|
+
* notice, this list of conditions and the following disclaimer.
|
|
12
|
+
* * Redistributions in binary form must reproduce the above
|
|
13
|
+
* copyright notice, this list of conditions and the following disclaimer
|
|
14
|
+
* in the documentation and/or other materials provided with the
|
|
15
|
+
* distribution.
|
|
16
|
+
* * Neither the name of Google Inc. nor the names of its
|
|
17
|
+
* contributors may be used to endorse or promote products derived from
|
|
18
|
+
* this software without specific prior written permission.
|
|
19
|
+
*
|
|
20
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
21
|
+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
22
|
+
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
23
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
24
|
+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
25
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
26
|
+
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
27
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
28
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
29
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
30
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
31
|
+
*
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
#ifndef GRPC_SUPPORT_USEFUL_H
|
|
35
|
+
#define GRPC_SUPPORT_USEFUL_H
|
|
36
|
+
|
|
37
|
+
/* useful macros that don't belong anywhere else */
|
|
38
|
+
|
|
39
|
+
#define GPR_MIN(a, b) ((a) < (b) ? (a) : (b))
|
|
40
|
+
#define GPR_MAX(a, b) ((a) > (b) ? (a) : (b))
|
|
41
|
+
#define GPR_CLAMP(a, min, max) ((a) < (min) ? (min) : (a) > (max) ? (max) : (a))
|
|
42
|
+
/* rotl, rotr assume x is unsigned */
|
|
43
|
+
#define GPR_ROTL(x, n) (((x) << (n)) | ((x) >> (sizeof(x) * 8 - (n))))
|
|
44
|
+
#define GPR_ROTR(x, n) (((x) >> (n)) | ((x) << (sizeof(x) * 8 - (n))))
|
|
45
|
+
|
|
46
|
+
#define GPR_ARRAY_SIZE(array) (sizeof(array) / sizeof(*(array)))
|
|
47
|
+
|
|
48
|
+
#define GPR_SWAP(type, a, b) \
|
|
49
|
+
do { \
|
|
50
|
+
type x = a; \
|
|
51
|
+
a = b; \
|
|
52
|
+
b = x; \
|
|
53
|
+
} while (0)
|
|
54
|
+
|
|
55
|
+
/** Set the \a n-th bit of \a i (a mutable pointer). */
|
|
56
|
+
#define GPR_BITSET(i, n) ((*(i)) |= (1u << (n)))
|
|
57
|
+
|
|
58
|
+
/** Clear the \a n-th bit of \a i (a mutable pointer). */
|
|
59
|
+
#define GPR_BITCLEAR(i, n) ((*(i)) &= ~(1u << (n)))
|
|
60
|
+
|
|
61
|
+
/** Get the \a n-th bit of \a i */
|
|
62
|
+
#define GPR_BITGET(i, n) (((i) & (1u << (n))) != 0)
|
|
63
|
+
|
|
64
|
+
#define GPR_INTERNAL_HEXDIGIT_BITCOUNT(x) \
|
|
65
|
+
((x) - (((x) >> 1) & 0x77777777) - (((x) >> 2) & 0x33333333) - \
|
|
66
|
+
(((x) >> 3) & 0x11111111))
|
|
67
|
+
|
|
68
|
+
/** Returns number of bits set in bitset \a i */
|
|
69
|
+
#define GPR_BITCOUNT(i) \
|
|
70
|
+
(((GPR_INTERNAL_HEXDIGIT_BITCOUNT(i) + \
|
|
71
|
+
(GPR_INTERNAL_HEXDIGIT_BITCOUNT(i) >> 4)) & \
|
|
72
|
+
0x0f0f0f0f) % \
|
|
73
|
+
255)
|
|
74
|
+
|
|
75
|
+
#define GPR_ICMP(a, b) ((a) < (b) ? -1 : ((a) > (b) ? 1 : 0))
|
|
76
|
+
|
|
77
|
+
#define GPR_HASH_POINTER(x, range) \
|
|
78
|
+
((((size_t)x) >> 4) ^ (((size_t)x) >> 9) ^ (((size_t)x) >> 14)) % (range)
|
|
79
|
+
|
|
80
|
+
#endif /* GRPC_SUPPORT_USEFUL_H */
|
|
@@ -0,0 +1,1270 @@
|
|
|
1
|
+
/* Copyright (c) 2015, Google Inc.
|
|
2
|
+
*
|
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
|
6
|
+
*
|
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
14
|
+
|
|
15
|
+
/* This file was generated by err_data_generate.go. */
|
|
16
|
+
|
|
17
|
+
#include <openssl/base.h>
|
|
18
|
+
#include <openssl/err.h>
|
|
19
|
+
#include <openssl/type_check.h>
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_NONE == 1, library_values_changed_1);
|
|
23
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_SYS == 2, library_values_changed_2);
|
|
24
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_BN == 3, library_values_changed_3);
|
|
25
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_RSA == 4, library_values_changed_4);
|
|
26
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_DH == 5, library_values_changed_5);
|
|
27
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_EVP == 6, library_values_changed_6);
|
|
28
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_BUF == 7, library_values_changed_7);
|
|
29
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_OBJ == 8, library_values_changed_8);
|
|
30
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_PEM == 9, library_values_changed_9);
|
|
31
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_DSA == 10, library_values_changed_10);
|
|
32
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_X509 == 11, library_values_changed_11);
|
|
33
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_ASN1 == 12, library_values_changed_12);
|
|
34
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_CONF == 13, library_values_changed_13);
|
|
35
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_CRYPTO == 14, library_values_changed_14);
|
|
36
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_EC == 15, library_values_changed_15);
|
|
37
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_SSL == 16, library_values_changed_16);
|
|
38
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_BIO == 17, library_values_changed_17);
|
|
39
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_PKCS7 == 18, library_values_changed_18);
|
|
40
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_PKCS8 == 19, library_values_changed_19);
|
|
41
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_X509V3 == 20, library_values_changed_20);
|
|
42
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_RAND == 21, library_values_changed_21);
|
|
43
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_ENGINE == 22, library_values_changed_22);
|
|
44
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_OCSP == 23, library_values_changed_23);
|
|
45
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_UI == 24, library_values_changed_24);
|
|
46
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_COMP == 25, library_values_changed_25);
|
|
47
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_ECDSA == 26, library_values_changed_26);
|
|
48
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_ECDH == 27, library_values_changed_27);
|
|
49
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_HMAC == 28, library_values_changed_28);
|
|
50
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_DIGEST == 29, library_values_changed_29);
|
|
51
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_CIPHER == 30, library_values_changed_30);
|
|
52
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_HKDF == 31, library_values_changed_31);
|
|
53
|
+
OPENSSL_COMPILE_ASSERT(ERR_LIB_USER == 32, library_values_changed_32);
|
|
54
|
+
OPENSSL_COMPILE_ASSERT(ERR_NUM_LIBS == 33, library_values_changed_num);
|
|
55
|
+
|
|
56
|
+
const uint32_t kOpenSSLReasonValues[] = {
|
|
57
|
+
0xc320838,
|
|
58
|
+
0xc328852,
|
|
59
|
+
0xc330861,
|
|
60
|
+
0xc338871,
|
|
61
|
+
0xc340880,
|
|
62
|
+
0xc348899,
|
|
63
|
+
0xc3508a5,
|
|
64
|
+
0xc3588c2,
|
|
65
|
+
0xc3608d4,
|
|
66
|
+
0xc3688e2,
|
|
67
|
+
0xc3708f2,
|
|
68
|
+
0xc3788ff,
|
|
69
|
+
0xc38090f,
|
|
70
|
+
0xc38891a,
|
|
71
|
+
0xc390930,
|
|
72
|
+
0xc39893f,
|
|
73
|
+
0xc3a0953,
|
|
74
|
+
0xc3a8845,
|
|
75
|
+
0xc3b00ea,
|
|
76
|
+
0x10320845,
|
|
77
|
+
0x103293ab,
|
|
78
|
+
0x103313b7,
|
|
79
|
+
0x103393d0,
|
|
80
|
+
0x103413e3,
|
|
81
|
+
0x10348e8b,
|
|
82
|
+
0x10350c19,
|
|
83
|
+
0x103593f6,
|
|
84
|
+
0x1036140b,
|
|
85
|
+
0x1036941e,
|
|
86
|
+
0x1037143d,
|
|
87
|
+
0x10379456,
|
|
88
|
+
0x1038146b,
|
|
89
|
+
0x10389489,
|
|
90
|
+
0x10391498,
|
|
91
|
+
0x103994b4,
|
|
92
|
+
0x103a14cf,
|
|
93
|
+
0x103a94de,
|
|
94
|
+
0x103b14fa,
|
|
95
|
+
0x103b9515,
|
|
96
|
+
0x103c152c,
|
|
97
|
+
0x103c80ea,
|
|
98
|
+
0x103d153d,
|
|
99
|
+
0x103d9551,
|
|
100
|
+
0x103e1570,
|
|
101
|
+
0x103e957f,
|
|
102
|
+
0x103f1596,
|
|
103
|
+
0x103f95a9,
|
|
104
|
+
0x10400bea,
|
|
105
|
+
0x104095bc,
|
|
106
|
+
0x104115da,
|
|
107
|
+
0x104195ed,
|
|
108
|
+
0x10421607,
|
|
109
|
+
0x10429617,
|
|
110
|
+
0x1043162b,
|
|
111
|
+
0x10439641,
|
|
112
|
+
0x10441659,
|
|
113
|
+
0x1044966e,
|
|
114
|
+
0x10451682,
|
|
115
|
+
0x10459694,
|
|
116
|
+
0x104605fb,
|
|
117
|
+
0x1046893f,
|
|
118
|
+
0x104716a9,
|
|
119
|
+
0x104796c0,
|
|
120
|
+
0x104816d5,
|
|
121
|
+
0x104896e3,
|
|
122
|
+
0x14320bcd,
|
|
123
|
+
0x14328bdb,
|
|
124
|
+
0x14330bea,
|
|
125
|
+
0x14338bfc,
|
|
126
|
+
0x143400ac,
|
|
127
|
+
0x143480ea,
|
|
128
|
+
0x18320083,
|
|
129
|
+
0x18328ee1,
|
|
130
|
+
0x183300ac,
|
|
131
|
+
0x18338ef7,
|
|
132
|
+
0x18340f0b,
|
|
133
|
+
0x183480ea,
|
|
134
|
+
0x18350f20,
|
|
135
|
+
0x18358f38,
|
|
136
|
+
0x18360f4d,
|
|
137
|
+
0x18368f61,
|
|
138
|
+
0x18370f85,
|
|
139
|
+
0x18378f9b,
|
|
140
|
+
0x18380faf,
|
|
141
|
+
0x18388fbf,
|
|
142
|
+
0x18390a57,
|
|
143
|
+
0x18398fcf,
|
|
144
|
+
0x183a0fe4,
|
|
145
|
+
0x183a8ff8,
|
|
146
|
+
0x183b0c25,
|
|
147
|
+
0x183b9005,
|
|
148
|
+
0x183c1017,
|
|
149
|
+
0x183c9022,
|
|
150
|
+
0x183d1032,
|
|
151
|
+
0x183d9043,
|
|
152
|
+
0x183e1054,
|
|
153
|
+
0x183e9066,
|
|
154
|
+
0x183f108f,
|
|
155
|
+
0x183f90a8,
|
|
156
|
+
0x184010c0,
|
|
157
|
+
0x184086d3,
|
|
158
|
+
0x203210e7,
|
|
159
|
+
0x243210f3,
|
|
160
|
+
0x24328985,
|
|
161
|
+
0x24331105,
|
|
162
|
+
0x24339112,
|
|
163
|
+
0x2434111f,
|
|
164
|
+
0x24349131,
|
|
165
|
+
0x24351140,
|
|
166
|
+
0x2435915d,
|
|
167
|
+
0x2436116a,
|
|
168
|
+
0x24369178,
|
|
169
|
+
0x24371186,
|
|
170
|
+
0x24379194,
|
|
171
|
+
0x2438119d,
|
|
172
|
+
0x243891aa,
|
|
173
|
+
0x243911bd,
|
|
174
|
+
0x28320c0d,
|
|
175
|
+
0x28328c25,
|
|
176
|
+
0x28330bea,
|
|
177
|
+
0x28338c38,
|
|
178
|
+
0x28340c19,
|
|
179
|
+
0x283480ac,
|
|
180
|
+
0x283500ea,
|
|
181
|
+
0x2c3228ca,
|
|
182
|
+
0x2c32a8d8,
|
|
183
|
+
0x2c3328ea,
|
|
184
|
+
0x2c33a8fc,
|
|
185
|
+
0x2c342910,
|
|
186
|
+
0x2c34a922,
|
|
187
|
+
0x2c35293d,
|
|
188
|
+
0x2c35a94f,
|
|
189
|
+
0x2c362962,
|
|
190
|
+
0x2c36832d,
|
|
191
|
+
0x2c37296f,
|
|
192
|
+
0x2c37a981,
|
|
193
|
+
0x2c382994,
|
|
194
|
+
0x2c38a9ab,
|
|
195
|
+
0x2c3929b9,
|
|
196
|
+
0x2c39a9c9,
|
|
197
|
+
0x2c3a29db,
|
|
198
|
+
0x2c3aa9ef,
|
|
199
|
+
0x2c3b2a00,
|
|
200
|
+
0x2c3baa1f,
|
|
201
|
+
0x2c3c2a33,
|
|
202
|
+
0x2c3caa49,
|
|
203
|
+
0x2c3d2a62,
|
|
204
|
+
0x2c3daa7f,
|
|
205
|
+
0x2c3e2a90,
|
|
206
|
+
0x2c3eaa9e,
|
|
207
|
+
0x2c3f2ab6,
|
|
208
|
+
0x2c3faace,
|
|
209
|
+
0x2c402adb,
|
|
210
|
+
0x2c4090e7,
|
|
211
|
+
0x2c412aec,
|
|
212
|
+
0x2c41aaff,
|
|
213
|
+
0x2c4210c0,
|
|
214
|
+
0x2c42ab10,
|
|
215
|
+
0x2c430720,
|
|
216
|
+
0x2c43aa11,
|
|
217
|
+
0x30320000,
|
|
218
|
+
0x30328015,
|
|
219
|
+
0x3033001f,
|
|
220
|
+
0x30338038,
|
|
221
|
+
0x3034004a,
|
|
222
|
+
0x30348064,
|
|
223
|
+
0x3035006b,
|
|
224
|
+
0x30358083,
|
|
225
|
+
0x30360094,
|
|
226
|
+
0x303680ac,
|
|
227
|
+
0x303700b9,
|
|
228
|
+
0x303780c8,
|
|
229
|
+
0x303800ea,
|
|
230
|
+
0x303880f7,
|
|
231
|
+
0x3039010a,
|
|
232
|
+
0x30398125,
|
|
233
|
+
0x303a013a,
|
|
234
|
+
0x303a814e,
|
|
235
|
+
0x303b0162,
|
|
236
|
+
0x303b8173,
|
|
237
|
+
0x303c018c,
|
|
238
|
+
0x303c81a9,
|
|
239
|
+
0x303d01b7,
|
|
240
|
+
0x303d81cb,
|
|
241
|
+
0x303e01db,
|
|
242
|
+
0x303e81f4,
|
|
243
|
+
0x303f0204,
|
|
244
|
+
0x303f8217,
|
|
245
|
+
0x30400226,
|
|
246
|
+
0x30408232,
|
|
247
|
+
0x30410247,
|
|
248
|
+
0x30418257,
|
|
249
|
+
0x3042026e,
|
|
250
|
+
0x3042827b,
|
|
251
|
+
0x3043028e,
|
|
252
|
+
0x3043829d,
|
|
253
|
+
0x304402b2,
|
|
254
|
+
0x304482d3,
|
|
255
|
+
0x304502e6,
|
|
256
|
+
0x304582f9,
|
|
257
|
+
0x30460312,
|
|
258
|
+
0x3046832d,
|
|
259
|
+
0x3047034a,
|
|
260
|
+
0x30478363,
|
|
261
|
+
0x30480371,
|
|
262
|
+
0x30488382,
|
|
263
|
+
0x30490391,
|
|
264
|
+
0x304983a9,
|
|
265
|
+
0x304a03bb,
|
|
266
|
+
0x304a83cf,
|
|
267
|
+
0x304b03ee,
|
|
268
|
+
0x304b8401,
|
|
269
|
+
0x304c040c,
|
|
270
|
+
0x304c841d,
|
|
271
|
+
0x304d0429,
|
|
272
|
+
0x304d843f,
|
|
273
|
+
0x304e044d,
|
|
274
|
+
0x304e8463,
|
|
275
|
+
0x304f0475,
|
|
276
|
+
0x304f8487,
|
|
277
|
+
0x3050049a,
|
|
278
|
+
0x305084ad,
|
|
279
|
+
0x305104be,
|
|
280
|
+
0x305184ce,
|
|
281
|
+
0x305204e6,
|
|
282
|
+
0x305284fb,
|
|
283
|
+
0x30530513,
|
|
284
|
+
0x30538527,
|
|
285
|
+
0x3054053f,
|
|
286
|
+
0x30548558,
|
|
287
|
+
0x30550571,
|
|
288
|
+
0x3055858e,
|
|
289
|
+
0x30560599,
|
|
290
|
+
0x305685b1,
|
|
291
|
+
0x305705c1,
|
|
292
|
+
0x305785d2,
|
|
293
|
+
0x305805e5,
|
|
294
|
+
0x305885fb,
|
|
295
|
+
0x30590604,
|
|
296
|
+
0x30598619,
|
|
297
|
+
0x305a062c,
|
|
298
|
+
0x305a863b,
|
|
299
|
+
0x305b065b,
|
|
300
|
+
0x305b866a,
|
|
301
|
+
0x305c068b,
|
|
302
|
+
0x305c86a7,
|
|
303
|
+
0x305d06b3,
|
|
304
|
+
0x305d86d3,
|
|
305
|
+
0x305e06ef,
|
|
306
|
+
0x305e8700,
|
|
307
|
+
0x305f0716,
|
|
308
|
+
0x305f8720,
|
|
309
|
+
0x34320b47,
|
|
310
|
+
0x34328b5b,
|
|
311
|
+
0x34330b78,
|
|
312
|
+
0x34338b8b,
|
|
313
|
+
0x34340b9a,
|
|
314
|
+
0x34348bb7,
|
|
315
|
+
0x3c320083,
|
|
316
|
+
0x3c328c62,
|
|
317
|
+
0x3c330c7b,
|
|
318
|
+
0x3c338c96,
|
|
319
|
+
0x3c340cb3,
|
|
320
|
+
0x3c348cdd,
|
|
321
|
+
0x3c350cf8,
|
|
322
|
+
0x3c358d1e,
|
|
323
|
+
0x3c360d37,
|
|
324
|
+
0x3c368d4f,
|
|
325
|
+
0x3c370d60,
|
|
326
|
+
0x3c378d6e,
|
|
327
|
+
0x3c380d7b,
|
|
328
|
+
0x3c388d8f,
|
|
329
|
+
0x3c390c25,
|
|
330
|
+
0x3c398da3,
|
|
331
|
+
0x3c3a0db7,
|
|
332
|
+
0x3c3a88ff,
|
|
333
|
+
0x3c3b0dc7,
|
|
334
|
+
0x3c3b8de2,
|
|
335
|
+
0x3c3c0df4,
|
|
336
|
+
0x3c3c8e0a,
|
|
337
|
+
0x3c3d0e14,
|
|
338
|
+
0x3c3d8e28,
|
|
339
|
+
0x3c3e0e36,
|
|
340
|
+
0x3c3e8e5b,
|
|
341
|
+
0x3c3f0c4e,
|
|
342
|
+
0x3c3f8e44,
|
|
343
|
+
0x3c4000ac,
|
|
344
|
+
0x3c4080ea,
|
|
345
|
+
0x3c410cce,
|
|
346
|
+
0x3c418d0d,
|
|
347
|
+
0x403216fa,
|
|
348
|
+
0x40329710,
|
|
349
|
+
0x4033173e,
|
|
350
|
+
0x40339748,
|
|
351
|
+
0x4034175f,
|
|
352
|
+
0x4034977d,
|
|
353
|
+
0x4035178d,
|
|
354
|
+
0x4035979f,
|
|
355
|
+
0x403617ac,
|
|
356
|
+
0x403697b8,
|
|
357
|
+
0x403717cd,
|
|
358
|
+
0x403797df,
|
|
359
|
+
0x403817ea,
|
|
360
|
+
0x403897fc,
|
|
361
|
+
0x40390e8b,
|
|
362
|
+
0x4039980c,
|
|
363
|
+
0x403a181f,
|
|
364
|
+
0x403a9840,
|
|
365
|
+
0x403b1851,
|
|
366
|
+
0x403b9861,
|
|
367
|
+
0x403c0064,
|
|
368
|
+
0x403c8083,
|
|
369
|
+
0x403d18aa,
|
|
370
|
+
0x403d98c0,
|
|
371
|
+
0x403e18cf,
|
|
372
|
+
0x403e98e2,
|
|
373
|
+
0x403f18fc,
|
|
374
|
+
0x403f990a,
|
|
375
|
+
0x4040191f,
|
|
376
|
+
0x40409933,
|
|
377
|
+
0x40411950,
|
|
378
|
+
0x4041996b,
|
|
379
|
+
0x40421984,
|
|
380
|
+
0x40429997,
|
|
381
|
+
0x404319ab,
|
|
382
|
+
0x404399c3,
|
|
383
|
+
0x404419da,
|
|
384
|
+
0x404480ac,
|
|
385
|
+
0x404519ef,
|
|
386
|
+
0x40459a01,
|
|
387
|
+
0x40461a25,
|
|
388
|
+
0x40469a45,
|
|
389
|
+
0x40471a53,
|
|
390
|
+
0x40479a7a,
|
|
391
|
+
0x40481ab7,
|
|
392
|
+
0x40489ad0,
|
|
393
|
+
0x40491ae7,
|
|
394
|
+
0x40499b01,
|
|
395
|
+
0x404a1b18,
|
|
396
|
+
0x404a9b36,
|
|
397
|
+
0x404b1b4e,
|
|
398
|
+
0x404b9b65,
|
|
399
|
+
0x404c1b7b,
|
|
400
|
+
0x404c9b8d,
|
|
401
|
+
0x404d1bae,
|
|
402
|
+
0x404d9bd0,
|
|
403
|
+
0x404e1be4,
|
|
404
|
+
0x404e9bf1,
|
|
405
|
+
0x404f1c1e,
|
|
406
|
+
0x404f9c47,
|
|
407
|
+
0x40501c71,
|
|
408
|
+
0x40509c85,
|
|
409
|
+
0x40511ca0,
|
|
410
|
+
0x40519cb0,
|
|
411
|
+
0x40521cc7,
|
|
412
|
+
0x40529ceb,
|
|
413
|
+
0x40531d03,
|
|
414
|
+
0x40539d16,
|
|
415
|
+
0x40541d2b,
|
|
416
|
+
0x40549d4e,
|
|
417
|
+
0x40551d5c,
|
|
418
|
+
0x40559d79,
|
|
419
|
+
0x40561d86,
|
|
420
|
+
0x40569d9f,
|
|
421
|
+
0x40571db7,
|
|
422
|
+
0x40579dca,
|
|
423
|
+
0x40581ddf,
|
|
424
|
+
0x40589e06,
|
|
425
|
+
0x40591e35,
|
|
426
|
+
0x40599e62,
|
|
427
|
+
0x405a1e76,
|
|
428
|
+
0x405a9e86,
|
|
429
|
+
0x405b1e9e,
|
|
430
|
+
0x405b9eaf,
|
|
431
|
+
0x405c1ec2,
|
|
432
|
+
0x405c9ed3,
|
|
433
|
+
0x405d1ee0,
|
|
434
|
+
0x405d9ef7,
|
|
435
|
+
0x405e1f17,
|
|
436
|
+
0x405e8a95,
|
|
437
|
+
0x405f1f38,
|
|
438
|
+
0x405f9f45,
|
|
439
|
+
0x40601f53,
|
|
440
|
+
0x40609f75,
|
|
441
|
+
0x40611f9d,
|
|
442
|
+
0x40619fb2,
|
|
443
|
+
0x40621fc9,
|
|
444
|
+
0x40629fda,
|
|
445
|
+
0x40631feb,
|
|
446
|
+
0x4063a000,
|
|
447
|
+
0x40642017,
|
|
448
|
+
0x4064a043,
|
|
449
|
+
0x4065205e,
|
|
450
|
+
0x4065a075,
|
|
451
|
+
0x4066208d,
|
|
452
|
+
0x4066a0b7,
|
|
453
|
+
0x406720e2,
|
|
454
|
+
0x4067a103,
|
|
455
|
+
0x40682116,
|
|
456
|
+
0x4068a137,
|
|
457
|
+
0x40692169,
|
|
458
|
+
0x4069a197,
|
|
459
|
+
0x406a21b8,
|
|
460
|
+
0x406aa1d8,
|
|
461
|
+
0x406b2360,
|
|
462
|
+
0x406ba383,
|
|
463
|
+
0x406c2399,
|
|
464
|
+
0x406ca5c5,
|
|
465
|
+
0x406d25f4,
|
|
466
|
+
0x406da61c,
|
|
467
|
+
0x406e264a,
|
|
468
|
+
0x406ea662,
|
|
469
|
+
0x406f2681,
|
|
470
|
+
0x406fa696,
|
|
471
|
+
0x407026a9,
|
|
472
|
+
0x4070a6c6,
|
|
473
|
+
0x40710800,
|
|
474
|
+
0x4071a6d8,
|
|
475
|
+
0x407226eb,
|
|
476
|
+
0x4072a704,
|
|
477
|
+
0x4073271c,
|
|
478
|
+
0x4073936d,
|
|
479
|
+
0x40742730,
|
|
480
|
+
0x4074a74a,
|
|
481
|
+
0x4075275b,
|
|
482
|
+
0x4075a76f,
|
|
483
|
+
0x4076277d,
|
|
484
|
+
0x407691aa,
|
|
485
|
+
0x407727a2,
|
|
486
|
+
0x4077a7c4,
|
|
487
|
+
0x407827df,
|
|
488
|
+
0x4078a818,
|
|
489
|
+
0x4079282f,
|
|
490
|
+
0x4079a845,
|
|
491
|
+
0x407a2851,
|
|
492
|
+
0x407aa864,
|
|
493
|
+
0x407b2879,
|
|
494
|
+
0x407ba88b,
|
|
495
|
+
0x407c28a0,
|
|
496
|
+
0x407ca8a9,
|
|
497
|
+
0x407d2152,
|
|
498
|
+
0x407d9c57,
|
|
499
|
+
0x407e27f4,
|
|
500
|
+
0x407e9e16,
|
|
501
|
+
0x407f1a67,
|
|
502
|
+
0x407f9887,
|
|
503
|
+
0x40801c2e,
|
|
504
|
+
0x40809a8f,
|
|
505
|
+
0x40811cd9,
|
|
506
|
+
0x40819c08,
|
|
507
|
+
0x40822635,
|
|
508
|
+
0x4082986d,
|
|
509
|
+
0x40831df1,
|
|
510
|
+
0x4083a028,
|
|
511
|
+
0x40841aa3,
|
|
512
|
+
0x40849e4e,
|
|
513
|
+
0x41f4228b,
|
|
514
|
+
0x41f9231d,
|
|
515
|
+
0x41fe2210,
|
|
516
|
+
0x41fea3ec,
|
|
517
|
+
0x41ff24dd,
|
|
518
|
+
0x420322a4,
|
|
519
|
+
0x420822c6,
|
|
520
|
+
0x4208a302,
|
|
521
|
+
0x420921f4,
|
|
522
|
+
0x4209a33c,
|
|
523
|
+
0x420a224b,
|
|
524
|
+
0x420aa22b,
|
|
525
|
+
0x420b226b,
|
|
526
|
+
0x420ba2e4,
|
|
527
|
+
0x420c24f9,
|
|
528
|
+
0x420ca3b9,
|
|
529
|
+
0x420d23d3,
|
|
530
|
+
0x420da40a,
|
|
531
|
+
0x42122424,
|
|
532
|
+
0x421724c0,
|
|
533
|
+
0x4217a466,
|
|
534
|
+
0x421c2488,
|
|
535
|
+
0x421f2443,
|
|
536
|
+
0x42212510,
|
|
537
|
+
0x422624a3,
|
|
538
|
+
0x422b25a9,
|
|
539
|
+
0x422ba572,
|
|
540
|
+
0x422c2591,
|
|
541
|
+
0x422ca54c,
|
|
542
|
+
0x422d252b,
|
|
543
|
+
0x4432072b,
|
|
544
|
+
0x4432873a,
|
|
545
|
+
0x44330746,
|
|
546
|
+
0x44338754,
|
|
547
|
+
0x44340767,
|
|
548
|
+
0x44348778,
|
|
549
|
+
0x4435077f,
|
|
550
|
+
0x44358789,
|
|
551
|
+
0x4436079c,
|
|
552
|
+
0x443687b2,
|
|
553
|
+
0x443707c4,
|
|
554
|
+
0x443787d1,
|
|
555
|
+
0x443807e0,
|
|
556
|
+
0x443887e8,
|
|
557
|
+
0x44390800,
|
|
558
|
+
0x4439880e,
|
|
559
|
+
0x443a0821,
|
|
560
|
+
0x4c3211d4,
|
|
561
|
+
0x4c3291e4,
|
|
562
|
+
0x4c3311f7,
|
|
563
|
+
0x4c339217,
|
|
564
|
+
0x4c3400ac,
|
|
565
|
+
0x4c3480ea,
|
|
566
|
+
0x4c351223,
|
|
567
|
+
0x4c359231,
|
|
568
|
+
0x4c36124d,
|
|
569
|
+
0x4c369260,
|
|
570
|
+
0x4c37126f,
|
|
571
|
+
0x4c37927d,
|
|
572
|
+
0x4c381292,
|
|
573
|
+
0x4c38929e,
|
|
574
|
+
0x4c3912be,
|
|
575
|
+
0x4c3992e8,
|
|
576
|
+
0x4c3a1301,
|
|
577
|
+
0x4c3a931a,
|
|
578
|
+
0x4c3b05fb,
|
|
579
|
+
0x4c3b9333,
|
|
580
|
+
0x4c3c1345,
|
|
581
|
+
0x4c3c9354,
|
|
582
|
+
0x4c3d136d,
|
|
583
|
+
0x4c3d937c,
|
|
584
|
+
0x4c3e1389,
|
|
585
|
+
0x50322b22,
|
|
586
|
+
0x5032ab31,
|
|
587
|
+
0x50332b3c,
|
|
588
|
+
0x5033ab4c,
|
|
589
|
+
0x50342b65,
|
|
590
|
+
0x5034ab7f,
|
|
591
|
+
0x50352b8d,
|
|
592
|
+
0x5035aba3,
|
|
593
|
+
0x50362bb5,
|
|
594
|
+
0x5036abcb,
|
|
595
|
+
0x50372be4,
|
|
596
|
+
0x5037abf7,
|
|
597
|
+
0x50382c0f,
|
|
598
|
+
0x5038ac20,
|
|
599
|
+
0x50392c35,
|
|
600
|
+
0x5039ac49,
|
|
601
|
+
0x503a2c69,
|
|
602
|
+
0x503aac7f,
|
|
603
|
+
0x503b2c97,
|
|
604
|
+
0x503baca9,
|
|
605
|
+
0x503c2cc5,
|
|
606
|
+
0x503cacdc,
|
|
607
|
+
0x503d2cf5,
|
|
608
|
+
0x503dad0b,
|
|
609
|
+
0x503e2d18,
|
|
610
|
+
0x503ead2e,
|
|
611
|
+
0x503f2d40,
|
|
612
|
+
0x503f8382,
|
|
613
|
+
0x50402d53,
|
|
614
|
+
0x5040ad63,
|
|
615
|
+
0x50412d7d,
|
|
616
|
+
0x5041ad8c,
|
|
617
|
+
0x50422da6,
|
|
618
|
+
0x5042adc3,
|
|
619
|
+
0x50432dd3,
|
|
620
|
+
0x5043ade3,
|
|
621
|
+
0x50442df2,
|
|
622
|
+
0x5044843f,
|
|
623
|
+
0x50452e06,
|
|
624
|
+
0x5045ae24,
|
|
625
|
+
0x50462e37,
|
|
626
|
+
0x5046ae4d,
|
|
627
|
+
0x50472e5f,
|
|
628
|
+
0x5047ae74,
|
|
629
|
+
0x50482e9a,
|
|
630
|
+
0x5048aea8,
|
|
631
|
+
0x50492ebb,
|
|
632
|
+
0x5049aed0,
|
|
633
|
+
0x504a2ee6,
|
|
634
|
+
0x504aaef6,
|
|
635
|
+
0x504b2f16,
|
|
636
|
+
0x504baf29,
|
|
637
|
+
0x504c2f4c,
|
|
638
|
+
0x504caf7a,
|
|
639
|
+
0x504d2f8c,
|
|
640
|
+
0x504dafa9,
|
|
641
|
+
0x504e2fc4,
|
|
642
|
+
0x504eafe0,
|
|
643
|
+
0x504f2ff2,
|
|
644
|
+
0x504fb009,
|
|
645
|
+
0x50503018,
|
|
646
|
+
0x505086ef,
|
|
647
|
+
0x5051302b,
|
|
648
|
+
0x58320ec9,
|
|
649
|
+
0x68320e8b,
|
|
650
|
+
0x68328c25,
|
|
651
|
+
0x68330c38,
|
|
652
|
+
0x68338e99,
|
|
653
|
+
0x68340ea9,
|
|
654
|
+
0x683480ea,
|
|
655
|
+
0x6c320e67,
|
|
656
|
+
0x6c328bfc,
|
|
657
|
+
0x6c330e72,
|
|
658
|
+
0x74320a0b,
|
|
659
|
+
0x78320970,
|
|
660
|
+
0x78328985,
|
|
661
|
+
0x78330991,
|
|
662
|
+
0x78338083,
|
|
663
|
+
0x783409a0,
|
|
664
|
+
0x783489b5,
|
|
665
|
+
0x783509d4,
|
|
666
|
+
0x783589f6,
|
|
667
|
+
0x78360a0b,
|
|
668
|
+
0x78368a21,
|
|
669
|
+
0x78370a31,
|
|
670
|
+
0x78378a44,
|
|
671
|
+
0x78380a57,
|
|
672
|
+
0x78388a69,
|
|
673
|
+
0x78390a76,
|
|
674
|
+
0x78398a95,
|
|
675
|
+
0x783a0aaa,
|
|
676
|
+
0x783a8ab8,
|
|
677
|
+
0x783b0ac2,
|
|
678
|
+
0x783b8ad6,
|
|
679
|
+
0x783c0aed,
|
|
680
|
+
0x783c8b02,
|
|
681
|
+
0x783d0b19,
|
|
682
|
+
0x783d8b2e,
|
|
683
|
+
0x783e0a84,
|
|
684
|
+
0x7c3210d6,
|
|
685
|
+
};
|
|
686
|
+
|
|
687
|
+
const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
|
|
688
|
+
|
|
689
|
+
const char kOpenSSLReasonStringData[] =
|
|
690
|
+
"ASN1_LENGTH_MISMATCH\0"
|
|
691
|
+
"AUX_ERROR\0"
|
|
692
|
+
"BAD_GET_ASN1_OBJECT_CALL\0"
|
|
693
|
+
"BAD_OBJECT_HEADER\0"
|
|
694
|
+
"BMPSTRING_IS_WRONG_LENGTH\0"
|
|
695
|
+
"BN_LIB\0"
|
|
696
|
+
"BOOLEAN_IS_WRONG_LENGTH\0"
|
|
697
|
+
"BUFFER_TOO_SMALL\0"
|
|
698
|
+
"CONTEXT_NOT_INITIALISED\0"
|
|
699
|
+
"DECODE_ERROR\0"
|
|
700
|
+
"DEPTH_EXCEEDED\0"
|
|
701
|
+
"DIGEST_AND_KEY_TYPE_NOT_SUPPORTED\0"
|
|
702
|
+
"ENCODE_ERROR\0"
|
|
703
|
+
"ERROR_GETTING_TIME\0"
|
|
704
|
+
"EXPECTING_AN_ASN1_SEQUENCE\0"
|
|
705
|
+
"EXPECTING_AN_INTEGER\0"
|
|
706
|
+
"EXPECTING_AN_OBJECT\0"
|
|
707
|
+
"EXPECTING_A_BOOLEAN\0"
|
|
708
|
+
"EXPECTING_A_TIME\0"
|
|
709
|
+
"EXPLICIT_LENGTH_MISMATCH\0"
|
|
710
|
+
"EXPLICIT_TAG_NOT_CONSTRUCTED\0"
|
|
711
|
+
"FIELD_MISSING\0"
|
|
712
|
+
"FIRST_NUM_TOO_LARGE\0"
|
|
713
|
+
"HEADER_TOO_LONG\0"
|
|
714
|
+
"ILLEGAL_BITSTRING_FORMAT\0"
|
|
715
|
+
"ILLEGAL_BOOLEAN\0"
|
|
716
|
+
"ILLEGAL_CHARACTERS\0"
|
|
717
|
+
"ILLEGAL_FORMAT\0"
|
|
718
|
+
"ILLEGAL_HEX\0"
|
|
719
|
+
"ILLEGAL_IMPLICIT_TAG\0"
|
|
720
|
+
"ILLEGAL_INTEGER\0"
|
|
721
|
+
"ILLEGAL_NESTED_TAGGING\0"
|
|
722
|
+
"ILLEGAL_NULL\0"
|
|
723
|
+
"ILLEGAL_NULL_VALUE\0"
|
|
724
|
+
"ILLEGAL_OBJECT\0"
|
|
725
|
+
"ILLEGAL_OPTIONAL_ANY\0"
|
|
726
|
+
"ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE\0"
|
|
727
|
+
"ILLEGAL_TAGGED_ANY\0"
|
|
728
|
+
"ILLEGAL_TIME_VALUE\0"
|
|
729
|
+
"INTEGER_NOT_ASCII_FORMAT\0"
|
|
730
|
+
"INTEGER_TOO_LARGE_FOR_LONG\0"
|
|
731
|
+
"INVALID_BIT_STRING_BITS_LEFT\0"
|
|
732
|
+
"INVALID_BMPSTRING_LENGTH\0"
|
|
733
|
+
"INVALID_DIGIT\0"
|
|
734
|
+
"INVALID_MODIFIER\0"
|
|
735
|
+
"INVALID_NUMBER\0"
|
|
736
|
+
"INVALID_OBJECT_ENCODING\0"
|
|
737
|
+
"INVALID_SEPARATOR\0"
|
|
738
|
+
"INVALID_TIME_FORMAT\0"
|
|
739
|
+
"INVALID_UNIVERSALSTRING_LENGTH\0"
|
|
740
|
+
"INVALID_UTF8STRING\0"
|
|
741
|
+
"LIST_ERROR\0"
|
|
742
|
+
"MISSING_ASN1_EOS\0"
|
|
743
|
+
"MISSING_EOC\0"
|
|
744
|
+
"MISSING_SECOND_NUMBER\0"
|
|
745
|
+
"MISSING_VALUE\0"
|
|
746
|
+
"MSTRING_NOT_UNIVERSAL\0"
|
|
747
|
+
"MSTRING_WRONG_TAG\0"
|
|
748
|
+
"NESTED_ASN1_ERROR\0"
|
|
749
|
+
"NESTED_ASN1_STRING\0"
|
|
750
|
+
"NON_HEX_CHARACTERS\0"
|
|
751
|
+
"NOT_ASCII_FORMAT\0"
|
|
752
|
+
"NOT_ENOUGH_DATA\0"
|
|
753
|
+
"NO_MATCHING_CHOICE_TYPE\0"
|
|
754
|
+
"NULL_IS_WRONG_LENGTH\0"
|
|
755
|
+
"OBJECT_NOT_ASCII_FORMAT\0"
|
|
756
|
+
"ODD_NUMBER_OF_CHARS\0"
|
|
757
|
+
"SECOND_NUMBER_TOO_LARGE\0"
|
|
758
|
+
"SEQUENCE_LENGTH_MISMATCH\0"
|
|
759
|
+
"SEQUENCE_NOT_CONSTRUCTED\0"
|
|
760
|
+
"SEQUENCE_OR_SET_NEEDS_CONFIG\0"
|
|
761
|
+
"SHORT_LINE\0"
|
|
762
|
+
"STREAMING_NOT_SUPPORTED\0"
|
|
763
|
+
"STRING_TOO_LONG\0"
|
|
764
|
+
"STRING_TOO_SHORT\0"
|
|
765
|
+
"TAG_VALUE_TOO_HIGH\0"
|
|
766
|
+
"TIME_NOT_ASCII_FORMAT\0"
|
|
767
|
+
"TOO_LONG\0"
|
|
768
|
+
"TYPE_NOT_CONSTRUCTED\0"
|
|
769
|
+
"TYPE_NOT_PRIMITIVE\0"
|
|
770
|
+
"UNEXPECTED_EOC\0"
|
|
771
|
+
"UNIVERSALSTRING_IS_WRONG_LENGTH\0"
|
|
772
|
+
"UNKNOWN_FORMAT\0"
|
|
773
|
+
"UNKNOWN_MESSAGE_DIGEST_ALGORITHM\0"
|
|
774
|
+
"UNKNOWN_SIGNATURE_ALGORITHM\0"
|
|
775
|
+
"UNKNOWN_TAG\0"
|
|
776
|
+
"UNSUPPORTED_ANY_DEFINED_BY_TYPE\0"
|
|
777
|
+
"UNSUPPORTED_PUBLIC_KEY_TYPE\0"
|
|
778
|
+
"UNSUPPORTED_TYPE\0"
|
|
779
|
+
"WRONG_PUBLIC_KEY_TYPE\0"
|
|
780
|
+
"WRONG_TAG\0"
|
|
781
|
+
"WRONG_TYPE\0"
|
|
782
|
+
"BAD_FOPEN_MODE\0"
|
|
783
|
+
"BROKEN_PIPE\0"
|
|
784
|
+
"CONNECT_ERROR\0"
|
|
785
|
+
"ERROR_SETTING_NBIO\0"
|
|
786
|
+
"INVALID_ARGUMENT\0"
|
|
787
|
+
"IN_USE\0"
|
|
788
|
+
"KEEPALIVE\0"
|
|
789
|
+
"NBIO_CONNECT_ERROR\0"
|
|
790
|
+
"NO_HOSTNAME_SPECIFIED\0"
|
|
791
|
+
"NO_PORT_SPECIFIED\0"
|
|
792
|
+
"NO_SUCH_FILE\0"
|
|
793
|
+
"NULL_PARAMETER\0"
|
|
794
|
+
"SYS_LIB\0"
|
|
795
|
+
"UNABLE_TO_CREATE_SOCKET\0"
|
|
796
|
+
"UNINITIALIZED\0"
|
|
797
|
+
"UNSUPPORTED_METHOD\0"
|
|
798
|
+
"WRITE_TO_READ_ONLY_BIO\0"
|
|
799
|
+
"ARG2_LT_ARG3\0"
|
|
800
|
+
"BAD_ENCODING\0"
|
|
801
|
+
"BAD_RECIPROCAL\0"
|
|
802
|
+
"BIGNUM_TOO_LONG\0"
|
|
803
|
+
"BITS_TOO_SMALL\0"
|
|
804
|
+
"CALLED_WITH_EVEN_MODULUS\0"
|
|
805
|
+
"DIV_BY_ZERO\0"
|
|
806
|
+
"EXPAND_ON_STATIC_BIGNUM_DATA\0"
|
|
807
|
+
"INPUT_NOT_REDUCED\0"
|
|
808
|
+
"INVALID_RANGE\0"
|
|
809
|
+
"NEGATIVE_NUMBER\0"
|
|
810
|
+
"NOT_A_SQUARE\0"
|
|
811
|
+
"NOT_INITIALIZED\0"
|
|
812
|
+
"NO_INVERSE\0"
|
|
813
|
+
"PRIVATE_KEY_TOO_LARGE\0"
|
|
814
|
+
"P_IS_NOT_PRIME\0"
|
|
815
|
+
"TOO_MANY_ITERATIONS\0"
|
|
816
|
+
"TOO_MANY_TEMPORARY_VARIABLES\0"
|
|
817
|
+
"AES_KEY_SETUP_FAILED\0"
|
|
818
|
+
"BAD_DECRYPT\0"
|
|
819
|
+
"BAD_KEY_LENGTH\0"
|
|
820
|
+
"CTRL_NOT_IMPLEMENTED\0"
|
|
821
|
+
"CTRL_OPERATION_NOT_IMPLEMENTED\0"
|
|
822
|
+
"DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH\0"
|
|
823
|
+
"INITIALIZATION_ERROR\0"
|
|
824
|
+
"INPUT_NOT_INITIALIZED\0"
|
|
825
|
+
"INVALID_AD_SIZE\0"
|
|
826
|
+
"INVALID_KEY_LENGTH\0"
|
|
827
|
+
"INVALID_NONCE_SIZE\0"
|
|
828
|
+
"INVALID_OPERATION\0"
|
|
829
|
+
"IV_TOO_LARGE\0"
|
|
830
|
+
"NO_CIPHER_SET\0"
|
|
831
|
+
"NO_DIRECTION_SET\0"
|
|
832
|
+
"OUTPUT_ALIASES_INPUT\0"
|
|
833
|
+
"TAG_TOO_LARGE\0"
|
|
834
|
+
"TOO_LARGE\0"
|
|
835
|
+
"UNSUPPORTED_AD_SIZE\0"
|
|
836
|
+
"UNSUPPORTED_INPUT_SIZE\0"
|
|
837
|
+
"UNSUPPORTED_KEY_SIZE\0"
|
|
838
|
+
"UNSUPPORTED_NONCE_SIZE\0"
|
|
839
|
+
"UNSUPPORTED_TAG_SIZE\0"
|
|
840
|
+
"WRONG_FINAL_BLOCK_LENGTH\0"
|
|
841
|
+
"LIST_CANNOT_BE_NULL\0"
|
|
842
|
+
"MISSING_CLOSE_SQUARE_BRACKET\0"
|
|
843
|
+
"MISSING_EQUAL_SIGN\0"
|
|
844
|
+
"NO_CLOSE_BRACE\0"
|
|
845
|
+
"UNABLE_TO_CREATE_NEW_SECTION\0"
|
|
846
|
+
"VARIABLE_HAS_NO_VALUE\0"
|
|
847
|
+
"BAD_GENERATOR\0"
|
|
848
|
+
"INVALID_PUBKEY\0"
|
|
849
|
+
"MODULUS_TOO_LARGE\0"
|
|
850
|
+
"NO_PRIVATE_VALUE\0"
|
|
851
|
+
"BAD_Q_VALUE\0"
|
|
852
|
+
"BAD_VERSION\0"
|
|
853
|
+
"MISSING_PARAMETERS\0"
|
|
854
|
+
"NEED_NEW_SETUP_VALUES\0"
|
|
855
|
+
"BIGNUM_OUT_OF_RANGE\0"
|
|
856
|
+
"COORDINATES_OUT_OF_RANGE\0"
|
|
857
|
+
"D2I_ECPKPARAMETERS_FAILURE\0"
|
|
858
|
+
"EC_GROUP_NEW_BY_NAME_FAILURE\0"
|
|
859
|
+
"GROUP2PKPARAMETERS_FAILURE\0"
|
|
860
|
+
"GROUP_MISMATCH\0"
|
|
861
|
+
"I2D_ECPKPARAMETERS_FAILURE\0"
|
|
862
|
+
"INCOMPATIBLE_OBJECTS\0"
|
|
863
|
+
"INVALID_COFACTOR\0"
|
|
864
|
+
"INVALID_COMPRESSED_POINT\0"
|
|
865
|
+
"INVALID_COMPRESSION_BIT\0"
|
|
866
|
+
"INVALID_ENCODING\0"
|
|
867
|
+
"INVALID_FIELD\0"
|
|
868
|
+
"INVALID_FORM\0"
|
|
869
|
+
"INVALID_GROUP_ORDER\0"
|
|
870
|
+
"INVALID_PRIVATE_KEY\0"
|
|
871
|
+
"MISSING_PRIVATE_KEY\0"
|
|
872
|
+
"NON_NAMED_CURVE\0"
|
|
873
|
+
"PKPARAMETERS2GROUP_FAILURE\0"
|
|
874
|
+
"POINT_AT_INFINITY\0"
|
|
875
|
+
"POINT_IS_NOT_ON_CURVE\0"
|
|
876
|
+
"SLOT_FULL\0"
|
|
877
|
+
"UNDEFINED_GENERATOR\0"
|
|
878
|
+
"UNKNOWN_GROUP\0"
|
|
879
|
+
"UNKNOWN_ORDER\0"
|
|
880
|
+
"WRONG_CURVE_PARAMETERS\0"
|
|
881
|
+
"WRONG_ORDER\0"
|
|
882
|
+
"KDF_FAILED\0"
|
|
883
|
+
"POINT_ARITHMETIC_FAILURE\0"
|
|
884
|
+
"BAD_SIGNATURE\0"
|
|
885
|
+
"NOT_IMPLEMENTED\0"
|
|
886
|
+
"RANDOM_NUMBER_GENERATION_FAILED\0"
|
|
887
|
+
"OPERATION_NOT_SUPPORTED\0"
|
|
888
|
+
"COMMAND_NOT_SUPPORTED\0"
|
|
889
|
+
"DIFFERENT_KEY_TYPES\0"
|
|
890
|
+
"DIFFERENT_PARAMETERS\0"
|
|
891
|
+
"EXPECTING_AN_EC_KEY_KEY\0"
|
|
892
|
+
"EXPECTING_AN_RSA_KEY\0"
|
|
893
|
+
"EXPECTING_A_DSA_KEY\0"
|
|
894
|
+
"ILLEGAL_OR_UNSUPPORTED_PADDING_MODE\0"
|
|
895
|
+
"INVALID_DIGEST_LENGTH\0"
|
|
896
|
+
"INVALID_DIGEST_TYPE\0"
|
|
897
|
+
"INVALID_KEYBITS\0"
|
|
898
|
+
"INVALID_MGF1_MD\0"
|
|
899
|
+
"INVALID_PADDING_MODE\0"
|
|
900
|
+
"INVALID_PSS_SALTLEN\0"
|
|
901
|
+
"KEYS_NOT_SET\0"
|
|
902
|
+
"NO_DEFAULT_DIGEST\0"
|
|
903
|
+
"NO_KEY_SET\0"
|
|
904
|
+
"NO_MDC2_SUPPORT\0"
|
|
905
|
+
"NO_NID_FOR_CURVE\0"
|
|
906
|
+
"NO_OPERATION_SET\0"
|
|
907
|
+
"NO_PARAMETERS_SET\0"
|
|
908
|
+
"OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE\0"
|
|
909
|
+
"OPERATON_NOT_INITIALIZED\0"
|
|
910
|
+
"UNKNOWN_PUBLIC_KEY_TYPE\0"
|
|
911
|
+
"UNSUPPORTED_ALGORITHM\0"
|
|
912
|
+
"OUTPUT_TOO_LARGE\0"
|
|
913
|
+
"UNKNOWN_NID\0"
|
|
914
|
+
"BAD_BASE64_DECODE\0"
|
|
915
|
+
"BAD_END_LINE\0"
|
|
916
|
+
"BAD_IV_CHARS\0"
|
|
917
|
+
"BAD_PASSWORD_READ\0"
|
|
918
|
+
"CIPHER_IS_NULL\0"
|
|
919
|
+
"ERROR_CONVERTING_PRIVATE_KEY\0"
|
|
920
|
+
"NOT_DEK_INFO\0"
|
|
921
|
+
"NOT_ENCRYPTED\0"
|
|
922
|
+
"NOT_PROC_TYPE\0"
|
|
923
|
+
"NO_START_LINE\0"
|
|
924
|
+
"READ_KEY\0"
|
|
925
|
+
"SHORT_HEADER\0"
|
|
926
|
+
"UNSUPPORTED_CIPHER\0"
|
|
927
|
+
"UNSUPPORTED_ENCRYPTION\0"
|
|
928
|
+
"BAD_PKCS12_DATA\0"
|
|
929
|
+
"BAD_PKCS12_VERSION\0"
|
|
930
|
+
"CIPHER_HAS_NO_OBJECT_IDENTIFIER\0"
|
|
931
|
+
"CRYPT_ERROR\0"
|
|
932
|
+
"ENCRYPT_ERROR\0"
|
|
933
|
+
"ERROR_SETTING_CIPHER_PARAMS\0"
|
|
934
|
+
"INCORRECT_PASSWORD\0"
|
|
935
|
+
"KEYGEN_FAILURE\0"
|
|
936
|
+
"KEY_GEN_ERROR\0"
|
|
937
|
+
"METHOD_NOT_SUPPORTED\0"
|
|
938
|
+
"MISSING_MAC\0"
|
|
939
|
+
"MULTIPLE_PRIVATE_KEYS_IN_PKCS12\0"
|
|
940
|
+
"PKCS12_PUBLIC_KEY_INTEGRITY_NOT_SUPPORTED\0"
|
|
941
|
+
"PKCS12_TOO_DEEPLY_NESTED\0"
|
|
942
|
+
"PRIVATE_KEY_DECODE_ERROR\0"
|
|
943
|
+
"PRIVATE_KEY_ENCODE_ERROR\0"
|
|
944
|
+
"UNKNOWN_ALGORITHM\0"
|
|
945
|
+
"UNKNOWN_CIPHER\0"
|
|
946
|
+
"UNKNOWN_CIPHER_ALGORITHM\0"
|
|
947
|
+
"UNKNOWN_DIGEST\0"
|
|
948
|
+
"UNKNOWN_HASH\0"
|
|
949
|
+
"UNSUPPORTED_PRIVATE_KEY_ALGORITHM\0"
|
|
950
|
+
"BAD_E_VALUE\0"
|
|
951
|
+
"BAD_FIXED_HEADER_DECRYPT\0"
|
|
952
|
+
"BAD_PAD_BYTE_COUNT\0"
|
|
953
|
+
"BAD_RSA_PARAMETERS\0"
|
|
954
|
+
"BLOCK_TYPE_IS_NOT_01\0"
|
|
955
|
+
"BN_NOT_INITIALIZED\0"
|
|
956
|
+
"CANNOT_RECOVER_MULTI_PRIME_KEY\0"
|
|
957
|
+
"CRT_PARAMS_ALREADY_GIVEN\0"
|
|
958
|
+
"CRT_VALUES_INCORRECT\0"
|
|
959
|
+
"DATA_LEN_NOT_EQUAL_TO_MOD_LEN\0"
|
|
960
|
+
"DATA_TOO_LARGE\0"
|
|
961
|
+
"DATA_TOO_LARGE_FOR_KEY_SIZE\0"
|
|
962
|
+
"DATA_TOO_LARGE_FOR_MODULUS\0"
|
|
963
|
+
"DATA_TOO_SMALL\0"
|
|
964
|
+
"DATA_TOO_SMALL_FOR_KEY_SIZE\0"
|
|
965
|
+
"DIGEST_TOO_BIG_FOR_RSA_KEY\0"
|
|
966
|
+
"D_E_NOT_CONGRUENT_TO_1\0"
|
|
967
|
+
"EMPTY_PUBLIC_KEY\0"
|
|
968
|
+
"FIRST_OCTET_INVALID\0"
|
|
969
|
+
"INCONSISTENT_SET_OF_CRT_VALUES\0"
|
|
970
|
+
"INTERNAL_ERROR\0"
|
|
971
|
+
"INVALID_MESSAGE_LENGTH\0"
|
|
972
|
+
"KEY_SIZE_TOO_SMALL\0"
|
|
973
|
+
"LAST_OCTET_INVALID\0"
|
|
974
|
+
"MUST_HAVE_AT_LEAST_TWO_PRIMES\0"
|
|
975
|
+
"NO_PUBLIC_EXPONENT\0"
|
|
976
|
+
"NULL_BEFORE_BLOCK_MISSING\0"
|
|
977
|
+
"N_NOT_EQUAL_P_Q\0"
|
|
978
|
+
"OAEP_DECODING_ERROR\0"
|
|
979
|
+
"ONLY_ONE_OF_P_Q_GIVEN\0"
|
|
980
|
+
"OUTPUT_BUFFER_TOO_SMALL\0"
|
|
981
|
+
"PADDING_CHECK_FAILED\0"
|
|
982
|
+
"PKCS_DECODING_ERROR\0"
|
|
983
|
+
"SLEN_CHECK_FAILED\0"
|
|
984
|
+
"SLEN_RECOVERY_FAILED\0"
|
|
985
|
+
"UNKNOWN_ALGORITHM_TYPE\0"
|
|
986
|
+
"UNKNOWN_PADDING_TYPE\0"
|
|
987
|
+
"VALUE_MISSING\0"
|
|
988
|
+
"WRONG_SIGNATURE_LENGTH\0"
|
|
989
|
+
"APP_DATA_IN_HANDSHAKE\0"
|
|
990
|
+
"ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT\0"
|
|
991
|
+
"BAD_ALERT\0"
|
|
992
|
+
"BAD_CHANGE_CIPHER_SPEC\0"
|
|
993
|
+
"BAD_DATA_RETURNED_BY_CALLBACK\0"
|
|
994
|
+
"BAD_DH_P_LENGTH\0"
|
|
995
|
+
"BAD_DIGEST_LENGTH\0"
|
|
996
|
+
"BAD_ECC_CERT\0"
|
|
997
|
+
"BAD_ECPOINT\0"
|
|
998
|
+
"BAD_HANDSHAKE_RECORD\0"
|
|
999
|
+
"BAD_HELLO_REQUEST\0"
|
|
1000
|
+
"BAD_LENGTH\0"
|
|
1001
|
+
"BAD_PACKET_LENGTH\0"
|
|
1002
|
+
"BAD_RSA_ENCRYPT\0"
|
|
1003
|
+
"BAD_SRTP_MKI_VALUE\0"
|
|
1004
|
+
"BAD_SRTP_PROTECTION_PROFILE_LIST\0"
|
|
1005
|
+
"BAD_SSL_FILETYPE\0"
|
|
1006
|
+
"BAD_WRITE_RETRY\0"
|
|
1007
|
+
"BIO_NOT_SET\0"
|
|
1008
|
+
"BLOCK_CIPHER_PAD_IS_WRONG\0"
|
|
1009
|
+
"BUFFERED_MESSAGES_ON_CIPHER_CHANGE\0"
|
|
1010
|
+
"CA_DN_LENGTH_MISMATCH\0"
|
|
1011
|
+
"CA_DN_TOO_LONG\0"
|
|
1012
|
+
"CCS_RECEIVED_EARLY\0"
|
|
1013
|
+
"CERTIFICATE_VERIFY_FAILED\0"
|
|
1014
|
+
"CERT_CB_ERROR\0"
|
|
1015
|
+
"CERT_LENGTH_MISMATCH\0"
|
|
1016
|
+
"CHANNEL_ID_NOT_P256\0"
|
|
1017
|
+
"CHANNEL_ID_SIGNATURE_INVALID\0"
|
|
1018
|
+
"CIPHER_OR_HASH_UNAVAILABLE\0"
|
|
1019
|
+
"CLIENTHELLO_PARSE_FAILED\0"
|
|
1020
|
+
"CLIENTHELLO_TLSEXT\0"
|
|
1021
|
+
"CONNECTION_REJECTED\0"
|
|
1022
|
+
"CONNECTION_TYPE_NOT_SET\0"
|
|
1023
|
+
"CUSTOM_EXTENSION_ERROR\0"
|
|
1024
|
+
"DATA_LENGTH_TOO_LONG\0"
|
|
1025
|
+
"DECRYPTION_FAILED\0"
|
|
1026
|
+
"DECRYPTION_FAILED_OR_BAD_RECORD_MAC\0"
|
|
1027
|
+
"DH_PUBLIC_VALUE_LENGTH_IS_WRONG\0"
|
|
1028
|
+
"DH_P_TOO_LONG\0"
|
|
1029
|
+
"DIGEST_CHECK_FAILED\0"
|
|
1030
|
+
"DOWNGRADE_DETECTED\0"
|
|
1031
|
+
"DTLS_MESSAGE_TOO_BIG\0"
|
|
1032
|
+
"DUPLICATE_EXTENSION\0"
|
|
1033
|
+
"DUPLICATE_KEY_SHARE\0"
|
|
1034
|
+
"ECC_CERT_NOT_FOR_SIGNING\0"
|
|
1035
|
+
"EMS_STATE_INCONSISTENT\0"
|
|
1036
|
+
"ENCRYPTED_LENGTH_TOO_LONG\0"
|
|
1037
|
+
"ERROR_ADDING_EXTENSION\0"
|
|
1038
|
+
"ERROR_IN_RECEIVED_CIPHER_LIST\0"
|
|
1039
|
+
"ERROR_PARSING_EXTENSION\0"
|
|
1040
|
+
"EXCESSIVE_MESSAGE_SIZE\0"
|
|
1041
|
+
"EXTRA_DATA_IN_MESSAGE\0"
|
|
1042
|
+
"FRAGMENT_MISMATCH\0"
|
|
1043
|
+
"GOT_NEXT_PROTO_WITHOUT_EXTENSION\0"
|
|
1044
|
+
"HANDSHAKE_FAILURE_ON_CLIENT_HELLO\0"
|
|
1045
|
+
"HTTPS_PROXY_REQUEST\0"
|
|
1046
|
+
"HTTP_REQUEST\0"
|
|
1047
|
+
"INAPPROPRIATE_FALLBACK\0"
|
|
1048
|
+
"INVALID_ALPN_PROTOCOL\0"
|
|
1049
|
+
"INVALID_COMMAND\0"
|
|
1050
|
+
"INVALID_COMPRESSION_LIST\0"
|
|
1051
|
+
"INVALID_MESSAGE\0"
|
|
1052
|
+
"INVALID_OUTER_RECORD_TYPE\0"
|
|
1053
|
+
"INVALID_SSL_SESSION\0"
|
|
1054
|
+
"INVALID_TICKET_KEYS_LENGTH\0"
|
|
1055
|
+
"LENGTH_MISMATCH\0"
|
|
1056
|
+
"LIBRARY_HAS_NO_CIPHERS\0"
|
|
1057
|
+
"MISSING_EXTENSION\0"
|
|
1058
|
+
"MISSING_KEY_SHARE\0"
|
|
1059
|
+
"MISSING_RSA_CERTIFICATE\0"
|
|
1060
|
+
"MISSING_TMP_DH_KEY\0"
|
|
1061
|
+
"MISSING_TMP_ECDH_KEY\0"
|
|
1062
|
+
"MIXED_SPECIAL_OPERATOR_WITH_GROUPS\0"
|
|
1063
|
+
"MTU_TOO_SMALL\0"
|
|
1064
|
+
"NEGOTIATED_BOTH_NPN_AND_ALPN\0"
|
|
1065
|
+
"NESTED_GROUP\0"
|
|
1066
|
+
"NO_CERTIFICATES_RETURNED\0"
|
|
1067
|
+
"NO_CERTIFICATE_ASSIGNED\0"
|
|
1068
|
+
"NO_CERTIFICATE_SET\0"
|
|
1069
|
+
"NO_CIPHERS_AVAILABLE\0"
|
|
1070
|
+
"NO_CIPHERS_PASSED\0"
|
|
1071
|
+
"NO_CIPHERS_SPECIFIED\0"
|
|
1072
|
+
"NO_CIPHER_MATCH\0"
|
|
1073
|
+
"NO_COMMON_SIGNATURE_ALGORITHMS\0"
|
|
1074
|
+
"NO_COMPRESSION_SPECIFIED\0"
|
|
1075
|
+
"NO_GROUPS_SPECIFIED\0"
|
|
1076
|
+
"NO_METHOD_SPECIFIED\0"
|
|
1077
|
+
"NO_P256_SUPPORT\0"
|
|
1078
|
+
"NO_PRIVATE_KEY_ASSIGNED\0"
|
|
1079
|
+
"NO_RENEGOTIATION\0"
|
|
1080
|
+
"NO_REQUIRED_DIGEST\0"
|
|
1081
|
+
"NO_SHARED_CIPHER\0"
|
|
1082
|
+
"NULL_SSL_CTX\0"
|
|
1083
|
+
"NULL_SSL_METHOD_PASSED\0"
|
|
1084
|
+
"OLD_SESSION_CIPHER_NOT_RETURNED\0"
|
|
1085
|
+
"OLD_SESSION_VERSION_NOT_RETURNED\0"
|
|
1086
|
+
"PARSE_TLSEXT\0"
|
|
1087
|
+
"PATH_TOO_LONG\0"
|
|
1088
|
+
"PEER_DID_NOT_RETURN_A_CERTIFICATE\0"
|
|
1089
|
+
"PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE\0"
|
|
1090
|
+
"PROTOCOL_IS_SHUTDOWN\0"
|
|
1091
|
+
"PSK_IDENTITY_NOT_FOUND\0"
|
|
1092
|
+
"PSK_NO_CLIENT_CB\0"
|
|
1093
|
+
"PSK_NO_SERVER_CB\0"
|
|
1094
|
+
"READ_TIMEOUT_EXPIRED\0"
|
|
1095
|
+
"RECORD_LENGTH_MISMATCH\0"
|
|
1096
|
+
"RECORD_TOO_LARGE\0"
|
|
1097
|
+
"RENEGOTIATION_EMS_MISMATCH\0"
|
|
1098
|
+
"RENEGOTIATION_ENCODING_ERR\0"
|
|
1099
|
+
"RENEGOTIATION_MISMATCH\0"
|
|
1100
|
+
"REQUIRED_CIPHER_MISSING\0"
|
|
1101
|
+
"RESUMED_EMS_SESSION_WITHOUT_EMS_EXTENSION\0"
|
|
1102
|
+
"RESUMED_NON_EMS_SESSION_WITH_EMS_EXTENSION\0"
|
|
1103
|
+
"SCSV_RECEIVED_WHEN_RENEGOTIATING\0"
|
|
1104
|
+
"SERVERHELLO_TLSEXT\0"
|
|
1105
|
+
"SESSION_ID_CONTEXT_UNINITIALIZED\0"
|
|
1106
|
+
"SESSION_MAY_NOT_BE_CREATED\0"
|
|
1107
|
+
"SHUTDOWN_WHILE_IN_INIT\0"
|
|
1108
|
+
"SIGNATURE_ALGORITHMS_EXTENSION_SENT_BY_SERVER\0"
|
|
1109
|
+
"SRTP_COULD_NOT_ALLOCATE_PROFILES\0"
|
|
1110
|
+
"SRTP_UNKNOWN_PROTECTION_PROFILE\0"
|
|
1111
|
+
"SSL3_EXT_INVALID_SERVERNAME\0"
|
|
1112
|
+
"SSLV3_ALERT_BAD_CERTIFICATE\0"
|
|
1113
|
+
"SSLV3_ALERT_BAD_RECORD_MAC\0"
|
|
1114
|
+
"SSLV3_ALERT_CERTIFICATE_EXPIRED\0"
|
|
1115
|
+
"SSLV3_ALERT_CERTIFICATE_REVOKED\0"
|
|
1116
|
+
"SSLV3_ALERT_CERTIFICATE_UNKNOWN\0"
|
|
1117
|
+
"SSLV3_ALERT_CLOSE_NOTIFY\0"
|
|
1118
|
+
"SSLV3_ALERT_DECOMPRESSION_FAILURE\0"
|
|
1119
|
+
"SSLV3_ALERT_HANDSHAKE_FAILURE\0"
|
|
1120
|
+
"SSLV3_ALERT_ILLEGAL_PARAMETER\0"
|
|
1121
|
+
"SSLV3_ALERT_NO_CERTIFICATE\0"
|
|
1122
|
+
"SSLV3_ALERT_UNEXPECTED_MESSAGE\0"
|
|
1123
|
+
"SSLV3_ALERT_UNSUPPORTED_CERTIFICATE\0"
|
|
1124
|
+
"SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION\0"
|
|
1125
|
+
"SSL_HANDSHAKE_FAILURE\0"
|
|
1126
|
+
"SSL_SESSION_ID_CONTEXT_TOO_LONG\0"
|
|
1127
|
+
"TLSV1_ALERT_ACCESS_DENIED\0"
|
|
1128
|
+
"TLSV1_ALERT_DECODE_ERROR\0"
|
|
1129
|
+
"TLSV1_ALERT_DECRYPTION_FAILED\0"
|
|
1130
|
+
"TLSV1_ALERT_DECRYPT_ERROR\0"
|
|
1131
|
+
"TLSV1_ALERT_EXPORT_RESTRICTION\0"
|
|
1132
|
+
"TLSV1_ALERT_INAPPROPRIATE_FALLBACK\0"
|
|
1133
|
+
"TLSV1_ALERT_INSUFFICIENT_SECURITY\0"
|
|
1134
|
+
"TLSV1_ALERT_INTERNAL_ERROR\0"
|
|
1135
|
+
"TLSV1_ALERT_NO_RENEGOTIATION\0"
|
|
1136
|
+
"TLSV1_ALERT_PROTOCOL_VERSION\0"
|
|
1137
|
+
"TLSV1_ALERT_RECORD_OVERFLOW\0"
|
|
1138
|
+
"TLSV1_ALERT_UNKNOWN_CA\0"
|
|
1139
|
+
"TLSV1_ALERT_USER_CANCELLED\0"
|
|
1140
|
+
"TLSV1_BAD_CERTIFICATE_HASH_VALUE\0"
|
|
1141
|
+
"TLSV1_BAD_CERTIFICATE_STATUS_RESPONSE\0"
|
|
1142
|
+
"TLSV1_CERTIFICATE_UNOBTAINABLE\0"
|
|
1143
|
+
"TLSV1_UNRECOGNIZED_NAME\0"
|
|
1144
|
+
"TLSV1_UNSUPPORTED_EXTENSION\0"
|
|
1145
|
+
"TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST\0"
|
|
1146
|
+
"TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG\0"
|
|
1147
|
+
"TOO_MANY_EMPTY_FRAGMENTS\0"
|
|
1148
|
+
"TOO_MANY_KEY_UPDATES\0"
|
|
1149
|
+
"TOO_MANY_WARNING_ALERTS\0"
|
|
1150
|
+
"UNABLE_TO_FIND_ECDH_PARAMETERS\0"
|
|
1151
|
+
"UNEXPECTED_EXTENSION\0"
|
|
1152
|
+
"UNEXPECTED_MESSAGE\0"
|
|
1153
|
+
"UNEXPECTED_OPERATOR_IN_GROUP\0"
|
|
1154
|
+
"UNEXPECTED_RECORD\0"
|
|
1155
|
+
"UNKNOWN_ALERT_TYPE\0"
|
|
1156
|
+
"UNKNOWN_CERTIFICATE_TYPE\0"
|
|
1157
|
+
"UNKNOWN_CIPHER_RETURNED\0"
|
|
1158
|
+
"UNKNOWN_CIPHER_TYPE\0"
|
|
1159
|
+
"UNKNOWN_KEY_EXCHANGE_TYPE\0"
|
|
1160
|
+
"UNKNOWN_PROTOCOL\0"
|
|
1161
|
+
"UNKNOWN_SSL_VERSION\0"
|
|
1162
|
+
"UNKNOWN_STATE\0"
|
|
1163
|
+
"UNSAFE_LEGACY_RENEGOTIATION_DISABLED\0"
|
|
1164
|
+
"UNSUPPORTED_COMPRESSION_ALGORITHM\0"
|
|
1165
|
+
"UNSUPPORTED_ELLIPTIC_CURVE\0"
|
|
1166
|
+
"UNSUPPORTED_PROTOCOL\0"
|
|
1167
|
+
"UNSUPPORTED_PROTOCOL_FOR_CUSTOM_KEY\0"
|
|
1168
|
+
"WRONG_CERTIFICATE_TYPE\0"
|
|
1169
|
+
"WRONG_CIPHER_RETURNED\0"
|
|
1170
|
+
"WRONG_CURVE\0"
|
|
1171
|
+
"WRONG_MESSAGE_TYPE\0"
|
|
1172
|
+
"WRONG_SIGNATURE_TYPE\0"
|
|
1173
|
+
"WRONG_SSL_VERSION\0"
|
|
1174
|
+
"WRONG_VERSION_NUMBER\0"
|
|
1175
|
+
"X509_LIB\0"
|
|
1176
|
+
"X509_VERIFICATION_SETUP_PROBLEMS\0"
|
|
1177
|
+
"AKID_MISMATCH\0"
|
|
1178
|
+
"BAD_PKCS7_VERSION\0"
|
|
1179
|
+
"BAD_X509_FILETYPE\0"
|
|
1180
|
+
"BASE64_DECODE_ERROR\0"
|
|
1181
|
+
"CANT_CHECK_DH_KEY\0"
|
|
1182
|
+
"CERT_ALREADY_IN_HASH_TABLE\0"
|
|
1183
|
+
"CRL_ALREADY_DELTA\0"
|
|
1184
|
+
"CRL_VERIFY_FAILURE\0"
|
|
1185
|
+
"IDP_MISMATCH\0"
|
|
1186
|
+
"INVALID_DIRECTORY\0"
|
|
1187
|
+
"INVALID_FIELD_NAME\0"
|
|
1188
|
+
"INVALID_PSS_PARAMETERS\0"
|
|
1189
|
+
"INVALID_TRUST\0"
|
|
1190
|
+
"ISSUER_MISMATCH\0"
|
|
1191
|
+
"KEY_TYPE_MISMATCH\0"
|
|
1192
|
+
"KEY_VALUES_MISMATCH\0"
|
|
1193
|
+
"LOADING_CERT_DIR\0"
|
|
1194
|
+
"LOADING_DEFAULTS\0"
|
|
1195
|
+
"NAME_TOO_LONG\0"
|
|
1196
|
+
"NEWER_CRL_NOT_NEWER\0"
|
|
1197
|
+
"NOT_PKCS7_SIGNED_DATA\0"
|
|
1198
|
+
"NO_CERTIFICATES_INCLUDED\0"
|
|
1199
|
+
"NO_CERT_SET_FOR_US_TO_VERIFY\0"
|
|
1200
|
+
"NO_CRLS_INCLUDED\0"
|
|
1201
|
+
"NO_CRL_NUMBER\0"
|
|
1202
|
+
"PUBLIC_KEY_DECODE_ERROR\0"
|
|
1203
|
+
"PUBLIC_KEY_ENCODE_ERROR\0"
|
|
1204
|
+
"SHOULD_RETRY\0"
|
|
1205
|
+
"UNKNOWN_KEY_TYPE\0"
|
|
1206
|
+
"UNKNOWN_PURPOSE_ID\0"
|
|
1207
|
+
"UNKNOWN_TRUST_ID\0"
|
|
1208
|
+
"WRONG_LOOKUP_TYPE\0"
|
|
1209
|
+
"BAD_IP_ADDRESS\0"
|
|
1210
|
+
"BAD_OBJECT\0"
|
|
1211
|
+
"BN_DEC2BN_ERROR\0"
|
|
1212
|
+
"BN_TO_ASN1_INTEGER_ERROR\0"
|
|
1213
|
+
"CANNOT_FIND_FREE_FUNCTION\0"
|
|
1214
|
+
"DIRNAME_ERROR\0"
|
|
1215
|
+
"DISTPOINT_ALREADY_SET\0"
|
|
1216
|
+
"DUPLICATE_ZONE_ID\0"
|
|
1217
|
+
"ERROR_CONVERTING_ZONE\0"
|
|
1218
|
+
"ERROR_CREATING_EXTENSION\0"
|
|
1219
|
+
"ERROR_IN_EXTENSION\0"
|
|
1220
|
+
"EXPECTED_A_SECTION_NAME\0"
|
|
1221
|
+
"EXTENSION_EXISTS\0"
|
|
1222
|
+
"EXTENSION_NAME_ERROR\0"
|
|
1223
|
+
"EXTENSION_NOT_FOUND\0"
|
|
1224
|
+
"EXTENSION_SETTING_NOT_SUPPORTED\0"
|
|
1225
|
+
"EXTENSION_VALUE_ERROR\0"
|
|
1226
|
+
"ILLEGAL_EMPTY_EXTENSION\0"
|
|
1227
|
+
"ILLEGAL_HEX_DIGIT\0"
|
|
1228
|
+
"INCORRECT_POLICY_SYNTAX_TAG\0"
|
|
1229
|
+
"INVALID_BOOLEAN_STRING\0"
|
|
1230
|
+
"INVALID_EXTENSION_STRING\0"
|
|
1231
|
+
"INVALID_MULTIPLE_RDNS\0"
|
|
1232
|
+
"INVALID_NAME\0"
|
|
1233
|
+
"INVALID_NULL_ARGUMENT\0"
|
|
1234
|
+
"INVALID_NULL_NAME\0"
|
|
1235
|
+
"INVALID_NULL_VALUE\0"
|
|
1236
|
+
"INVALID_NUMBERS\0"
|
|
1237
|
+
"INVALID_OBJECT_IDENTIFIER\0"
|
|
1238
|
+
"INVALID_OPTION\0"
|
|
1239
|
+
"INVALID_POLICY_IDENTIFIER\0"
|
|
1240
|
+
"INVALID_PROXY_POLICY_SETTING\0"
|
|
1241
|
+
"INVALID_PURPOSE\0"
|
|
1242
|
+
"INVALID_SECTION\0"
|
|
1243
|
+
"INVALID_SYNTAX\0"
|
|
1244
|
+
"ISSUER_DECODE_ERROR\0"
|
|
1245
|
+
"NEED_ORGANIZATION_AND_NUMBERS\0"
|
|
1246
|
+
"NO_CONFIG_DATABASE\0"
|
|
1247
|
+
"NO_ISSUER_CERTIFICATE\0"
|
|
1248
|
+
"NO_ISSUER_DETAILS\0"
|
|
1249
|
+
"NO_POLICY_IDENTIFIER\0"
|
|
1250
|
+
"NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED\0"
|
|
1251
|
+
"NO_PUBLIC_KEY\0"
|
|
1252
|
+
"NO_SUBJECT_DETAILS\0"
|
|
1253
|
+
"ODD_NUMBER_OF_DIGITS\0"
|
|
1254
|
+
"OPERATION_NOT_DEFINED\0"
|
|
1255
|
+
"OTHERNAME_ERROR\0"
|
|
1256
|
+
"POLICY_LANGUAGE_ALREADY_DEFINED\0"
|
|
1257
|
+
"POLICY_PATH_LENGTH\0"
|
|
1258
|
+
"POLICY_PATH_LENGTH_ALREADY_DEFINED\0"
|
|
1259
|
+
"POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY\0"
|
|
1260
|
+
"SECTION_NOT_FOUND\0"
|
|
1261
|
+
"UNABLE_TO_GET_ISSUER_DETAILS\0"
|
|
1262
|
+
"UNABLE_TO_GET_ISSUER_KEYID\0"
|
|
1263
|
+
"UNKNOWN_BIT_STRING_ARGUMENT\0"
|
|
1264
|
+
"UNKNOWN_EXTENSION\0"
|
|
1265
|
+
"UNKNOWN_EXTENSION_NAME\0"
|
|
1266
|
+
"UNKNOWN_OPTION\0"
|
|
1267
|
+
"UNSUPPORTED_OPTION\0"
|
|
1268
|
+
"USER_TOO_LONG\0"
|
|
1269
|
+
"";
|
|
1270
|
+
|