awesome-grpc-that-works 0.12.2 → 0.14.0.dev
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -0
- data/Makefile +5783 -22121
- data/include/grpc/byte_buffer.h +2 -83
- data/include/grpc/census.h +173 -121
- data/include/grpc/compression.h +14 -38
- data/include/grpc/grpc.h +85 -434
- data/include/grpc/grpc_security.h +76 -46
- data/include/grpc/grpc_zookeeper.h +1 -1
- data/include/grpc/impl/codegen/alloc.h +74 -0
- data/include/grpc/impl/codegen/atm.h +92 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +72 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +87 -0
- data/include/grpc/impl/codegen/atm_win32.h +125 -0
- data/include/grpc/impl/codegen/byte_buffer.h +121 -0
- data/include/grpc/impl/codegen/compression_types.h +73 -0
- data/include/grpc/impl/codegen/connectivity_state.h +59 -0
- data/include/grpc/impl/codegen/grpc_types.h +378 -0
- data/include/grpc/impl/codegen/log.h +110 -0
- data/include/grpc/impl/codegen/port_platform.h +370 -0
- data/include/grpc/impl/codegen/propagation_bits.h +67 -0
- data/include/grpc/impl/codegen/slice.h +182 -0
- data/include/grpc/impl/codegen/slice_buffer.h +105 -0
- data/include/grpc/impl/codegen/status.h +163 -0
- data/include/grpc/impl/codegen/sync.h +316 -0
- data/include/grpc/impl/codegen/sync_generic.h +55 -0
- data/{src/core/census/context.h → include/grpc/impl/codegen/sync_posix.h} +11 -11
- data/include/grpc/impl/codegen/sync_win32.h +49 -0
- data/include/grpc/impl/codegen/time.h +130 -0
- data/include/grpc/status.h +2 -126
- data/include/grpc/support/alloc.h +2 -35
- data/include/grpc/support/atm.h +2 -55
- data/include/grpc/support/atm_gcc_atomic.h +5 -38
- data/include/grpc/support/atm_gcc_sync.h +2 -50
- data/include/grpc/support/atm_win32.h +2 -88
- data/include/grpc/support/avl.h +10 -9
- data/include/grpc/support/cmdline.h +15 -13
- data/include/grpc/support/cpu.h +5 -3
- data/include/grpc/support/histogram.h +23 -20
- data/include/grpc/support/host_port.h +5 -3
- data/include/grpc/support/log.h +2 -71
- data/include/grpc/support/log_win32.h +2 -2
- data/include/grpc/support/port_platform.h +2 -319
- data/include/grpc/support/slice.h +2 -145
- data/include/grpc/support/slice_buffer.h +2 -65
- data/include/grpc/support/string_util.h +3 -3
- data/include/grpc/support/subprocess.h +8 -6
- data/include/grpc/support/sync.h +2 -278
- data/include/grpc/support/sync_generic.h +2 -18
- data/include/grpc/support/sync_posix.h +2 -10
- data/include/grpc/support/sync_win32.h +2 -12
- data/include/grpc/support/thd.h +11 -11
- data/include/grpc/support/time.h +2 -91
- data/include/grpc/support/tls.h +1 -1
- data/include/grpc/support/tls_gcc.h +1 -1
- data/include/grpc/support/tls_msvc.h +1 -1
- data/include/grpc/support/tls_pthread.h +2 -2
- data/include/grpc/support/useful.h +3 -1
- data/src/boringssl/err_data.c +1252 -0
- data/src/core/census/context.c +471 -8
- data/src/core/census/grpc_filter.c +5 -5
- data/src/core/census/initialize.c +4 -7
- data/src/core/census/mlog.c +600 -0
- data/src/core/census/mlog.h +95 -0
- data/src/core/census/operation.c +2 -2
- data/src/core/census/placeholders.c +109 -0
- data/src/core/census/rpc_metric_id.h +6 -6
- data/src/core/census/tracing.c +1 -1
- data/src/core/channel/channel_args.c +71 -9
- data/src/core/channel/channel_args.h +7 -1
- data/src/core/channel/channel_stack.c +1 -1
- data/src/core/channel/client_channel.c +33 -30
- data/src/core/channel/client_uchannel.c +3 -3
- data/src/core/channel/compress_filter.c +8 -8
- data/src/core/channel/http_client_filter.c +4 -4
- data/src/core/channel/http_server_filter.c +11 -11
- data/src/core/channel/subchannel_call_holder.c +11 -11
- data/src/core/client_config/connector.c +3 -2
- data/src/core/client_config/connector.h +2 -2
- data/src/core/client_config/lb_policies/load_balancer_api.c +163 -0
- data/src/core/client_config/lb_policies/load_balancer_api.h +85 -0
- data/src/core/client_config/lb_policies/pick_first.c +57 -40
- data/src/core/client_config/lb_policies/round_robin.c +14 -15
- data/src/core/client_config/lb_policy.c +3 -3
- data/src/core/client_config/lb_policy.h +3 -2
- data/src/core/client_config/resolvers/dns_resolver.c +3 -3
- data/src/core/client_config/resolvers/sockaddr_resolver.c +5 -5
- data/src/core/client_config/subchannel.c +84 -39
- data/src/core/client_config/subchannel.h +15 -6
- data/src/core/client_config/subchannel_index.c +261 -0
- data/src/core/client_config/subchannel_index.h +77 -0
- data/src/core/compression/{algorithm.c → compression_algorithm.c} +3 -3
- data/src/core/httpcli/format_request.c +1 -1
- data/src/core/httpcli/httpcli.c +18 -16
- data/src/core/httpcli/httpcli.h +3 -2
- data/src/core/httpcli/httpcli_security_connector.c +9 -10
- data/src/core/httpcli/parser.c +7 -7
- data/src/core/httpcli/parser.h +1 -1
- data/src/core/iomgr/closure.c +7 -7
- data/src/core/iomgr/closure.h +6 -5
- data/src/core/iomgr/exec_ctx.c +12 -8
- data/src/core/iomgr/exec_ctx.h +12 -5
- data/src/core/iomgr/executor.c +4 -4
- data/src/core/iomgr/executor.h +2 -2
- data/src/core/iomgr/fd_posix.c +32 -19
- data/src/core/iomgr/fd_posix.h +7 -4
- data/src/core/iomgr/iocp_windows.c +7 -9
- data/src/core/iomgr/iomgr.c +2 -2
- data/src/core/iomgr/pollset.h +9 -10
- data/src/core/iomgr/pollset_multipoller_with_epoll.c +71 -5
- data/src/core/iomgr/pollset_multipoller_with_poll_posix.c +9 -5
- data/src/core/iomgr/pollset_posix.c +44 -49
- data/src/core/iomgr/pollset_posix.h +14 -8
- data/src/core/iomgr/pollset_set.h +3 -9
- data/src/core/iomgr/pollset_set_posix.c +23 -3
- data/src/core/iomgr/pollset_set_posix.h +2 -18
- data/src/core/iomgr/pollset_set_windows.c +3 -3
- data/src/core/iomgr/pollset_set_windows.h +2 -2
- data/src/core/iomgr/pollset_windows.c +29 -37
- data/src/core/iomgr/pollset_windows.h +1 -5
- data/src/core/iomgr/resolve_address_posix.c +2 -2
- data/src/core/iomgr/resolve_address_windows.c +2 -2
- data/src/core/iomgr/sockaddr_utils.c +6 -6
- data/src/core/iomgr/sockaddr_win32.h +1 -6
- data/src/core/iomgr/tcp_client_posix.c +14 -12
- data/src/core/iomgr/tcp_client_windows.c +4 -4
- data/src/core/iomgr/tcp_posix.c +18 -10
- data/src/core/iomgr/tcp_posix.h +7 -1
- data/src/core/iomgr/tcp_server.h +40 -20
- data/src/core/iomgr/tcp_server_posix.c +106 -49
- data/src/core/iomgr/tcp_server_windows.c +98 -49
- data/src/core/iomgr/tcp_windows.c +11 -15
- data/src/core/iomgr/timer.c +10 -11
- data/src/core/iomgr/timer.h +22 -2
- data/src/core/iomgr/timer_heap.c +10 -10
- data/src/core/iomgr/timer_heap.h +2 -2
- data/src/core/iomgr/udp_server.c +7 -16
- data/src/core/iomgr/udp_server.h +2 -9
- data/src/core/iomgr/workqueue.h +2 -4
- data/src/core/iomgr/workqueue_posix.c +4 -3
- data/src/core/iomgr/workqueue_posix.h +3 -1
- data/src/core/json/json_reader.c +11 -12
- data/src/core/json/json_reader.h +4 -4
- data/src/core/json/json_string.c +19 -19
- data/src/core/json/json_writer.c +7 -9
- data/src/core/profiling/basic_timers.c +1 -1
- data/src/core/proto/grpc/lb/v0/load_balancer.pb.c +119 -0
- data/src/core/proto/grpc/lb/v0/load_balancer.pb.h +182 -0
- data/src/core/security/{base64.c → b64.c} +10 -10
- data/src/core/security/{base64.h → b64.h} +1 -1
- data/src/core/security/client_auth_filter.c +4 -5
- data/src/core/security/credentials.c +17 -10
- data/src/core/security/credentials.h +3 -3
- data/src/core/security/google_default_credentials.c +27 -22
- data/src/core/security/handshake.c +21 -12
- data/src/core/security/handshake.h +2 -1
- data/src/core/security/json_token.c +14 -8
- data/src/core/security/jwt_verifier.c +4 -3
- data/src/core/security/secure_endpoint.c +16 -16
- data/src/core/security/security_connector.c +131 -81
- data/src/core/security/security_connector.h +47 -27
- data/src/core/security/security_context.c +8 -3
- data/src/core/security/server_auth_filter.c +5 -5
- data/src/core/security/server_secure_chttp2.c +36 -37
- data/src/core/statistics/census_interface.h +2 -2
- data/src/core/statistics/census_rpc_stats.h +3 -3
- data/src/core/support/alloc.c +1 -1
- data/src/core/support/avl.c +2 -2
- data/src/core/support/cpu_posix.c +2 -2
- data/src/core/support/env_linux.c +28 -1
- data/src/core/support/env_win32.c +15 -7
- data/src/core/support/histogram.c +5 -5
- data/src/core/support/{file.c → load_file.c} +2 -2
- data/src/core/support/{file.h → load_file.h} +4 -12
- data/src/core/support/log_posix.c +1 -1
- data/src/core/support/log_win32.c +4 -3
- data/src/core/support/murmur_hash.c +11 -11
- data/src/core/support/murmur_hash.h +1 -1
- data/src/core/support/slice.c +11 -11
- data/src/core/support/slice_buffer.c +6 -6
- data/src/core/support/stack_lockfree.c +20 -10
- data/src/core/support/string.c +15 -15
- data/src/core/support/string.h +5 -5
- data/src/core/support/string_win32.c +5 -5
- data/src/core/support/subprocess_windows.c +141 -0
- data/src/core/support/sync.c +4 -4
- data/src/core/support/sync_posix.c +2 -2
- data/src/core/support/sync_win32.c +10 -5
- data/src/core/support/time.c +29 -29
- data/src/core/support/time_posix.c +15 -6
- data/src/core/support/time_precise.c +2 -2
- data/src/core/support/time_win32.c +18 -9
- data/src/core/support/tls_pthread.c +1 -1
- data/src/core/support/tmpfile.h +55 -0
- data/src/core/support/{file_posix.c → tmpfile_posix.c} +2 -2
- data/src/core/support/{file_win32.c → tmpfile_win32.c} +2 -2
- data/src/core/support/wrap_memcpy.c +53 -0
- data/src/core/surface/alarm.c +84 -0
- data/src/core/surface/byte_buffer_reader.c +1 -1
- data/src/core/surface/call.c +175 -116
- data/src/core/surface/call.h +2 -2
- data/src/core/surface/call_test_only.h +2 -2
- data/src/core/surface/channel.c +9 -9
- data/src/core/surface/channel.h +1 -1
- data/src/core/surface/channel_connectivity.c +3 -3
- data/src/core/surface/channel_create.c +4 -4
- data/src/core/surface/channel_ping.c +2 -2
- data/src/core/surface/completion_queue.c +84 -53
- data/src/core/surface/completion_queue.h +1 -1
- data/src/core/surface/init.c +11 -5
- data/src/core/surface/lame_client.c +2 -3
- data/src/core/surface/secure_channel_create.c +9 -10
- data/src/core/surface/server.c +30 -30
- data/src/core/surface/server_chttp2.c +8 -8
- data/src/core/surface/server_create.c +1 -4
- data/src/core/surface/validate_metadata.c +4 -4
- data/src/core/surface/version.c +2 -2
- data/src/core/transport/byte_stream.c +8 -6
- data/src/core/transport/byte_stream.h +6 -5
- data/src/core/transport/chttp2/bin_encoder.c +29 -29
- data/src/core/transport/chttp2/frame_data.c +29 -26
- data/src/core/transport/chttp2/frame_data.h +6 -6
- data/src/core/transport/chttp2/frame_goaway.c +30 -30
- data/src/core/transport/chttp2/frame_goaway.h +6 -6
- data/src/core/transport/chttp2/frame_ping.c +6 -6
- data/src/core/transport/chttp2/frame_ping.h +5 -5
- data/src/core/transport/chttp2/frame_rst_stream.c +18 -19
- data/src/core/transport/chttp2/frame_rst_stream.h +4 -4
- data/src/core/transport/chttp2/frame_settings.c +30 -30
- data/src/core/transport/chttp2/frame_settings.h +13 -13
- data/src/core/transport/chttp2/frame_window_update.c +17 -18
- data/src/core/transport/chttp2/frame_window_update.h +5 -7
- data/src/core/transport/chttp2/hpack_encoder.c +69 -73
- data/src/core/transport/chttp2/hpack_encoder.h +16 -16
- data/src/core/transport/chttp2/hpack_parser.c +167 -167
- data/src/core/transport/chttp2/hpack_parser.h +16 -16
- data/src/core/transport/chttp2/hpack_table.c +13 -13
- data/src/core/transport/chttp2/hpack_table.h +11 -11
- data/src/core/transport/chttp2/internal.h +103 -87
- data/src/core/transport/chttp2/parsing.c +25 -25
- data/src/core/transport/chttp2/stream_lists.c +38 -1
- data/src/core/transport/chttp2/stream_map.c +13 -14
- data/src/core/transport/chttp2/stream_map.h +6 -7
- data/src/core/transport/chttp2/timeout_encoding.c +19 -16
- data/src/core/transport/chttp2/varint.c +8 -9
- data/src/core/transport/chttp2/varint.h +7 -8
- data/src/core/transport/chttp2/writing.c +25 -22
- data/src/core/transport/chttp2_transport.c +147 -100
- data/src/core/transport/connectivity_state.c +6 -6
- data/src/core/transport/metadata.c +18 -18
- data/src/core/transport/metadata.h +5 -5
- data/src/core/transport/static_metadata.c +32 -33
- data/src/core/transport/static_metadata.h +8 -8
- data/src/core/transport/transport.c +6 -5
- data/src/core/transport/transport.h +17 -1
- data/src/core/tsi/fake_transport_security.c +7 -7
- data/src/core/tsi/ssl_transport_security.c +6 -4
- data/src/core/{iomgr/timer_internal.h → tsi/ssl_types.h} +19 -25
- data/src/ruby/ext/grpc/extconf.rb +52 -14
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -1
- data/src/ruby/ext/grpc/rb_call.c +7 -3
- data/src/ruby/ext/grpc/rb_call_credentials.c +4 -0
- data/src/ruby/ext/grpc/rb_channel.c +4 -2
- data/src/ruby/ext/grpc/rb_channel_args.c +3 -1
- data/src/ruby/ext/grpc/rb_channel_credentials.c +3 -1
- data/src/ruby/ext/grpc/rb_completion_queue.c +3 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +5 -0
- data/src/ruby/ext/grpc/rb_grpc.c +28 -19
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +562 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +846 -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 +3 -1
- data/src/ruby/ext/grpc/rb_server_credentials.c +4 -2
- data/src/ruby/lib/grpc/core/time_consts.rb +2 -2
- data/src/ruby/lib/grpc/errors.rb +2 -2
- data/src/ruby/lib/grpc/generic/bidi_call.rb +1 -1
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +1 -1
- data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
- data/src/ruby/lib/grpc/grpc.rb +34 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/README.md +2 -2
- data/src/ruby/pb/generate_proto_ruby.sh +2 -2
- data/src/ruby/pb/grpc/health/checker.rb +11 -11
- data/src/ruby/pb/grpc/health/v1/health.rb +28 -0
- data/src/ruby/pb/grpc/health/{v1alpha → v1}/health_services.rb +4 -4
- data/src/ruby/spec/client_server_spec.rb +2 -1
- data/src/ruby/spec/pb/health/checker_spec.rb +23 -37
- 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 +108 -0
- data/third_party/boringssl/crypto/asn1/a_bitstr.c +255 -0
- data/third_party/boringssl/crypto/asn1/a_bool.c +112 -0
- data/third_party/boringssl/crypto/asn1/a_bytes.c +317 -0
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +286 -0
- data/third_party/boringssl/crypto/asn1/a_dup.c +103 -0
- data/third_party/boringssl/crypto/asn1/a_enum.c +183 -0
- data/third_party/boringssl/crypto/asn1/a_gentm.c +255 -0
- data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +154 -0
- data/third_party/boringssl/crypto/asn1/a_int.c +456 -0
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +390 -0
- data/third_party/boringssl/crypto/asn1/a_object.c +412 -0
- data/third_party/boringssl/crypto/asn1/a_octet.c +70 -0
- data/third_party/boringssl/crypto/asn1/a_print.c +119 -0
- data/third_party/boringssl/crypto/asn1/a_strnid.c +286 -0
- data/third_party/boringssl/crypto/asn1/a_time.c +221 -0
- data/third_party/boringssl/crypto/asn1/a_type.c +160 -0
- data/third_party/boringssl/crypto/asn1/a_utctm.c +342 -0
- data/third_party/boringssl/crypto/asn1/a_utf8.c +210 -0
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +510 -0
- data/third_party/boringssl/crypto/asn1/asn1_locl.h +73 -0
- data/third_party/boringssl/crypto/asn1/asn1_par.c +444 -0
- data/third_party/boringssl/crypto/asn1/asn_pack.c +104 -0
- data/third_party/boringssl/crypto/asn1/bio_asn1.c +496 -0
- data/third_party/boringssl/crypto/asn1/bio_ndef.c +254 -0
- data/third_party/boringssl/crypto/asn1/f_enum.c +206 -0
- data/third_party/boringssl/crypto/asn1/f_int.c +210 -0
- data/third_party/boringssl/crypto/asn1/f_string.c +204 -0
- data/third_party/boringssl/crypto/asn1/t_bitst.c +102 -0
- data/third_party/boringssl/crypto/asn1/t_pkey.c +112 -0
- data/third_party/boringssl/crypto/asn1/tasn_dec.c +1342 -0
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +695 -0
- data/third_party/boringssl/crypto/asn1/tasn_fre.c +264 -0
- data/third_party/boringssl/crypto/asn1/tasn_new.c +398 -0
- data/third_party/boringssl/crypto/asn1/tasn_prn.c +642 -0
- data/third_party/boringssl/crypto/asn1/tasn_typ.c +137 -0
- data/third_party/boringssl/crypto/asn1/tasn_utl.c +266 -0
- data/third_party/boringssl/crypto/asn1/x_bignum.c +143 -0
- data/third_party/boringssl/crypto/asn1/x_long.c +182 -0
- data/third_party/boringssl/crypto/base64/base64.c +478 -0
- data/third_party/boringssl/crypto/bio/bio.c +608 -0
- data/third_party/boringssl/crypto/bio/bio_mem.c +327 -0
- data/third_party/boringssl/crypto/bio/buffer.c +496 -0
- data/third_party/boringssl/crypto/bio/connect.c +544 -0
- data/third_party/boringssl/crypto/bio/fd.c +270 -0
- data/third_party/boringssl/crypto/bio/file.c +349 -0
- data/third_party/boringssl/crypto/bio/hexdump.c +192 -0
- data/third_party/boringssl/crypto/bio/internal.h +108 -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 +195 -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 +599 -0
- data/third_party/boringssl/crypto/bn/bn.c +341 -0
- data/third_party/boringssl/crypto/bn/bn_asn1.c +93 -0
- data/third_party/boringssl/crypto/bn/cmp.c +200 -0
- data/third_party/boringssl/crypto/bn/convert.c +597 -0
- data/third_party/boringssl/crypto/bn/ctx.c +311 -0
- data/third_party/boringssl/crypto/bn/div.c +625 -0
- data/third_party/boringssl/crypto/bn/exponentiation.c +1544 -0
- data/third_party/boringssl/crypto/bn/gcd.c +711 -0
- data/third_party/boringssl/crypto/bn/generic.c +1019 -0
- data/third_party/boringssl/crypto/bn/internal.h +294 -0
- data/third_party/boringssl/crypto/bn/kronecker.c +175 -0
- data/third_party/boringssl/crypto/bn/montgomery.c +561 -0
- data/third_party/boringssl/crypto/bn/mul.c +888 -0
- data/third_party/boringssl/crypto/bn/prime.c +845 -0
- data/third_party/boringssl/crypto/bn/random.c +326 -0
- data/third_party/boringssl/crypto/bn/rsaz_exp.c +326 -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 +505 -0
- data/third_party/boringssl/crypto/buf/buf.c +235 -0
- data/third_party/boringssl/crypto/bytestring/ber.c +221 -0
- data/third_party/boringssl/crypto/bytestring/cbb.c +411 -0
- data/third_party/boringssl/crypto/bytestring/cbs.c +415 -0
- data/third_party/boringssl/crypto/bytestring/internal.h +46 -0
- data/third_party/boringssl/crypto/chacha/chacha_generic.c +140 -0
- data/third_party/boringssl/crypto/chacha/chacha_vec.c +323 -0
- data/third_party/boringssl/crypto/cipher/aead.c +167 -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 +1767 -0
- data/third_party/boringssl/crypto/cipher/e_chacha20poly1305.c +311 -0
- data/third_party/boringssl/crypto/cipher/e_des.c +207 -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 +463 -0
- data/third_party/boringssl/crypto/cipher/e_tls.c +673 -0
- data/third_party/boringssl/crypto/cipher/internal.h +164 -0
- data/third_party/boringssl/crypto/cipher/tls_cbc.c +495 -0
- data/third_party/boringssl/crypto/cmac/cmac.c +239 -0
- data/third_party/boringssl/crypto/conf/conf.c +778 -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-arm.c +199 -0
- data/third_party/boringssl/crypto/cpu-intel.c +261 -0
- data/third_party/boringssl/crypto/crypto.c +140 -0
- data/third_party/boringssl/crypto/curve25519/curve25519.c +4897 -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 +180 -0
- data/third_party/boringssl/crypto/dh/dh.c +463 -0
- data/third_party/boringssl/crypto/dh/dh_asn1.c +84 -0
- data/third_party/boringssl/crypto/dh/internal.h +80 -0
- data/third_party/boringssl/crypto/dh/params.c +301 -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 +322 -0
- data/third_party/boringssl/crypto/directory.h +66 -0
- data/third_party/boringssl/crypto/directory_posix.c +108 -0
- data/third_party/boringssl/crypto/directory_win.c +144 -0
- data/third_party/boringssl/crypto/dsa/dsa.c +908 -0
- data/third_party/boringssl/crypto/dsa/dsa_asn1.c +150 -0
- data/third_party/boringssl/crypto/dsa/internal.h +78 -0
- data/third_party/boringssl/crypto/ec/ec.c +889 -0
- data/third_party/boringssl/crypto/ec/ec_asn1.c +586 -0
- data/third_party/boringssl/crypto/ec/ec_key.c +482 -0
- data/third_party/boringssl/crypto/ec/ec_montgomery.c +280 -0
- data/third_party/boringssl/crypto/ec/internal.h +318 -0
- data/third_party/boringssl/crypto/ec/oct.c +416 -0
- data/third_party/boringssl/crypto/ec/p224-64.c +1305 -0
- data/third_party/boringssl/crypto/ec/p256-64.c +1878 -0
- data/third_party/boringssl/crypto/ec/p256-x86_64-table.h +9548 -0
- data/third_party/boringssl/crypto/ec/p256-x86_64.c +596 -0
- data/third_party/boringssl/crypto/ec/simple.c +1313 -0
- data/third_party/boringssl/crypto/ec/util-64.c +183 -0
- data/third_party/boringssl/crypto/ec/wnaf.c +449 -0
- data/third_party/boringssl/crypto/ecdh/ecdh.c +153 -0
- data/third_party/boringssl/crypto/ecdsa/ecdsa.c +496 -0
- data/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c +240 -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/algorithm.c +153 -0
- data/third_party/boringssl/crypto/evp/digestsign.c +159 -0
- data/third_party/boringssl/crypto/evp/evp.c +411 -0
- data/third_party/boringssl/crypto/evp/evp_asn1.c +179 -0
- data/third_party/boringssl/crypto/evp/evp_ctx.c +477 -0
- data/third_party/boringssl/crypto/evp/internal.h +278 -0
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +588 -0
- data/third_party/boringssl/crypto/evp/p_ec.c +283 -0
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +562 -0
- data/third_party/boringssl/crypto/evp/p_rsa.c +596 -0
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +737 -0
- data/third_party/boringssl/crypto/evp/pbkdf.c +151 -0
- data/third_party/boringssl/crypto/evp/sign.c +151 -0
- data/third_party/boringssl/crypto/ex_data.c +294 -0
- data/third_party/boringssl/crypto/hkdf/hkdf.c +89 -0
- data/third_party/boringssl/crypto/hmac/hmac.c +213 -0
- data/third_party/boringssl/crypto/internal.h +532 -0
- data/third_party/boringssl/crypto/lhash/lhash.c +346 -0
- data/third_party/boringssl/crypto/md4/md4.c +225 -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 +231 -0
- data/third_party/boringssl/crypto/modes/ctr.c +226 -0
- data/third_party/boringssl/crypto/modes/gcm.c +1252 -0
- data/third_party/boringssl/crypto/modes/internal.h +370 -0
- data/third_party/boringssl/crypto/modes/ofb.c +108 -0
- data/third_party/boringssl/crypto/obj/obj.c +664 -0
- data/third_party/boringssl/crypto/obj/obj_dat.h +5257 -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 +281 -0
- data/third_party/boringssl/crypto/pem/pem_info.c +404 -0
- data/third_party/boringssl/crypto/pem/pem_lib.c +835 -0
- data/third_party/boringssl/crypto/pem/pem_oth.c +89 -0
- data/third_party/boringssl/crypto/pem/pem_pk8.c +244 -0
- data/third_party/boringssl/crypto/pem/pem_pkey.c +312 -0
- data/third_party/boringssl/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl/crypto/pem/pem_xaux.c +66 -0
- data/third_party/boringssl/crypto/pkcs8/internal.h +83 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbe.c +150 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +440 -0
- data/third_party/boringssl/crypto/pkcs8/p8_pkey.c +85 -0
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +1217 -0
- data/third_party/boringssl/crypto/poly1305/poly1305.c +331 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +301 -0
- data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +892 -0
- data/third_party/boringssl/crypto/rand/internal.h +32 -0
- data/third_party/boringssl/crypto/rand/rand.c +239 -0
- data/third_party/boringssl/crypto/rand/urandom.c +223 -0
- data/third_party/boringssl/crypto/rand/windows.c +56 -0
- data/third_party/boringssl/crypto/rc4/rc4.c +283 -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 +462 -0
- data/third_party/boringssl/crypto/rsa/internal.h +164 -0
- data/third_party/boringssl/crypto/rsa/padding.c +711 -0
- data/third_party/boringssl/crypto/rsa/rsa.c +808 -0
- data/third_party/boringssl/crypto/rsa/rsa_asn1.c +473 -0
- data/third_party/boringssl/crypto/rsa/rsa_impl.c +1138 -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 +386 -0
- data/third_party/boringssl/crypto/test/scoped_types.h +137 -0
- data/third_party/boringssl/crypto/test/test_util.h +35 -0
- data/third_party/boringssl/crypto/thread.c +101 -0
- data/third_party/boringssl/crypto/thread_none.c +55 -0
- data/third_party/boringssl/crypto/thread_pthread.c +167 -0
- data/third_party/boringssl/crypto/thread_win.c +282 -0
- data/third_party/boringssl/crypto/time_support.c +212 -0
- data/third_party/boringssl/crypto/x509/a_digest.c +97 -0
- data/third_party/boringssl/crypto/x509/a_sign.c +136 -0
- data/third_party/boringssl/crypto/x509/a_strex.c +564 -0
- data/third_party/boringssl/crypto/x509/a_verify.c +133 -0
- data/third_party/boringssl/crypto/x509/asn1_gen.c +873 -0
- data/third_party/boringssl/crypto/x509/by_dir.c +491 -0
- data/third_party/boringssl/crypto/x509/by_file.c +295 -0
- data/third_party/boringssl/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl/crypto/x509/i2d_pr.c +84 -0
- data/third_party/boringssl/crypto/x509/pkcs7.c +353 -0
- data/third_party/boringssl/crypto/x509/t_crl.c +129 -0
- data/third_party/boringssl/crypto/x509/t_req.c +246 -0
- data/third_party/boringssl/crypto/x509/t_x509.c +500 -0
- data/third_party/boringssl/crypto/x509/t_x509a.c +109 -0
- data/third_party/boringssl/crypto/x509/vpm_int.h +70 -0
- data/third_party/boringssl/crypto/x509/x509.c +152 -0
- data/third_party/boringssl/crypto/x509/x509_att.c +353 -0
- data/third_party/boringssl/crypto/x509/x509_cmp.c +490 -0
- data/third_party/boringssl/crypto/x509/x509_d2.c +105 -0
- data/third_party/boringssl/crypto/x509/x509_def.c +88 -0
- data/third_party/boringssl/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl/crypto/x509/x509_lu.c +738 -0
- data/third_party/boringssl/crypto/x509/x509_obj.c +191 -0
- data/third_party/boringssl/crypto/x509/x509_r2x.c +113 -0
- data/third_party/boringssl/crypto/x509/x509_req.c +315 -0
- data/third_party/boringssl/crypto/x509/x509_set.c +154 -0
- data/third_party/boringssl/crypto/x509/x509_trs.c +304 -0
- data/third_party/boringssl/crypto/x509/x509_txt.c +209 -0
- data/third_party/boringssl/crypto/x509/x509_v3.c +271 -0
- data/third_party/boringssl/crypto/x509/x509_vfy.c +2456 -0
- data/third_party/boringssl/crypto/x509/x509_vpm.c +672 -0
- data/third_party/boringssl/crypto/x509/x509cset.c +172 -0
- data/third_party/boringssl/crypto/x509/x509name.c +381 -0
- data/third_party/boringssl/crypto/x509/x509rset.c +80 -0
- data/third_party/boringssl/crypto/x509/x509spki.c +135 -0
- data/third_party/boringssl/crypto/x509/x509type.c +128 -0
- data/third_party/boringssl/crypto/x509/x_algor.c +154 -0
- data/third_party/boringssl/crypto/x509/x_all.c +547 -0
- data/third_party/boringssl/crypto/x509/x_attrib.c +117 -0
- data/third_party/boringssl/crypto/x509/x_crl.c +560 -0
- data/third_party/boringssl/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl/crypto/x509/x_info.c +95 -0
- data/third_party/boringssl/crypto/x509/x_name.c +538 -0
- data/third_party/boringssl/crypto/x509/x_pkey.c +100 -0
- data/third_party/boringssl/crypto/x509/x_pubkey.c +384 -0
- data/third_party/boringssl/crypto/x509/x_req.c +112 -0
- data/third_party/boringssl/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl/crypto/x509/x_spki.c +78 -0
- data/third_party/boringssl/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl/crypto/x509/x_x509.c +227 -0
- data/third_party/boringssl/crypto/x509/x_x509a.c +197 -0
- data/third_party/boringssl/crypto/x509v3/ext_dat.h +129 -0
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +299 -0
- data/third_party/boringssl/crypto/x509v3/pcy_data.c +137 -0
- data/third_party/boringssl/crypto/x509v3/pcy_int.h +212 -0
- data/third_party/boringssl/crypto/x509v3/pcy_lib.c +165 -0
- data/third_party/boringssl/crypto/x509v3/pcy_map.c +133 -0
- data/third_party/boringssl/crypto/x509v3/pcy_node.c +197 -0
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +876 -0
- data/third_party/boringssl/crypto/x509v3/v3_akey.c +212 -0
- data/third_party/boringssl/crypto/x509v3/v3_akeya.c +71 -0
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +622 -0
- data/third_party/boringssl/crypto/x509v3/v3_bcons.c +126 -0
- data/third_party/boringssl/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +459 -0
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +475 -0
- data/third_party/boringssl/crypto/x509v3/v3_crld.c +616 -0
- data/third_party/boringssl/crypto/x509v3/v3_enum.c +98 -0
- data/third_party/boringssl/crypto/x509v3/v3_extku.c +145 -0
- data/third_party/boringssl/crypto/x509v3/v3_genn.c +252 -0
- data/third_party/boringssl/crypto/x509v3/v3_ia5.c +117 -0
- data/third_party/boringssl/crypto/x509v3/v3_info.c +200 -0
- data/third_party/boringssl/crypto/x509v3/v3_int.c +87 -0
- data/third_party/boringssl/crypto/x509v3/v3_lib.c +335 -0
- data/third_party/boringssl/crypto/x509v3/v3_ncons.c +510 -0
- data/third_party/boringssl/crypto/x509v3/v3_pci.c +335 -0
- data/third_party/boringssl/crypto/x509v3/v3_pcia.c +56 -0
- data/third_party/boringssl/crypto/x509v3/v3_pcons.c +142 -0
- data/third_party/boringssl/crypto/x509v3/v3_pku.c +109 -0
- data/third_party/boringssl/crypto/x509v3/v3_pmaps.c +156 -0
- data/third_party/boringssl/crypto/x509v3/v3_prn.c +207 -0
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +805 -0
- data/third_party/boringssl/crypto/x509v3/v3_skey.c +148 -0
- data/third_party/boringssl/crypto/x509v3/v3_sxnet.c +266 -0
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +1322 -0
- data/third_party/boringssl/include/openssl/aead.h +346 -0
- data/third_party/boringssl/include/openssl/aes.h +158 -0
- data/third_party/boringssl/include/openssl/arm_arch.h +127 -0
- data/third_party/boringssl/include/openssl/asn1.h +1168 -0
- data/third_party/boringssl/include/openssl/asn1_mac.h +75 -0
- data/third_party/boringssl/include/openssl/asn1t.h +906 -0
- data/third_party/boringssl/include/openssl/base.h +261 -0
- data/third_party/boringssl/include/openssl/base64.h +184 -0
- data/third_party/boringssl/include/openssl/bio.h +902 -0
- data/third_party/boringssl/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl/include/openssl/bn.h +885 -0
- data/third_party/boringssl/include/openssl/buf.h +118 -0
- data/third_party/boringssl/include/openssl/buffer.h +18 -0
- data/third_party/boringssl/include/openssl/bytestring.h +360 -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 +571 -0
- data/third_party/boringssl/include/openssl/cmac.h +76 -0
- data/third_party/boringssl/include/openssl/conf.h +145 -0
- data/third_party/boringssl/include/openssl/cpu.h +184 -0
- data/third_party/boringssl/include/openssl/crypto.h +68 -0
- data/third_party/boringssl/include/openssl/curve25519.h +88 -0
- data/third_party/boringssl/include/openssl/des.h +177 -0
- data/third_party/boringssl/include/openssl/dh.h +238 -0
- data/third_party/boringssl/include/openssl/digest.h +258 -0
- data/third_party/boringssl/include/openssl/dsa.h +343 -0
- data/third_party/boringssl/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl/include/openssl/ec.h +355 -0
- data/third_party/boringssl/include/openssl/ec_key.h +280 -0
- data/third_party/boringssl/include/openssl/ecdh.h +102 -0
- data/third_party/boringssl/include/openssl/ecdsa.h +206 -0
- data/third_party/boringssl/include/openssl/engine.h +98 -0
- data/third_party/boringssl/include/openssl/err.h +487 -0
- data/third_party/boringssl/include/openssl/evp.h +750 -0
- data/third_party/boringssl/include/openssl/ex_data.h +213 -0
- data/third_party/boringssl/include/openssl/hkdf.h +44 -0
- data/third_party/boringssl/include/openssl/hmac.h +160 -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 +102 -0
- data/third_party/boringssl/include/openssl/md5.h +107 -0
- data/third_party/boringssl/include/openssl/mem.h +140 -0
- data/third_party/boringssl/include/openssl/obj.h +198 -0
- data/third_party/boringssl/include/openssl/obj_mac.h +4140 -0
- data/third_party/boringssl/include/openssl/objects.h +18 -0
- data/third_party/boringssl/include/openssl/opensslfeatures.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 +521 -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 +220 -0
- data/third_party/boringssl/include/openssl/poly1305.h +51 -0
- data/third_party/boringssl/include/openssl/pqueue.h +146 -0
- data/third_party/boringssl/include/openssl/rand.h +113 -0
- data/third_party/boringssl/include/openssl/rc4.h +90 -0
- data/third_party/boringssl/include/openssl/rsa.h +637 -0
- data/third_party/boringssl/include/openssl/safestack.h +16 -0
- data/third_party/boringssl/include/openssl/sha.h +256 -0
- data/third_party/boringssl/include/openssl/srtp.h +18 -0
- data/third_party/boringssl/include/openssl/ssl.h +4466 -0
- data/third_party/boringssl/include/openssl/ssl3.h +441 -0
- data/third_party/boringssl/include/openssl/stack.h +298 -0
- data/third_party/boringssl/include/openssl/stack_macros.h +4190 -0
- data/third_party/boringssl/include/openssl/thread.h +173 -0
- data/third_party/boringssl/include/openssl/time_support.h +90 -0
- data/third_party/boringssl/include/openssl/tls1.h +653 -0
- data/third_party/boringssl/include/openssl/type_check.h +91 -0
- data/third_party/boringssl/include/openssl/x509.h +1258 -0
- data/third_party/boringssl/include/openssl/x509_vfy.h +611 -0
- data/third_party/boringssl/include/openssl/x509v3.h +798 -0
- data/third_party/boringssl/ssl/custom_extensions.c +257 -0
- data/third_party/boringssl/ssl/d1_both.c +880 -0
- data/third_party/boringssl/ssl/d1_clnt.c +566 -0
- data/third_party/boringssl/ssl/d1_lib.c +340 -0
- data/third_party/boringssl/ssl/d1_meth.c +130 -0
- data/third_party/boringssl/ssl/d1_pkt.c +578 -0
- data/third_party/boringssl/ssl/d1_srtp.c +234 -0
- data/third_party/boringssl/ssl/d1_srvr.c +485 -0
- data/third_party/boringssl/ssl/dtls_record.c +308 -0
- data/third_party/boringssl/ssl/internal.h +1276 -0
- data/third_party/boringssl/ssl/pqueue/pqueue.c +197 -0
- data/third_party/boringssl/ssl/s3_both.c +571 -0
- data/third_party/boringssl/ssl/s3_clnt.c +2241 -0
- data/third_party/boringssl/ssl/s3_enc.c +494 -0
- data/third_party/boringssl/ssl/s3_lib.c +587 -0
- data/third_party/boringssl/ssl/s3_meth.c +166 -0
- data/third_party/boringssl/ssl/s3_pkt.c +732 -0
- data/third_party/boringssl/ssl/s3_srvr.c +2536 -0
- data/third_party/boringssl/ssl/ssl_aead_ctx.c +300 -0
- data/third_party/boringssl/ssl/ssl_asn1.c +718 -0
- data/third_party/boringssl/ssl/ssl_buffer.c +319 -0
- data/third_party/boringssl/ssl/ssl_cert.c +539 -0
- data/third_party/boringssl/ssl/ssl_cipher.c +2003 -0
- data/third_party/boringssl/ssl/ssl_file.c +633 -0
- data/third_party/boringssl/ssl/ssl_lib.c +2653 -0
- data/third_party/boringssl/ssl/ssl_rsa.c +423 -0
- data/third_party/boringssl/ssl/ssl_session.c +764 -0
- data/third_party/boringssl/ssl/ssl_stat.c +591 -0
- data/third_party/boringssl/ssl/t1_enc.c +708 -0
- data/third_party/boringssl/ssl/t1_lib.c +2905 -0
- data/third_party/boringssl/ssl/test/async_bio.h +45 -0
- data/third_party/boringssl/ssl/test/packeted_bio.h +44 -0
- data/third_party/boringssl/ssl/test/scoped_types.h +28 -0
- data/third_party/boringssl/ssl/test/test_config.h +108 -0
- data/third_party/boringssl/ssl/tls_record.c +342 -0
- data/third_party/nanopb/pb.h +547 -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 +1319 -0
- data/third_party/nanopb/pb_decode.h +149 -0
- data/third_party/nanopb/pb_encode.c +690 -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 +504 -20
- data/Rakefile +0 -63
- data/src/ruby/pb/grpc/health/v1alpha/health.rb +0 -29
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
*
|
3
|
-
* Copyright 2015, Google Inc.
|
3
|
+
* Copyright 2015-2016, Google Inc.
|
4
4
|
* All rights reserved.
|
5
5
|
*
|
6
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -33,23 +33,7 @@
|
|
33
33
|
|
34
34
|
#ifndef GRPC_SUPPORT_SYNC_GENERIC_H
|
35
35
|
#define GRPC_SUPPORT_SYNC_GENERIC_H
|
36
|
-
/* Generic type defintions for gpr_sync. */
|
37
36
|
|
38
|
-
#include <grpc/
|
39
|
-
|
40
|
-
/* gpr_event */
|
41
|
-
typedef struct { gpr_atm state; } gpr_event;
|
42
|
-
|
43
|
-
#define GPR_EVENT_INIT \
|
44
|
-
{ 0 }
|
45
|
-
|
46
|
-
/* gpr_refcount */
|
47
|
-
typedef struct { gpr_atm count; } gpr_refcount;
|
48
|
-
|
49
|
-
/* gpr_stats_counter */
|
50
|
-
typedef struct { gpr_atm value; } gpr_stats_counter;
|
51
|
-
|
52
|
-
#define GPR_STATS_INIT \
|
53
|
-
{ 0 }
|
37
|
+
#include <grpc/impl/codegen/sync_generic.h>
|
54
38
|
|
55
39
|
#endif /* GRPC_SUPPORT_SYNC_GENERIC_H */
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
*
|
3
|
-
* Copyright 2015, Google Inc.
|
3
|
+
* Copyright 2015-2016, Google Inc.
|
4
4
|
* All rights reserved.
|
5
5
|
*
|
6
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -34,14 +34,6 @@
|
|
34
34
|
#ifndef GRPC_SUPPORT_SYNC_POSIX_H
|
35
35
|
#define GRPC_SUPPORT_SYNC_POSIX_H
|
36
36
|
|
37
|
-
#include <grpc/
|
38
|
-
|
39
|
-
#include <pthread.h>
|
40
|
-
|
41
|
-
typedef pthread_mutex_t gpr_mu;
|
42
|
-
typedef pthread_cond_t gpr_cv;
|
43
|
-
typedef pthread_once_t gpr_once;
|
44
|
-
|
45
|
-
#define GPR_ONCE_INIT PTHREAD_ONCE_INIT
|
37
|
+
#include <grpc/impl/codegen/sync_posix.h>
|
46
38
|
|
47
39
|
#endif /* GRPC_SUPPORT_SYNC_POSIX_H */
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
*
|
3
|
-
* Copyright 2015, Google Inc.
|
3
|
+
* Copyright 2015-2016, Google Inc.
|
4
4
|
* All rights reserved.
|
5
5
|
*
|
6
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -34,16 +34,6 @@
|
|
34
34
|
#ifndef GRPC_SUPPORT_SYNC_WIN32_H
|
35
35
|
#define GRPC_SUPPORT_SYNC_WIN32_H
|
36
36
|
|
37
|
-
#include <grpc/
|
38
|
-
|
39
|
-
typedef struct {
|
40
|
-
CRITICAL_SECTION cs; /* Not an SRWLock until Vista is unsupported */
|
41
|
-
int locked;
|
42
|
-
} gpr_mu;
|
43
|
-
|
44
|
-
typedef CONDITION_VARIABLE gpr_cv;
|
45
|
-
|
46
|
-
typedef INIT_ONCE gpr_once;
|
47
|
-
#define GPR_ONCE_INIT INIT_ONCE_STATIC_INIT
|
37
|
+
#include <grpc/impl/codegen/sync_win32.h>
|
48
38
|
|
49
39
|
#endif /* GRPC_SUPPORT_SYNC_WIN32_H */
|
data/include/grpc/support/thd.h
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
*
|
3
|
-
* Copyright 2015, Google Inc.
|
3
|
+
* Copyright 2015-2016, Google Inc.
|
4
4
|
* All rights reserved.
|
5
5
|
*
|
6
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -48,7 +48,7 @@
|
|
48
48
|
extern "C" {
|
49
49
|
#endif
|
50
50
|
|
51
|
-
typedef
|
51
|
+
typedef uintptr_t gpr_thd_id;
|
52
52
|
|
53
53
|
/* Thread creation options. */
|
54
54
|
typedef struct {
|
@@ -59,30 +59,30 @@ typedef struct {
|
|
59
59
|
in *t, and return true. If there are insufficient resources, return false.
|
60
60
|
If options==NULL, default options are used.
|
61
61
|
The thread is immediately runnable, and exits when (*thd_body)() returns. */
|
62
|
-
int gpr_thd_new(gpr_thd_id *t, void (*thd_body)(void *arg), void *arg,
|
63
|
-
|
62
|
+
GPRAPI int gpr_thd_new(gpr_thd_id *t, void (*thd_body)(void *arg), void *arg,
|
63
|
+
const gpr_thd_options *options);
|
64
64
|
|
65
65
|
/* Return a gpr_thd_options struct with all fields set to defaults. */
|
66
|
-
gpr_thd_options gpr_thd_options_default(void);
|
66
|
+
GPRAPI gpr_thd_options gpr_thd_options_default(void);
|
67
67
|
|
68
68
|
/* Set the thread to become detached on startup - this is the default. */
|
69
|
-
void gpr_thd_options_set_detached(gpr_thd_options *options);
|
69
|
+
GPRAPI void gpr_thd_options_set_detached(gpr_thd_options *options);
|
70
70
|
|
71
71
|
/* Set the thread to become joinable - mutually exclusive with detached. */
|
72
|
-
void gpr_thd_options_set_joinable(gpr_thd_options *options);
|
72
|
+
GPRAPI void gpr_thd_options_set_joinable(gpr_thd_options *options);
|
73
73
|
|
74
74
|
/* Returns non-zero if the option detached is set. */
|
75
|
-
int gpr_thd_options_is_detached(const gpr_thd_options *options);
|
75
|
+
GPRAPI int gpr_thd_options_is_detached(const gpr_thd_options *options);
|
76
76
|
|
77
77
|
/* Returns non-zero if the option joinable is set. */
|
78
|
-
int gpr_thd_options_is_joinable(const gpr_thd_options *options);
|
78
|
+
GPRAPI int gpr_thd_options_is_joinable(const gpr_thd_options *options);
|
79
79
|
|
80
80
|
/* Returns the identifier of the current thread. */
|
81
|
-
gpr_thd_id gpr_thd_currentid(void);
|
81
|
+
GPRAPI gpr_thd_id gpr_thd_currentid(void);
|
82
82
|
|
83
83
|
/* Blocks until the specified thread properly terminates.
|
84
84
|
Calling this on a detached thread has unpredictable results. */
|
85
|
-
void gpr_thd_join(gpr_thd_id t);
|
85
|
+
GPRAPI void gpr_thd_join(gpr_thd_id t);
|
86
86
|
|
87
87
|
#ifdef __cplusplus
|
88
88
|
}
|
data/include/grpc/support/time.h
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
*
|
3
|
-
* Copyright 2015, Google Inc.
|
3
|
+
* Copyright 2015-2016, Google Inc.
|
4
4
|
* All rights reserved.
|
5
5
|
*
|
6
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -33,96 +33,7 @@
|
|
33
33
|
|
34
34
|
#ifndef GRPC_SUPPORT_TIME_H
|
35
35
|
#define GRPC_SUPPORT_TIME_H
|
36
|
-
/* Time support.
|
37
|
-
We use gpr_timespec, which is analogous to struct timespec. On some
|
38
|
-
machines, absolute times may be in local time. */
|
39
36
|
|
40
|
-
#include <grpc/
|
41
|
-
#include <stddef.h>
|
42
|
-
#include <time.h>
|
43
|
-
|
44
|
-
#ifdef __cplusplus
|
45
|
-
extern "C" {
|
46
|
-
#endif
|
47
|
-
|
48
|
-
/* The clocks we support. */
|
49
|
-
typedef enum {
|
50
|
-
/* Monotonic clock. Epoch undefined. Always moves forwards. */
|
51
|
-
GPR_CLOCK_MONOTONIC = 0,
|
52
|
-
/* Realtime clock. May jump forwards or backwards. Settable by
|
53
|
-
the system administrator. Has its epoch at 0:00:00 UTC 1 Jan 1970. */
|
54
|
-
GPR_CLOCK_REALTIME,
|
55
|
-
/* CPU cycle time obtained by rdtsc instruction on x86 platforms. Epoch
|
56
|
-
undefined. Degrades to GPR_CLOCK_REALTIME on other platforms. */
|
57
|
-
GPR_CLOCK_PRECISE,
|
58
|
-
/* Unmeasurable clock type: no base, created by taking the difference
|
59
|
-
between two times */
|
60
|
-
GPR_TIMESPAN
|
61
|
-
} gpr_clock_type;
|
62
|
-
|
63
|
-
typedef struct gpr_timespec {
|
64
|
-
gpr_int64 tv_sec;
|
65
|
-
gpr_int32 tv_nsec;
|
66
|
-
/** Against which clock was this time measured? (or GPR_TIMESPAN if
|
67
|
-
this is a relative time meaure) */
|
68
|
-
gpr_clock_type clock_type;
|
69
|
-
} gpr_timespec;
|
70
|
-
|
71
|
-
/* Time constants. */
|
72
|
-
gpr_timespec gpr_time_0(gpr_clock_type type); /* The zero time interval. */
|
73
|
-
gpr_timespec gpr_inf_future(gpr_clock_type type); /* The far future */
|
74
|
-
gpr_timespec gpr_inf_past(gpr_clock_type type); /* The far past. */
|
75
|
-
|
76
|
-
#define GPR_MS_PER_SEC 1000
|
77
|
-
#define GPR_US_PER_SEC 1000000
|
78
|
-
#define GPR_NS_PER_SEC 1000000000
|
79
|
-
#define GPR_NS_PER_MS 1000000
|
80
|
-
#define GPR_NS_PER_US 1000
|
81
|
-
#define GPR_US_PER_MS 1000
|
82
|
-
|
83
|
-
/* initialize time subsystem */
|
84
|
-
void gpr_time_init(void);
|
85
|
-
|
86
|
-
/* Return the current time measured from the given clocks epoch. */
|
87
|
-
gpr_timespec gpr_now(gpr_clock_type clock);
|
88
|
-
|
89
|
-
/* Convert a timespec from one clock to another */
|
90
|
-
gpr_timespec gpr_convert_clock_type(gpr_timespec t,
|
91
|
-
gpr_clock_type target_clock);
|
92
|
-
|
93
|
-
/* Return -ve, 0, or +ve according to whether a < b, a == b, or a > b
|
94
|
-
respectively. */
|
95
|
-
int gpr_time_cmp(gpr_timespec a, gpr_timespec b);
|
96
|
-
|
97
|
-
gpr_timespec gpr_time_max(gpr_timespec a, gpr_timespec b);
|
98
|
-
gpr_timespec gpr_time_min(gpr_timespec a, gpr_timespec b);
|
99
|
-
|
100
|
-
/* Add and subtract times. Calculations saturate at infinities. */
|
101
|
-
gpr_timespec gpr_time_add(gpr_timespec a, gpr_timespec b);
|
102
|
-
gpr_timespec gpr_time_sub(gpr_timespec a, gpr_timespec b);
|
103
|
-
|
104
|
-
/* Return a timespec representing a given number of time units. LONG_MIN is
|
105
|
-
interpreted as gpr_inf_past, and LONG_MAX as gpr_inf_future. */
|
106
|
-
gpr_timespec gpr_time_from_micros(long x, gpr_clock_type clock_type);
|
107
|
-
gpr_timespec gpr_time_from_nanos(long x, gpr_clock_type clock_type);
|
108
|
-
gpr_timespec gpr_time_from_millis(long x, gpr_clock_type clock_type);
|
109
|
-
gpr_timespec gpr_time_from_seconds(long x, gpr_clock_type clock_type);
|
110
|
-
gpr_timespec gpr_time_from_minutes(long x, gpr_clock_type clock_type);
|
111
|
-
gpr_timespec gpr_time_from_hours(long x, gpr_clock_type clock_type);
|
112
|
-
|
113
|
-
gpr_int32 gpr_time_to_millis(gpr_timespec timespec);
|
114
|
-
|
115
|
-
/* Return 1 if two times are equal or within threshold of each other,
|
116
|
-
0 otherwise */
|
117
|
-
int gpr_time_similar(gpr_timespec a, gpr_timespec b, gpr_timespec threshold);
|
118
|
-
|
119
|
-
/* Sleep until at least 'until' - an absolute timeout */
|
120
|
-
void gpr_sleep_until(gpr_timespec until);
|
121
|
-
|
122
|
-
double gpr_timespec_to_micros(gpr_timespec t);
|
123
|
-
|
124
|
-
#ifdef __cplusplus
|
125
|
-
}
|
126
|
-
#endif
|
37
|
+
#include <grpc/impl/codegen/time.h>
|
127
38
|
|
128
39
|
#endif /* GRPC_SUPPORT_TIME_H */
|
data/include/grpc/support/tls.h
CHANGED
@@ -41,7 +41,7 @@
|
|
41
41
|
A minimal wrapper that should be implementable across many compilers,
|
42
42
|
and implementable efficiently across most modern compilers.
|
43
43
|
|
44
|
-
Thread locals have type
|
44
|
+
Thread locals have type intptr_t.
|
45
45
|
|
46
46
|
Declaring a thread local variable 'foo':
|
47
47
|
GPR_TLS_DECL(foo);
|
@@ -48,11 +48,11 @@ struct gpr_pthread_thread_local {
|
|
48
48
|
|
49
49
|
#define gpr_tls_init(tls) GPR_ASSERT(0 == pthread_key_create(&(tls)->key, NULL))
|
50
50
|
#define gpr_tls_destroy(tls) pthread_key_delete((tls)->key)
|
51
|
-
#define gpr_tls_get(tls) ((
|
51
|
+
#define gpr_tls_get(tls) ((intptr_t)pthread_getspecific((tls)->key))
|
52
52
|
#ifdef __cplusplus
|
53
53
|
extern "C" {
|
54
54
|
#endif
|
55
|
-
|
55
|
+
intptr_t gpr_tls_set(struct gpr_pthread_thread_local *tls, intptr_t value);
|
56
56
|
#ifdef __cplusplus
|
57
57
|
}
|
58
58
|
#endif
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
*
|
3
|
-
* Copyright 2015, Google Inc.
|
3
|
+
* Copyright 2015-2016, Google Inc.
|
4
4
|
* All rights reserved.
|
5
5
|
*
|
6
6
|
* Redistribution and use in source and binary forms, with or without
|
@@ -72,4 +72,6 @@
|
|
72
72
|
0x0f0f0f0f) % \
|
73
73
|
255)
|
74
74
|
|
75
|
+
#define GPR_ICMP(a, b) ((a) < (b) ? -1 : ((a) > (b) ? 1 : 0))
|
76
|
+
|
75
77
|
#endif /* GRPC_SUPPORT_USEFUL_H */
|
@@ -0,0 +1,1252 @@
|
|
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
|
+
0xc3207ba,
|
58
|
+
0xc3287d4,
|
59
|
+
0xc3307e3,
|
60
|
+
0xc3387f3,
|
61
|
+
0xc340802,
|
62
|
+
0xc34881b,
|
63
|
+
0xc350827,
|
64
|
+
0xc358844,
|
65
|
+
0xc360856,
|
66
|
+
0xc368864,
|
67
|
+
0xc370874,
|
68
|
+
0xc378881,
|
69
|
+
0xc380891,
|
70
|
+
0xc38889c,
|
71
|
+
0xc3908b2,
|
72
|
+
0xc3988c1,
|
73
|
+
0xc3a08d5,
|
74
|
+
0xc3a87c7,
|
75
|
+
0xc3b00b0,
|
76
|
+
0x10321478,
|
77
|
+
0x10329484,
|
78
|
+
0x1033149d,
|
79
|
+
0x103394b0,
|
80
|
+
0x10340de1,
|
81
|
+
0x103494cf,
|
82
|
+
0x103514e4,
|
83
|
+
0x10359516,
|
84
|
+
0x1036152f,
|
85
|
+
0x10369544,
|
86
|
+
0x10371562,
|
87
|
+
0x10379571,
|
88
|
+
0x1038158d,
|
89
|
+
0x103895a8,
|
90
|
+
0x103915b7,
|
91
|
+
0x103995d3,
|
92
|
+
0x103a15ee,
|
93
|
+
0x103a9605,
|
94
|
+
0x103b1616,
|
95
|
+
0x103b962a,
|
96
|
+
0x103c1649,
|
97
|
+
0x103c9658,
|
98
|
+
0x103d166f,
|
99
|
+
0x103d9682,
|
100
|
+
0x103e0b6c,
|
101
|
+
0x103e96b3,
|
102
|
+
0x103f16c6,
|
103
|
+
0x103f96e0,
|
104
|
+
0x104016f0,
|
105
|
+
0x10409704,
|
106
|
+
0x1041171a,
|
107
|
+
0x10419732,
|
108
|
+
0x10421747,
|
109
|
+
0x1042975b,
|
110
|
+
0x1043176d,
|
111
|
+
0x104385d0,
|
112
|
+
0x104408c1,
|
113
|
+
0x10449782,
|
114
|
+
0x10451799,
|
115
|
+
0x104597ae,
|
116
|
+
0x104617bc,
|
117
|
+
0x10469695,
|
118
|
+
0x104714f7,
|
119
|
+
0x104787c7,
|
120
|
+
0x104800b0,
|
121
|
+
0x104894c3,
|
122
|
+
0x14320b4f,
|
123
|
+
0x14328b5d,
|
124
|
+
0x14330b6c,
|
125
|
+
0x14338b7e,
|
126
|
+
0x18320083,
|
127
|
+
0x18328e47,
|
128
|
+
0x18340e75,
|
129
|
+
0x18348e89,
|
130
|
+
0x18358ec0,
|
131
|
+
0x18368eed,
|
132
|
+
0x18370f00,
|
133
|
+
0x18378f14,
|
134
|
+
0x18380f38,
|
135
|
+
0x18388f46,
|
136
|
+
0x18390f5c,
|
137
|
+
0x18398f70,
|
138
|
+
0x183a0f80,
|
139
|
+
0x183b0f90,
|
140
|
+
0x183b8fa5,
|
141
|
+
0x183c8fd0,
|
142
|
+
0x183d0fe4,
|
143
|
+
0x183d8ff4,
|
144
|
+
0x183e0b9b,
|
145
|
+
0x183e9001,
|
146
|
+
0x183f1013,
|
147
|
+
0x183f901e,
|
148
|
+
0x1840102e,
|
149
|
+
0x1840903f,
|
150
|
+
0x18411050,
|
151
|
+
0x18419062,
|
152
|
+
0x1842108b,
|
153
|
+
0x184290bd,
|
154
|
+
0x184310cc,
|
155
|
+
0x18451135,
|
156
|
+
0x1845914b,
|
157
|
+
0x18461166,
|
158
|
+
0x18468ed8,
|
159
|
+
0x184709d9,
|
160
|
+
0x18478094,
|
161
|
+
0x18480fbc,
|
162
|
+
0x18489101,
|
163
|
+
0x18490e5d,
|
164
|
+
0x18498e9e,
|
165
|
+
0x184a119c,
|
166
|
+
0x184a9119,
|
167
|
+
0x184b10e0,
|
168
|
+
0x184b8e37,
|
169
|
+
0x184c10a4,
|
170
|
+
0x184c866b,
|
171
|
+
0x184d1181,
|
172
|
+
0x203211c3,
|
173
|
+
0x243211cf,
|
174
|
+
0x24328907,
|
175
|
+
0x243311e1,
|
176
|
+
0x243391ee,
|
177
|
+
0x243411fb,
|
178
|
+
0x2434920d,
|
179
|
+
0x2435121c,
|
180
|
+
0x24359239,
|
181
|
+
0x24361246,
|
182
|
+
0x24369254,
|
183
|
+
0x24371262,
|
184
|
+
0x24379270,
|
185
|
+
0x24381279,
|
186
|
+
0x24389286,
|
187
|
+
0x24391299,
|
188
|
+
0x28320b8f,
|
189
|
+
0x28328b9b,
|
190
|
+
0x28330b6c,
|
191
|
+
0x28338bae,
|
192
|
+
0x2c32281d,
|
193
|
+
0x2c32a82b,
|
194
|
+
0x2c33283d,
|
195
|
+
0x2c33a84f,
|
196
|
+
0x2c342863,
|
197
|
+
0x2c34a875,
|
198
|
+
0x2c352890,
|
199
|
+
0x2c35a8a2,
|
200
|
+
0x2c3628b5,
|
201
|
+
0x2c3682f3,
|
202
|
+
0x2c3728c2,
|
203
|
+
0x2c37a8d4,
|
204
|
+
0x2c3828e7,
|
205
|
+
0x2c38a8f5,
|
206
|
+
0x2c392905,
|
207
|
+
0x2c39a917,
|
208
|
+
0x2c3a292b,
|
209
|
+
0x2c3aa93c,
|
210
|
+
0x2c3b1359,
|
211
|
+
0x2c3ba94d,
|
212
|
+
0x2c3c2961,
|
213
|
+
0x2c3ca977,
|
214
|
+
0x2c3d2990,
|
215
|
+
0x2c3da9be,
|
216
|
+
0x2c3e29cc,
|
217
|
+
0x2c3ea9e4,
|
218
|
+
0x2c3f29fc,
|
219
|
+
0x2c3faa09,
|
220
|
+
0x2c402a2c,
|
221
|
+
0x2c40aa4b,
|
222
|
+
0x2c4111c3,
|
223
|
+
0x2c41aa5c,
|
224
|
+
0x2c422a6f,
|
225
|
+
0x2c429135,
|
226
|
+
0x2c432a80,
|
227
|
+
0x2c4386a2,
|
228
|
+
0x2c4429ad,
|
229
|
+
0x30320000,
|
230
|
+
0x30328015,
|
231
|
+
0x3033001f,
|
232
|
+
0x30338038,
|
233
|
+
0x3034004a,
|
234
|
+
0x30348064,
|
235
|
+
0x3035006b,
|
236
|
+
0x30358083,
|
237
|
+
0x30360094,
|
238
|
+
0x303680a1,
|
239
|
+
0x303700b0,
|
240
|
+
0x303780bd,
|
241
|
+
0x303800d0,
|
242
|
+
0x303880eb,
|
243
|
+
0x30390100,
|
244
|
+
0x30398114,
|
245
|
+
0x303a0128,
|
246
|
+
0x303a8139,
|
247
|
+
0x303b0152,
|
248
|
+
0x303b816f,
|
249
|
+
0x303c017d,
|
250
|
+
0x303c8191,
|
251
|
+
0x303d01a1,
|
252
|
+
0x303d81ba,
|
253
|
+
0x303e01ca,
|
254
|
+
0x303e81dd,
|
255
|
+
0x303f01ec,
|
256
|
+
0x303f81f8,
|
257
|
+
0x3040020d,
|
258
|
+
0x3040821d,
|
259
|
+
0x30410234,
|
260
|
+
0x30418241,
|
261
|
+
0x30420254,
|
262
|
+
0x30428263,
|
263
|
+
0x30430278,
|
264
|
+
0x30438299,
|
265
|
+
0x304402ac,
|
266
|
+
0x304482bf,
|
267
|
+
0x304502d8,
|
268
|
+
0x304582f3,
|
269
|
+
0x30460310,
|
270
|
+
0x30468329,
|
271
|
+
0x30470337,
|
272
|
+
0x30478348,
|
273
|
+
0x30480357,
|
274
|
+
0x3048836f,
|
275
|
+
0x30490381,
|
276
|
+
0x30498395,
|
277
|
+
0x304a03b4,
|
278
|
+
0x304a83c7,
|
279
|
+
0x304b03d2,
|
280
|
+
0x304b83e1,
|
281
|
+
0x304c03f2,
|
282
|
+
0x304c83fe,
|
283
|
+
0x304d0414,
|
284
|
+
0x304d8422,
|
285
|
+
0x304e0438,
|
286
|
+
0x304e844a,
|
287
|
+
0x304f045c,
|
288
|
+
0x304f846f,
|
289
|
+
0x30500482,
|
290
|
+
0x30508493,
|
291
|
+
0x305104a3,
|
292
|
+
0x305184bb,
|
293
|
+
0x305204d0,
|
294
|
+
0x305284e8,
|
295
|
+
0x305304fc,
|
296
|
+
0x30538514,
|
297
|
+
0x3054052d,
|
298
|
+
0x30548546,
|
299
|
+
0x30550563,
|
300
|
+
0x3055856e,
|
301
|
+
0x30560586,
|
302
|
+
0x30568596,
|
303
|
+
0x305705a7,
|
304
|
+
0x305785ba,
|
305
|
+
0x305805d0,
|
306
|
+
0x305885d9,
|
307
|
+
0x305905ee,
|
308
|
+
0x30598601,
|
309
|
+
0x305a0610,
|
310
|
+
0x305a8630,
|
311
|
+
0x305b063f,
|
312
|
+
0x305b864b,
|
313
|
+
0x305c066b,
|
314
|
+
0x305c8687,
|
315
|
+
0x305d0698,
|
316
|
+
0x305d86a2,
|
317
|
+
0x34320ac9,
|
318
|
+
0x34328add,
|
319
|
+
0x34330afa,
|
320
|
+
0x34338b0d,
|
321
|
+
0x34340b1c,
|
322
|
+
0x34348b39,
|
323
|
+
0x3c320083,
|
324
|
+
0x3c328bd8,
|
325
|
+
0x3c330bf1,
|
326
|
+
0x3c338c0c,
|
327
|
+
0x3c340c29,
|
328
|
+
0x3c348c44,
|
329
|
+
0x3c350c5f,
|
330
|
+
0x3c358c74,
|
331
|
+
0x3c360c8d,
|
332
|
+
0x3c368ca5,
|
333
|
+
0x3c370cb6,
|
334
|
+
0x3c378cc4,
|
335
|
+
0x3c380cd1,
|
336
|
+
0x3c388ce5,
|
337
|
+
0x3c390b9b,
|
338
|
+
0x3c398cf9,
|
339
|
+
0x3c3a0d0d,
|
340
|
+
0x3c3a8881,
|
341
|
+
0x3c3b0d1d,
|
342
|
+
0x3c3b8d38,
|
343
|
+
0x3c3c0d4a,
|
344
|
+
0x3c3c8d60,
|
345
|
+
0x3c3d0d6a,
|
346
|
+
0x3c3d8d7e,
|
347
|
+
0x3c3e0d8c,
|
348
|
+
0x3c3e8db1,
|
349
|
+
0x3c3f0bc4,
|
350
|
+
0x3c3f8d9a,
|
351
|
+
0x403217d3,
|
352
|
+
0x403297e9,
|
353
|
+
0x40331817,
|
354
|
+
0x40339821,
|
355
|
+
0x40341838,
|
356
|
+
0x40349856,
|
357
|
+
0x40351866,
|
358
|
+
0x40359878,
|
359
|
+
0x40361885,
|
360
|
+
0x40369891,
|
361
|
+
0x403718a6,
|
362
|
+
0x403798b8,
|
363
|
+
0x403818c3,
|
364
|
+
0x403898d5,
|
365
|
+
0x40390de1,
|
366
|
+
0x403998e5,
|
367
|
+
0x403a18f8,
|
368
|
+
0x403a9919,
|
369
|
+
0x403b192a,
|
370
|
+
0x403b993a,
|
371
|
+
0x403c0064,
|
372
|
+
0x403c8083,
|
373
|
+
0x403d1946,
|
374
|
+
0x403d995c,
|
375
|
+
0x403e196b,
|
376
|
+
0x403e997e,
|
377
|
+
0x403f1998,
|
378
|
+
0x403f99a6,
|
379
|
+
0x404019bb,
|
380
|
+
0x404099cf,
|
381
|
+
0x404119ec,
|
382
|
+
0x40419a07,
|
383
|
+
0x40421a20,
|
384
|
+
0x40429a33,
|
385
|
+
0x40431a47,
|
386
|
+
0x40439a5f,
|
387
|
+
0x40441a76,
|
388
|
+
0x40448094,
|
389
|
+
0x40451a8b,
|
390
|
+
0x40459a9d,
|
391
|
+
0x40461ac1,
|
392
|
+
0x40469ae1,
|
393
|
+
0x40471aef,
|
394
|
+
0x40479b03,
|
395
|
+
0x40481b18,
|
396
|
+
0x40489b31,
|
397
|
+
0x40491b48,
|
398
|
+
0x40499b62,
|
399
|
+
0x404a1b79,
|
400
|
+
0x404a9b97,
|
401
|
+
0x404b1baf,
|
402
|
+
0x404b9bc6,
|
403
|
+
0x404c1bdc,
|
404
|
+
0x404c9bee,
|
405
|
+
0x404d1c0f,
|
406
|
+
0x404d9c31,
|
407
|
+
0x404e1c45,
|
408
|
+
0x404e9c52,
|
409
|
+
0x404f1c69,
|
410
|
+
0x404f9c79,
|
411
|
+
0x40501c89,
|
412
|
+
0x40509c9d,
|
413
|
+
0x40511cb8,
|
414
|
+
0x40519cc8,
|
415
|
+
0x40521cdf,
|
416
|
+
0x40529cf1,
|
417
|
+
0x40531d09,
|
418
|
+
0x40539d1c,
|
419
|
+
0x40541d31,
|
420
|
+
0x40549d54,
|
421
|
+
0x40551d62,
|
422
|
+
0x40559d7f,
|
423
|
+
0x40561d8c,
|
424
|
+
0x40569da5,
|
425
|
+
0x40571dbd,
|
426
|
+
0x40579dd0,
|
427
|
+
0x40581de5,
|
428
|
+
0x40589df7,
|
429
|
+
0x40591e07,
|
430
|
+
0x40599e20,
|
431
|
+
0x405a1e34,
|
432
|
+
0x405a9e44,
|
433
|
+
0x405b1e5c,
|
434
|
+
0x405b9e6d,
|
435
|
+
0x405c1e80,
|
436
|
+
0x405c9e91,
|
437
|
+
0x405d1e9e,
|
438
|
+
0x405d9eb5,
|
439
|
+
0x405e1ed5,
|
440
|
+
0x405e8a17,
|
441
|
+
0x405f1ef6,
|
442
|
+
0x405f9f03,
|
443
|
+
0x40601f11,
|
444
|
+
0x40609f33,
|
445
|
+
0x40611f5b,
|
446
|
+
0x40619f70,
|
447
|
+
0x40621f87,
|
448
|
+
0x40629f98,
|
449
|
+
0x40631fa9,
|
450
|
+
0x40639fbe,
|
451
|
+
0x40641fd5,
|
452
|
+
0x40649fe6,
|
453
|
+
0x40652001,
|
454
|
+
0x4065a018,
|
455
|
+
0x40662030,
|
456
|
+
0x4066a05a,
|
457
|
+
0x40672085,
|
458
|
+
0x4067a0a6,
|
459
|
+
0x406820b9,
|
460
|
+
0x4068a0da,
|
461
|
+
0x406920f5,
|
462
|
+
0x4069a123,
|
463
|
+
0x406a2144,
|
464
|
+
0x406aa164,
|
465
|
+
0x406b22ec,
|
466
|
+
0x406ba30f,
|
467
|
+
0x406c2325,
|
468
|
+
0x406ca551,
|
469
|
+
0x406d2580,
|
470
|
+
0x406da5a8,
|
471
|
+
0x406e25c1,
|
472
|
+
0x406ea5d9,
|
473
|
+
0x406f25f8,
|
474
|
+
0x406fa60d,
|
475
|
+
0x40702620,
|
476
|
+
0x4070a63d,
|
477
|
+
0x40710782,
|
478
|
+
0x4071a64f,
|
479
|
+
0x40722662,
|
480
|
+
0x4072a67b,
|
481
|
+
0x40732693,
|
482
|
+
0x407390bd,
|
483
|
+
0x407426a7,
|
484
|
+
0x4074a6c1,
|
485
|
+
0x407526d2,
|
486
|
+
0x4075a6e6,
|
487
|
+
0x407626f4,
|
488
|
+
0x40769286,
|
489
|
+
0x40772719,
|
490
|
+
0x4077a73b,
|
491
|
+
0x40782756,
|
492
|
+
0x4078a76b,
|
493
|
+
0x40792782,
|
494
|
+
0x4079a798,
|
495
|
+
0x407a27a4,
|
496
|
+
0x407aa7b7,
|
497
|
+
0x407b27cc,
|
498
|
+
0x407ba7de,
|
499
|
+
0x407c27f3,
|
500
|
+
0x407ca7fc,
|
501
|
+
0x41f42217,
|
502
|
+
0x41f922a9,
|
503
|
+
0x41fe219c,
|
504
|
+
0x41fea378,
|
505
|
+
0x41ff2469,
|
506
|
+
0x42032230,
|
507
|
+
0x42082252,
|
508
|
+
0x4208a28e,
|
509
|
+
0x42092180,
|
510
|
+
0x4209a2c8,
|
511
|
+
0x420a21d7,
|
512
|
+
0x420aa1b7,
|
513
|
+
0x420b21f7,
|
514
|
+
0x420ba270,
|
515
|
+
0x420c2485,
|
516
|
+
0x420ca345,
|
517
|
+
0x420d235f,
|
518
|
+
0x420da396,
|
519
|
+
0x421223b0,
|
520
|
+
0x4217244c,
|
521
|
+
0x4217a3f2,
|
522
|
+
0x421c2414,
|
523
|
+
0x421f23cf,
|
524
|
+
0x4221249c,
|
525
|
+
0x4226242f,
|
526
|
+
0x422b2535,
|
527
|
+
0x422ba4fe,
|
528
|
+
0x422c251d,
|
529
|
+
0x422ca4d8,
|
530
|
+
0x422d24b7,
|
531
|
+
0x443206ad,
|
532
|
+
0x443286bc,
|
533
|
+
0x443306c8,
|
534
|
+
0x443386d6,
|
535
|
+
0x443406e9,
|
536
|
+
0x443486fa,
|
537
|
+
0x44350701,
|
538
|
+
0x4435870b,
|
539
|
+
0x4436071e,
|
540
|
+
0x44368734,
|
541
|
+
0x44370746,
|
542
|
+
0x44378753,
|
543
|
+
0x44380762,
|
544
|
+
0x4438876a,
|
545
|
+
0x44390782,
|
546
|
+
0x44398790,
|
547
|
+
0x443a07a3,
|
548
|
+
0x4c3212b0,
|
549
|
+
0x4c3292c0,
|
550
|
+
0x4c3312d3,
|
551
|
+
0x4c3392f3,
|
552
|
+
0x4c340094,
|
553
|
+
0x4c3480b0,
|
554
|
+
0x4c3512ff,
|
555
|
+
0x4c35930d,
|
556
|
+
0x4c361329,
|
557
|
+
0x4c36933c,
|
558
|
+
0x4c37134b,
|
559
|
+
0x4c379359,
|
560
|
+
0x4c38136e,
|
561
|
+
0x4c38937a,
|
562
|
+
0x4c39139a,
|
563
|
+
0x4c3993c4,
|
564
|
+
0x4c3a13dd,
|
565
|
+
0x4c3a93f6,
|
566
|
+
0x4c3b05d0,
|
567
|
+
0x4c3b940f,
|
568
|
+
0x4c3c1421,
|
569
|
+
0x4c3c9430,
|
570
|
+
0x4c3d10bd,
|
571
|
+
0x4c3d9449,
|
572
|
+
0x4c3e1456,
|
573
|
+
0x50322a92,
|
574
|
+
0x5032aaa1,
|
575
|
+
0x50332aac,
|
576
|
+
0x5033aabc,
|
577
|
+
0x50342ad5,
|
578
|
+
0x5034aaef,
|
579
|
+
0x50352afd,
|
580
|
+
0x5035ab13,
|
581
|
+
0x50362b25,
|
582
|
+
0x5036ab3b,
|
583
|
+
0x50372b54,
|
584
|
+
0x5037ab67,
|
585
|
+
0x50382b7f,
|
586
|
+
0x5038ab90,
|
587
|
+
0x50392ba5,
|
588
|
+
0x5039abb9,
|
589
|
+
0x503a2bd9,
|
590
|
+
0x503aabef,
|
591
|
+
0x503b2c07,
|
592
|
+
0x503bac19,
|
593
|
+
0x503c2c35,
|
594
|
+
0x503cac4c,
|
595
|
+
0x503d2c65,
|
596
|
+
0x503dac7b,
|
597
|
+
0x503e2c88,
|
598
|
+
0x503eac9e,
|
599
|
+
0x503f2cb0,
|
600
|
+
0x503f8348,
|
601
|
+
0x50402cc3,
|
602
|
+
0x5040acd3,
|
603
|
+
0x50412ced,
|
604
|
+
0x5041acfc,
|
605
|
+
0x50422d16,
|
606
|
+
0x5042ad33,
|
607
|
+
0x50432d43,
|
608
|
+
0x5043ad53,
|
609
|
+
0x50442d62,
|
610
|
+
0x50448414,
|
611
|
+
0x50452d76,
|
612
|
+
0x5045ad94,
|
613
|
+
0x50462da7,
|
614
|
+
0x5046adbd,
|
615
|
+
0x50472dcf,
|
616
|
+
0x5047ade4,
|
617
|
+
0x50482e0a,
|
618
|
+
0x5048ae18,
|
619
|
+
0x50492e2b,
|
620
|
+
0x5049ae40,
|
621
|
+
0x504a2e56,
|
622
|
+
0x504aae66,
|
623
|
+
0x504b2e86,
|
624
|
+
0x504bae99,
|
625
|
+
0x504c2ebc,
|
626
|
+
0x504caeea,
|
627
|
+
0x504d2efc,
|
628
|
+
0x504daf19,
|
629
|
+
0x504e2f34,
|
630
|
+
0x504eaf50,
|
631
|
+
0x504f2f62,
|
632
|
+
0x504faf79,
|
633
|
+
0x50502f88,
|
634
|
+
0x50508687,
|
635
|
+
0x50512f9b,
|
636
|
+
0x58320e1f,
|
637
|
+
0x68320de1,
|
638
|
+
0x68328b9b,
|
639
|
+
0x68330bae,
|
640
|
+
0x68338def,
|
641
|
+
0x68340dff,
|
642
|
+
0x683480b0,
|
643
|
+
0x6c320dbd,
|
644
|
+
0x6c328b7e,
|
645
|
+
0x6c330dc8,
|
646
|
+
0x7432098d,
|
647
|
+
0x783208f2,
|
648
|
+
0x78328907,
|
649
|
+
0x78330913,
|
650
|
+
0x78338083,
|
651
|
+
0x78340922,
|
652
|
+
0x78348937,
|
653
|
+
0x78350956,
|
654
|
+
0x78358978,
|
655
|
+
0x7836098d,
|
656
|
+
0x783689a3,
|
657
|
+
0x783709b3,
|
658
|
+
0x783789c6,
|
659
|
+
0x783809d9,
|
660
|
+
0x783889eb,
|
661
|
+
0x783909f8,
|
662
|
+
0x78398a17,
|
663
|
+
0x783a0a2c,
|
664
|
+
0x783a8a3a,
|
665
|
+
0x783b0a44,
|
666
|
+
0x783b8a58,
|
667
|
+
0x783c0a6f,
|
668
|
+
0x783c8a84,
|
669
|
+
0x783d0a9b,
|
670
|
+
0x783d8ab0,
|
671
|
+
0x783e0a06,
|
672
|
+
0x7c3211b2,
|
673
|
+
};
|
674
|
+
|
675
|
+
const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
|
676
|
+
|
677
|
+
const char kOpenSSLReasonStringData[] =
|
678
|
+
"ASN1_LENGTH_MISMATCH\0"
|
679
|
+
"AUX_ERROR\0"
|
680
|
+
"BAD_GET_ASN1_OBJECT_CALL\0"
|
681
|
+
"BAD_OBJECT_HEADER\0"
|
682
|
+
"BMPSTRING_IS_WRONG_LENGTH\0"
|
683
|
+
"BN_LIB\0"
|
684
|
+
"BOOLEAN_IS_WRONG_LENGTH\0"
|
685
|
+
"BUFFER_TOO_SMALL\0"
|
686
|
+
"DECODE_ERROR\0"
|
687
|
+
"DEPTH_EXCEEDED\0"
|
688
|
+
"ENCODE_ERROR\0"
|
689
|
+
"ERROR_GETTING_TIME\0"
|
690
|
+
"EXPECTING_AN_ASN1_SEQUENCE\0"
|
691
|
+
"EXPECTING_AN_INTEGER\0"
|
692
|
+
"EXPECTING_AN_OBJECT\0"
|
693
|
+
"EXPECTING_A_BOOLEAN\0"
|
694
|
+
"EXPECTING_A_TIME\0"
|
695
|
+
"EXPLICIT_LENGTH_MISMATCH\0"
|
696
|
+
"EXPLICIT_TAG_NOT_CONSTRUCTED\0"
|
697
|
+
"FIELD_MISSING\0"
|
698
|
+
"FIRST_NUM_TOO_LARGE\0"
|
699
|
+
"HEADER_TOO_LONG\0"
|
700
|
+
"ILLEGAL_BITSTRING_FORMAT\0"
|
701
|
+
"ILLEGAL_BOOLEAN\0"
|
702
|
+
"ILLEGAL_CHARACTERS\0"
|
703
|
+
"ILLEGAL_FORMAT\0"
|
704
|
+
"ILLEGAL_HEX\0"
|
705
|
+
"ILLEGAL_IMPLICIT_TAG\0"
|
706
|
+
"ILLEGAL_INTEGER\0"
|
707
|
+
"ILLEGAL_NESTED_TAGGING\0"
|
708
|
+
"ILLEGAL_NULL\0"
|
709
|
+
"ILLEGAL_NULL_VALUE\0"
|
710
|
+
"ILLEGAL_OBJECT\0"
|
711
|
+
"ILLEGAL_OPTIONAL_ANY\0"
|
712
|
+
"ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE\0"
|
713
|
+
"ILLEGAL_TAGGED_ANY\0"
|
714
|
+
"ILLEGAL_TIME_VALUE\0"
|
715
|
+
"INTEGER_NOT_ASCII_FORMAT\0"
|
716
|
+
"INTEGER_TOO_LARGE_FOR_LONG\0"
|
717
|
+
"INVALID_BIT_STRING_BITS_LEFT\0"
|
718
|
+
"INVALID_BMPSTRING_LENGTH\0"
|
719
|
+
"INVALID_DIGIT\0"
|
720
|
+
"INVALID_MODIFIER\0"
|
721
|
+
"INVALID_NUMBER\0"
|
722
|
+
"INVALID_OBJECT_ENCODING\0"
|
723
|
+
"INVALID_SEPARATOR\0"
|
724
|
+
"INVALID_TIME_FORMAT\0"
|
725
|
+
"INVALID_UNIVERSALSTRING_LENGTH\0"
|
726
|
+
"INVALID_UTF8STRING\0"
|
727
|
+
"LIST_ERROR\0"
|
728
|
+
"MALLOC_FAILURE\0"
|
729
|
+
"MISSING_ASN1_EOS\0"
|
730
|
+
"MISSING_EOC\0"
|
731
|
+
"MISSING_SECOND_NUMBER\0"
|
732
|
+
"MISSING_VALUE\0"
|
733
|
+
"MSTRING_NOT_UNIVERSAL\0"
|
734
|
+
"MSTRING_WRONG_TAG\0"
|
735
|
+
"NESTED_ASN1_ERROR\0"
|
736
|
+
"NESTED_ASN1_STRING\0"
|
737
|
+
"NON_HEX_CHARACTERS\0"
|
738
|
+
"NOT_ASCII_FORMAT\0"
|
739
|
+
"NOT_ENOUGH_DATA\0"
|
740
|
+
"NO_MATCHING_CHOICE_TYPE\0"
|
741
|
+
"NULL_IS_WRONG_LENGTH\0"
|
742
|
+
"OBJECT_NOT_ASCII_FORMAT\0"
|
743
|
+
"ODD_NUMBER_OF_CHARS\0"
|
744
|
+
"SECOND_NUMBER_TOO_LARGE\0"
|
745
|
+
"SEQUENCE_LENGTH_MISMATCH\0"
|
746
|
+
"SEQUENCE_NOT_CONSTRUCTED\0"
|
747
|
+
"SEQUENCE_OR_SET_NEEDS_CONFIG\0"
|
748
|
+
"SHORT_LINE\0"
|
749
|
+
"STREAMING_NOT_SUPPORTED\0"
|
750
|
+
"STRING_TOO_LONG\0"
|
751
|
+
"STRING_TOO_SHORT\0"
|
752
|
+
"TAG_VALUE_TOO_HIGH\0"
|
753
|
+
"TIME_NOT_ASCII_FORMAT\0"
|
754
|
+
"TOO_LONG\0"
|
755
|
+
"TYPE_NOT_CONSTRUCTED\0"
|
756
|
+
"TYPE_NOT_PRIMITIVE\0"
|
757
|
+
"UNEXPECTED_EOC\0"
|
758
|
+
"UNIVERSALSTRING_IS_WRONG_LENGTH\0"
|
759
|
+
"UNKNOWN_FORMAT\0"
|
760
|
+
"UNKNOWN_TAG\0"
|
761
|
+
"UNSUPPORTED_ANY_DEFINED_BY_TYPE\0"
|
762
|
+
"UNSUPPORTED_PUBLIC_KEY_TYPE\0"
|
763
|
+
"UNSUPPORTED_TYPE\0"
|
764
|
+
"WRONG_TAG\0"
|
765
|
+
"WRONG_TYPE\0"
|
766
|
+
"BAD_FOPEN_MODE\0"
|
767
|
+
"BROKEN_PIPE\0"
|
768
|
+
"CONNECT_ERROR\0"
|
769
|
+
"ERROR_SETTING_NBIO\0"
|
770
|
+
"INVALID_ARGUMENT\0"
|
771
|
+
"IN_USE\0"
|
772
|
+
"KEEPALIVE\0"
|
773
|
+
"NBIO_CONNECT_ERROR\0"
|
774
|
+
"NO_HOSTNAME_SPECIFIED\0"
|
775
|
+
"NO_PORT_SPECIFIED\0"
|
776
|
+
"NO_SUCH_FILE\0"
|
777
|
+
"NULL_PARAMETER\0"
|
778
|
+
"SYS_LIB\0"
|
779
|
+
"UNABLE_TO_CREATE_SOCKET\0"
|
780
|
+
"UNINITIALIZED\0"
|
781
|
+
"UNSUPPORTED_METHOD\0"
|
782
|
+
"WRITE_TO_READ_ONLY_BIO\0"
|
783
|
+
"ARG2_LT_ARG3\0"
|
784
|
+
"BAD_ENCODING\0"
|
785
|
+
"BAD_RECIPROCAL\0"
|
786
|
+
"BIGNUM_TOO_LONG\0"
|
787
|
+
"BITS_TOO_SMALL\0"
|
788
|
+
"CALLED_WITH_EVEN_MODULUS\0"
|
789
|
+
"DIV_BY_ZERO\0"
|
790
|
+
"EXPAND_ON_STATIC_BIGNUM_DATA\0"
|
791
|
+
"INPUT_NOT_REDUCED\0"
|
792
|
+
"INVALID_RANGE\0"
|
793
|
+
"NEGATIVE_NUMBER\0"
|
794
|
+
"NOT_A_SQUARE\0"
|
795
|
+
"NOT_INITIALIZED\0"
|
796
|
+
"NO_INVERSE\0"
|
797
|
+
"PRIVATE_KEY_TOO_LARGE\0"
|
798
|
+
"P_IS_NOT_PRIME\0"
|
799
|
+
"TOO_MANY_ITERATIONS\0"
|
800
|
+
"TOO_MANY_TEMPORARY_VARIABLES\0"
|
801
|
+
"AES_KEY_SETUP_FAILED\0"
|
802
|
+
"BAD_DECRYPT\0"
|
803
|
+
"BAD_KEY_LENGTH\0"
|
804
|
+
"CTRL_NOT_IMPLEMENTED\0"
|
805
|
+
"CTRL_OPERATION_NOT_IMPLEMENTED\0"
|
806
|
+
"DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH\0"
|
807
|
+
"INITIALIZATION_ERROR\0"
|
808
|
+
"INPUT_NOT_INITIALIZED\0"
|
809
|
+
"INVALID_AD_SIZE\0"
|
810
|
+
"INVALID_KEY_LENGTH\0"
|
811
|
+
"INVALID_NONCE_SIZE\0"
|
812
|
+
"INVALID_OPERATION\0"
|
813
|
+
"IV_TOO_LARGE\0"
|
814
|
+
"NO_CIPHER_SET\0"
|
815
|
+
"NO_DIRECTION_SET\0"
|
816
|
+
"OUTPUT_ALIASES_INPUT\0"
|
817
|
+
"TAG_TOO_LARGE\0"
|
818
|
+
"TOO_LARGE\0"
|
819
|
+
"UNSUPPORTED_AD_SIZE\0"
|
820
|
+
"UNSUPPORTED_INPUT_SIZE\0"
|
821
|
+
"UNSUPPORTED_KEY_SIZE\0"
|
822
|
+
"UNSUPPORTED_NONCE_SIZE\0"
|
823
|
+
"UNSUPPORTED_TAG_SIZE\0"
|
824
|
+
"WRONG_FINAL_BLOCK_LENGTH\0"
|
825
|
+
"LIST_CANNOT_BE_NULL\0"
|
826
|
+
"MISSING_CLOSE_SQUARE_BRACKET\0"
|
827
|
+
"MISSING_EQUAL_SIGN\0"
|
828
|
+
"NO_CLOSE_BRACE\0"
|
829
|
+
"UNABLE_TO_CREATE_NEW_SECTION\0"
|
830
|
+
"VARIABLE_HAS_NO_VALUE\0"
|
831
|
+
"BAD_GENERATOR\0"
|
832
|
+
"INVALID_PUBKEY\0"
|
833
|
+
"MODULUS_TOO_LARGE\0"
|
834
|
+
"NO_PRIVATE_VALUE\0"
|
835
|
+
"BAD_Q_VALUE\0"
|
836
|
+
"MISSING_PARAMETERS\0"
|
837
|
+
"NEED_NEW_SETUP_VALUES\0"
|
838
|
+
"BIGNUM_OUT_OF_RANGE\0"
|
839
|
+
"COORDINATES_OUT_OF_RANGE\0"
|
840
|
+
"D2I_ECPKPARAMETERS_FAILURE\0"
|
841
|
+
"EC_GROUP_NEW_BY_NAME_FAILURE\0"
|
842
|
+
"GROUP2PKPARAMETERS_FAILURE\0"
|
843
|
+
"I2D_ECPKPARAMETERS_FAILURE\0"
|
844
|
+
"INCOMPATIBLE_OBJECTS\0"
|
845
|
+
"INVALID_COMPRESSED_POINT\0"
|
846
|
+
"INVALID_COMPRESSION_BIT\0"
|
847
|
+
"INVALID_ENCODING\0"
|
848
|
+
"INVALID_FIELD\0"
|
849
|
+
"INVALID_FORM\0"
|
850
|
+
"INVALID_GROUP_ORDER\0"
|
851
|
+
"INVALID_PRIVATE_KEY\0"
|
852
|
+
"MISSING_PRIVATE_KEY\0"
|
853
|
+
"NON_NAMED_CURVE\0"
|
854
|
+
"PKPARAMETERS2GROUP_FAILURE\0"
|
855
|
+
"POINT_AT_INFINITY\0"
|
856
|
+
"POINT_IS_NOT_ON_CURVE\0"
|
857
|
+
"SLOT_FULL\0"
|
858
|
+
"UNDEFINED_GENERATOR\0"
|
859
|
+
"UNKNOWN_GROUP\0"
|
860
|
+
"UNKNOWN_ORDER\0"
|
861
|
+
"WRONG_CURVE_PARAMETERS\0"
|
862
|
+
"WRONG_ORDER\0"
|
863
|
+
"KDF_FAILED\0"
|
864
|
+
"POINT_ARITHMETIC_FAILURE\0"
|
865
|
+
"BAD_SIGNATURE\0"
|
866
|
+
"NOT_IMPLEMENTED\0"
|
867
|
+
"RANDOM_NUMBER_GENERATION_FAILED\0"
|
868
|
+
"OPERATION_NOT_SUPPORTED\0"
|
869
|
+
"BN_DECODE_ERROR\0"
|
870
|
+
"COMMAND_NOT_SUPPORTED\0"
|
871
|
+
"CONTEXT_NOT_INITIALISED\0"
|
872
|
+
"DIFFERENT_KEY_TYPES\0"
|
873
|
+
"DIFFERENT_PARAMETERS\0"
|
874
|
+
"DIGEST_AND_KEY_TYPE_NOT_SUPPORTED\0"
|
875
|
+
"EXPECTING_AN_EC_KEY_KEY\0"
|
876
|
+
"EXPECTING_AN_RSA_KEY\0"
|
877
|
+
"EXPECTING_A_DH_KEY\0"
|
878
|
+
"EXPECTING_A_DSA_KEY\0"
|
879
|
+
"ILLEGAL_OR_UNSUPPORTED_PADDING_MODE\0"
|
880
|
+
"INVALID_CURVE\0"
|
881
|
+
"INVALID_DIGEST_LENGTH\0"
|
882
|
+
"INVALID_DIGEST_TYPE\0"
|
883
|
+
"INVALID_KEYBITS\0"
|
884
|
+
"INVALID_MGF1_MD\0"
|
885
|
+
"INVALID_PADDING_MODE\0"
|
886
|
+
"INVALID_PSS_PARAMETERS\0"
|
887
|
+
"INVALID_PSS_SALTLEN\0"
|
888
|
+
"INVALID_SALT_LENGTH\0"
|
889
|
+
"INVALID_TRAILER\0"
|
890
|
+
"KEYS_NOT_SET\0"
|
891
|
+
"NO_DEFAULT_DIGEST\0"
|
892
|
+
"NO_KEY_SET\0"
|
893
|
+
"NO_MDC2_SUPPORT\0"
|
894
|
+
"NO_NID_FOR_CURVE\0"
|
895
|
+
"NO_OPERATION_SET\0"
|
896
|
+
"NO_PARAMETERS_SET\0"
|
897
|
+
"OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE\0"
|
898
|
+
"OPERATON_NOT_INITIALIZED\0"
|
899
|
+
"PARAMETER_ENCODING_ERROR\0"
|
900
|
+
"UNKNOWN_DIGEST\0"
|
901
|
+
"UNKNOWN_MASK_DIGEST\0"
|
902
|
+
"UNKNOWN_MESSAGE_DIGEST_ALGORITHM\0"
|
903
|
+
"UNKNOWN_PUBLIC_KEY_TYPE\0"
|
904
|
+
"UNKNOWN_SIGNATURE_ALGORITHM\0"
|
905
|
+
"UNSUPPORTED_ALGORITHM\0"
|
906
|
+
"UNSUPPORTED_MASK_ALGORITHM\0"
|
907
|
+
"UNSUPPORTED_MASK_PARAMETER\0"
|
908
|
+
"UNSUPPORTED_SIGNATURE_TYPE\0"
|
909
|
+
"WRONG_PUBLIC_KEY_TYPE\0"
|
910
|
+
"OUTPUT_TOO_LARGE\0"
|
911
|
+
"UNKNOWN_NID\0"
|
912
|
+
"BAD_BASE64_DECODE\0"
|
913
|
+
"BAD_END_LINE\0"
|
914
|
+
"BAD_IV_CHARS\0"
|
915
|
+
"BAD_PASSWORD_READ\0"
|
916
|
+
"CIPHER_IS_NULL\0"
|
917
|
+
"ERROR_CONVERTING_PRIVATE_KEY\0"
|
918
|
+
"NOT_DEK_INFO\0"
|
919
|
+
"NOT_ENCRYPTED\0"
|
920
|
+
"NOT_PROC_TYPE\0"
|
921
|
+
"NO_START_LINE\0"
|
922
|
+
"READ_KEY\0"
|
923
|
+
"SHORT_HEADER\0"
|
924
|
+
"UNSUPPORTED_CIPHER\0"
|
925
|
+
"UNSUPPORTED_ENCRYPTION\0"
|
926
|
+
"BAD_PKCS12_DATA\0"
|
927
|
+
"BAD_PKCS12_VERSION\0"
|
928
|
+
"CIPHER_HAS_NO_OBJECT_IDENTIFIER\0"
|
929
|
+
"CRYPT_ERROR\0"
|
930
|
+
"ENCRYPT_ERROR\0"
|
931
|
+
"ERROR_SETTING_CIPHER_PARAMS\0"
|
932
|
+
"INCORRECT_PASSWORD\0"
|
933
|
+
"KEYGEN_FAILURE\0"
|
934
|
+
"KEY_GEN_ERROR\0"
|
935
|
+
"METHOD_NOT_SUPPORTED\0"
|
936
|
+
"MISSING_MAC\0"
|
937
|
+
"MULTIPLE_PRIVATE_KEYS_IN_PKCS12\0"
|
938
|
+
"PKCS12_PUBLIC_KEY_INTEGRITY_NOT_SUPPORTED\0"
|
939
|
+
"PKCS12_TOO_DEEPLY_NESTED\0"
|
940
|
+
"PRIVATE_KEY_DECODE_ERROR\0"
|
941
|
+
"PRIVATE_KEY_ENCODE_ERROR\0"
|
942
|
+
"UNKNOWN_ALGORITHM\0"
|
943
|
+
"UNKNOWN_CIPHER\0"
|
944
|
+
"UNKNOWN_CIPHER_ALGORITHM\0"
|
945
|
+
"UNKNOWN_HASH\0"
|
946
|
+
"UNSUPPORTED_PRIVATE_KEY_ALGORITHM\0"
|
947
|
+
"BAD_E_VALUE\0"
|
948
|
+
"BAD_FIXED_HEADER_DECRYPT\0"
|
949
|
+
"BAD_PAD_BYTE_COUNT\0"
|
950
|
+
"BAD_RSA_PARAMETERS\0"
|
951
|
+
"BAD_VERSION\0"
|
952
|
+
"BLOCK_TYPE_IS_NOT_01\0"
|
953
|
+
"BN_NOT_INITIALIZED\0"
|
954
|
+
"CANNOT_RECOVER_MULTI_PRIME_KEY\0"
|
955
|
+
"CRT_PARAMS_ALREADY_GIVEN\0"
|
956
|
+
"CRT_VALUES_INCORRECT\0"
|
957
|
+
"DATA_LEN_NOT_EQUAL_TO_MOD_LEN\0"
|
958
|
+
"DATA_TOO_LARGE\0"
|
959
|
+
"DATA_TOO_LARGE_FOR_KEY_SIZE\0"
|
960
|
+
"DATA_TOO_LARGE_FOR_MODULUS\0"
|
961
|
+
"DATA_TOO_SMALL\0"
|
962
|
+
"DATA_TOO_SMALL_FOR_KEY_SIZE\0"
|
963
|
+
"DIGEST_TOO_BIG_FOR_RSA_KEY\0"
|
964
|
+
"D_E_NOT_CONGRUENT_TO_1\0"
|
965
|
+
"EMPTY_PUBLIC_KEY\0"
|
966
|
+
"FIRST_OCTET_INVALID\0"
|
967
|
+
"INCONSISTENT_SET_OF_CRT_VALUES\0"
|
968
|
+
"INTERNAL_ERROR\0"
|
969
|
+
"INVALID_MESSAGE_LENGTH\0"
|
970
|
+
"KEY_SIZE_TOO_SMALL\0"
|
971
|
+
"LAST_OCTET_INVALID\0"
|
972
|
+
"MUST_HAVE_AT_LEAST_TWO_PRIMES\0"
|
973
|
+
"NO_PUBLIC_EXPONENT\0"
|
974
|
+
"NULL_BEFORE_BLOCK_MISSING\0"
|
975
|
+
"N_NOT_EQUAL_P_Q\0"
|
976
|
+
"OAEP_DECODING_ERROR\0"
|
977
|
+
"ONLY_ONE_OF_P_Q_GIVEN\0"
|
978
|
+
"OUTPUT_BUFFER_TOO_SMALL\0"
|
979
|
+
"PADDING_CHECK_FAILED\0"
|
980
|
+
"PKCS_DECODING_ERROR\0"
|
981
|
+
"SLEN_CHECK_FAILED\0"
|
982
|
+
"SLEN_RECOVERY_FAILED\0"
|
983
|
+
"UNKNOWN_ALGORITHM_TYPE\0"
|
984
|
+
"UNKNOWN_PADDING_TYPE\0"
|
985
|
+
"VALUE_MISSING\0"
|
986
|
+
"WRONG_SIGNATURE_LENGTH\0"
|
987
|
+
"APP_DATA_IN_HANDSHAKE\0"
|
988
|
+
"ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT\0"
|
989
|
+
"BAD_ALERT\0"
|
990
|
+
"BAD_CHANGE_CIPHER_SPEC\0"
|
991
|
+
"BAD_DATA_RETURNED_BY_CALLBACK\0"
|
992
|
+
"BAD_DH_P_LENGTH\0"
|
993
|
+
"BAD_DIGEST_LENGTH\0"
|
994
|
+
"BAD_ECC_CERT\0"
|
995
|
+
"BAD_ECPOINT\0"
|
996
|
+
"BAD_HANDSHAKE_RECORD\0"
|
997
|
+
"BAD_HELLO_REQUEST\0"
|
998
|
+
"BAD_LENGTH\0"
|
999
|
+
"BAD_PACKET_LENGTH\0"
|
1000
|
+
"BAD_RSA_ENCRYPT\0"
|
1001
|
+
"BAD_SRTP_MKI_VALUE\0"
|
1002
|
+
"BAD_SRTP_PROTECTION_PROFILE_LIST\0"
|
1003
|
+
"BAD_SSL_FILETYPE\0"
|
1004
|
+
"BAD_WRITE_RETRY\0"
|
1005
|
+
"BIO_NOT_SET\0"
|
1006
|
+
"CA_DN_LENGTH_MISMATCH\0"
|
1007
|
+
"CA_DN_TOO_LONG\0"
|
1008
|
+
"CCS_RECEIVED_EARLY\0"
|
1009
|
+
"CERTIFICATE_VERIFY_FAILED\0"
|
1010
|
+
"CERT_CB_ERROR\0"
|
1011
|
+
"CERT_LENGTH_MISMATCH\0"
|
1012
|
+
"CHANNEL_ID_NOT_P256\0"
|
1013
|
+
"CHANNEL_ID_SIGNATURE_INVALID\0"
|
1014
|
+
"CIPHER_OR_HASH_UNAVAILABLE\0"
|
1015
|
+
"CLIENTHELLO_PARSE_FAILED\0"
|
1016
|
+
"CLIENTHELLO_TLSEXT\0"
|
1017
|
+
"CONNECTION_REJECTED\0"
|
1018
|
+
"CONNECTION_TYPE_NOT_SET\0"
|
1019
|
+
"CUSTOM_EXTENSION_ERROR\0"
|
1020
|
+
"DATA_LENGTH_TOO_LONG\0"
|
1021
|
+
"DECRYPTION_FAILED\0"
|
1022
|
+
"DECRYPTION_FAILED_OR_BAD_RECORD_MAC\0"
|
1023
|
+
"DH_PUBLIC_VALUE_LENGTH_IS_WRONG\0"
|
1024
|
+
"DH_P_TOO_LONG\0"
|
1025
|
+
"DIGEST_CHECK_FAILED\0"
|
1026
|
+
"DTLS_MESSAGE_TOO_BIG\0"
|
1027
|
+
"ECC_CERT_NOT_FOR_SIGNING\0"
|
1028
|
+
"EMS_STATE_INCONSISTENT\0"
|
1029
|
+
"ENCRYPTED_LENGTH_TOO_LONG\0"
|
1030
|
+
"ERROR_ADDING_EXTENSION\0"
|
1031
|
+
"ERROR_IN_RECEIVED_CIPHER_LIST\0"
|
1032
|
+
"ERROR_PARSING_EXTENSION\0"
|
1033
|
+
"EXCESSIVE_MESSAGE_SIZE\0"
|
1034
|
+
"EXTRA_DATA_IN_MESSAGE\0"
|
1035
|
+
"FRAGMENT_MISMATCH\0"
|
1036
|
+
"GOT_NEXT_PROTO_WITHOUT_EXTENSION\0"
|
1037
|
+
"HANDSHAKE_FAILURE_ON_CLIENT_HELLO\0"
|
1038
|
+
"HTTPS_PROXY_REQUEST\0"
|
1039
|
+
"HTTP_REQUEST\0"
|
1040
|
+
"INAPPROPRIATE_FALLBACK\0"
|
1041
|
+
"INVALID_COMMAND\0"
|
1042
|
+
"INVALID_MESSAGE\0"
|
1043
|
+
"INVALID_SSL_SESSION\0"
|
1044
|
+
"INVALID_TICKET_KEYS_LENGTH\0"
|
1045
|
+
"LENGTH_MISMATCH\0"
|
1046
|
+
"LIBRARY_HAS_NO_CIPHERS\0"
|
1047
|
+
"MISSING_EXTENSION\0"
|
1048
|
+
"MISSING_RSA_CERTIFICATE\0"
|
1049
|
+
"MISSING_TMP_DH_KEY\0"
|
1050
|
+
"MISSING_TMP_ECDH_KEY\0"
|
1051
|
+
"MIXED_SPECIAL_OPERATOR_WITH_GROUPS\0"
|
1052
|
+
"MTU_TOO_SMALL\0"
|
1053
|
+
"NEGOTIATED_BOTH_NPN_AND_ALPN\0"
|
1054
|
+
"NESTED_GROUP\0"
|
1055
|
+
"NO_CERTIFICATES_RETURNED\0"
|
1056
|
+
"NO_CERTIFICATE_ASSIGNED\0"
|
1057
|
+
"NO_CERTIFICATE_SET\0"
|
1058
|
+
"NO_CIPHERS_AVAILABLE\0"
|
1059
|
+
"NO_CIPHERS_PASSED\0"
|
1060
|
+
"NO_CIPHER_MATCH\0"
|
1061
|
+
"NO_COMPRESSION_SPECIFIED\0"
|
1062
|
+
"NO_METHOD_SPECIFIED\0"
|
1063
|
+
"NO_P256_SUPPORT\0"
|
1064
|
+
"NO_PRIVATE_KEY_ASSIGNED\0"
|
1065
|
+
"NO_RENEGOTIATION\0"
|
1066
|
+
"NO_REQUIRED_DIGEST\0"
|
1067
|
+
"NO_SHARED_CIPHER\0"
|
1068
|
+
"NULL_SSL_CTX\0"
|
1069
|
+
"NULL_SSL_METHOD_PASSED\0"
|
1070
|
+
"OLD_SESSION_CIPHER_NOT_RETURNED\0"
|
1071
|
+
"OLD_SESSION_VERSION_NOT_RETURNED\0"
|
1072
|
+
"PARSE_TLSEXT\0"
|
1073
|
+
"PATH_TOO_LONG\0"
|
1074
|
+
"PEER_DID_NOT_RETURN_A_CERTIFICATE\0"
|
1075
|
+
"PEER_ERROR_UNSUPPORTED_CERTIFICATE_TYPE\0"
|
1076
|
+
"PROTOCOL_IS_SHUTDOWN\0"
|
1077
|
+
"PSK_IDENTITY_NOT_FOUND\0"
|
1078
|
+
"PSK_NO_CLIENT_CB\0"
|
1079
|
+
"PSK_NO_SERVER_CB\0"
|
1080
|
+
"READ_TIMEOUT_EXPIRED\0"
|
1081
|
+
"RECORD_LENGTH_MISMATCH\0"
|
1082
|
+
"RECORD_TOO_LARGE\0"
|
1083
|
+
"RENEGOTIATION_ENCODING_ERR\0"
|
1084
|
+
"RENEGOTIATION_MISMATCH\0"
|
1085
|
+
"REQUIRED_CIPHER_MISSING\0"
|
1086
|
+
"RESUMED_EMS_SESSION_WITHOUT_EMS_EXTENSION\0"
|
1087
|
+
"RESUMED_NON_EMS_SESSION_WITH_EMS_EXTENSION\0"
|
1088
|
+
"SCSV_RECEIVED_WHEN_RENEGOTIATING\0"
|
1089
|
+
"SERVERHELLO_TLSEXT\0"
|
1090
|
+
"SESSION_ID_CONTEXT_UNINITIALIZED\0"
|
1091
|
+
"SESSION_MAY_NOT_BE_CREATED\0"
|
1092
|
+
"SIGNATURE_ALGORITHMS_EXTENSION_SENT_BY_SERVER\0"
|
1093
|
+
"SRTP_COULD_NOT_ALLOCATE_PROFILES\0"
|
1094
|
+
"SRTP_UNKNOWN_PROTECTION_PROFILE\0"
|
1095
|
+
"SSL3_EXT_INVALID_SERVERNAME\0"
|
1096
|
+
"SSLV3_ALERT_BAD_CERTIFICATE\0"
|
1097
|
+
"SSLV3_ALERT_BAD_RECORD_MAC\0"
|
1098
|
+
"SSLV3_ALERT_CERTIFICATE_EXPIRED\0"
|
1099
|
+
"SSLV3_ALERT_CERTIFICATE_REVOKED\0"
|
1100
|
+
"SSLV3_ALERT_CERTIFICATE_UNKNOWN\0"
|
1101
|
+
"SSLV3_ALERT_CLOSE_NOTIFY\0"
|
1102
|
+
"SSLV3_ALERT_DECOMPRESSION_FAILURE\0"
|
1103
|
+
"SSLV3_ALERT_HANDSHAKE_FAILURE\0"
|
1104
|
+
"SSLV3_ALERT_ILLEGAL_PARAMETER\0"
|
1105
|
+
"SSLV3_ALERT_NO_CERTIFICATE\0"
|
1106
|
+
"SSLV3_ALERT_UNEXPECTED_MESSAGE\0"
|
1107
|
+
"SSLV3_ALERT_UNSUPPORTED_CERTIFICATE\0"
|
1108
|
+
"SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION\0"
|
1109
|
+
"SSL_HANDSHAKE_FAILURE\0"
|
1110
|
+
"SSL_SESSION_ID_CONTEXT_TOO_LONG\0"
|
1111
|
+
"TLSV1_ALERT_ACCESS_DENIED\0"
|
1112
|
+
"TLSV1_ALERT_DECODE_ERROR\0"
|
1113
|
+
"TLSV1_ALERT_DECRYPTION_FAILED\0"
|
1114
|
+
"TLSV1_ALERT_DECRYPT_ERROR\0"
|
1115
|
+
"TLSV1_ALERT_EXPORT_RESTRICTION\0"
|
1116
|
+
"TLSV1_ALERT_INAPPROPRIATE_FALLBACK\0"
|
1117
|
+
"TLSV1_ALERT_INSUFFICIENT_SECURITY\0"
|
1118
|
+
"TLSV1_ALERT_INTERNAL_ERROR\0"
|
1119
|
+
"TLSV1_ALERT_NO_RENEGOTIATION\0"
|
1120
|
+
"TLSV1_ALERT_PROTOCOL_VERSION\0"
|
1121
|
+
"TLSV1_ALERT_RECORD_OVERFLOW\0"
|
1122
|
+
"TLSV1_ALERT_UNKNOWN_CA\0"
|
1123
|
+
"TLSV1_ALERT_USER_CANCELLED\0"
|
1124
|
+
"TLSV1_BAD_CERTIFICATE_HASH_VALUE\0"
|
1125
|
+
"TLSV1_BAD_CERTIFICATE_STATUS_RESPONSE\0"
|
1126
|
+
"TLSV1_CERTIFICATE_UNOBTAINABLE\0"
|
1127
|
+
"TLSV1_UNRECOGNIZED_NAME\0"
|
1128
|
+
"TLSV1_UNSUPPORTED_EXTENSION\0"
|
1129
|
+
"TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST\0"
|
1130
|
+
"TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG\0"
|
1131
|
+
"TOO_MANY_EMPTY_FRAGMENTS\0"
|
1132
|
+
"TOO_MANY_WARNING_ALERTS\0"
|
1133
|
+
"UNABLE_TO_FIND_ECDH_PARAMETERS\0"
|
1134
|
+
"UNEXPECTED_EXTENSION\0"
|
1135
|
+
"UNEXPECTED_MESSAGE\0"
|
1136
|
+
"UNEXPECTED_OPERATOR_IN_GROUP\0"
|
1137
|
+
"UNEXPECTED_RECORD\0"
|
1138
|
+
"UNKNOWN_ALERT_TYPE\0"
|
1139
|
+
"UNKNOWN_CERTIFICATE_TYPE\0"
|
1140
|
+
"UNKNOWN_CIPHER_RETURNED\0"
|
1141
|
+
"UNKNOWN_CIPHER_TYPE\0"
|
1142
|
+
"UNKNOWN_KEY_EXCHANGE_TYPE\0"
|
1143
|
+
"UNKNOWN_PROTOCOL\0"
|
1144
|
+
"UNKNOWN_SSL_VERSION\0"
|
1145
|
+
"UNKNOWN_STATE\0"
|
1146
|
+
"UNSAFE_LEGACY_RENEGOTIATION_DISABLED\0"
|
1147
|
+
"UNSUPPORTED_COMPRESSION_ALGORITHM\0"
|
1148
|
+
"UNSUPPORTED_ELLIPTIC_CURVE\0"
|
1149
|
+
"UNSUPPORTED_PROTOCOL\0"
|
1150
|
+
"WRONG_CERTIFICATE_TYPE\0"
|
1151
|
+
"WRONG_CIPHER_RETURNED\0"
|
1152
|
+
"WRONG_CURVE\0"
|
1153
|
+
"WRONG_MESSAGE_TYPE\0"
|
1154
|
+
"WRONG_SIGNATURE_TYPE\0"
|
1155
|
+
"WRONG_SSL_VERSION\0"
|
1156
|
+
"WRONG_VERSION_NUMBER\0"
|
1157
|
+
"X509_LIB\0"
|
1158
|
+
"X509_VERIFICATION_SETUP_PROBLEMS\0"
|
1159
|
+
"AKID_MISMATCH\0"
|
1160
|
+
"BAD_PKCS7_VERSION\0"
|
1161
|
+
"BAD_X509_FILETYPE\0"
|
1162
|
+
"BASE64_DECODE_ERROR\0"
|
1163
|
+
"CANT_CHECK_DH_KEY\0"
|
1164
|
+
"CERT_ALREADY_IN_HASH_TABLE\0"
|
1165
|
+
"CRL_ALREADY_DELTA\0"
|
1166
|
+
"CRL_VERIFY_FAILURE\0"
|
1167
|
+
"IDP_MISMATCH\0"
|
1168
|
+
"INVALID_DIRECTORY\0"
|
1169
|
+
"INVALID_FIELD_NAME\0"
|
1170
|
+
"INVALID_TRUST\0"
|
1171
|
+
"ISSUER_MISMATCH\0"
|
1172
|
+
"KEY_TYPE_MISMATCH\0"
|
1173
|
+
"KEY_VALUES_MISMATCH\0"
|
1174
|
+
"LOADING_CERT_DIR\0"
|
1175
|
+
"LOADING_DEFAULTS\0"
|
1176
|
+
"NEWER_CRL_NOT_NEWER\0"
|
1177
|
+
"NOT_PKCS7_SIGNED_DATA\0"
|
1178
|
+
"NO_CERTIFICATES_INCLUDED\0"
|
1179
|
+
"NO_CERT_SET_FOR_US_TO_VERIFY\0"
|
1180
|
+
"NO_CRLS_INCLUDED\0"
|
1181
|
+
"NO_CRL_NUMBER\0"
|
1182
|
+
"PUBLIC_KEY_DECODE_ERROR\0"
|
1183
|
+
"PUBLIC_KEY_ENCODE_ERROR\0"
|
1184
|
+
"SHOULD_RETRY\0"
|
1185
|
+
"UNABLE_TO_FIND_PARAMETERS_IN_CHAIN\0"
|
1186
|
+
"UNABLE_TO_GET_CERTS_PUBLIC_KEY\0"
|
1187
|
+
"UNKNOWN_KEY_TYPE\0"
|
1188
|
+
"UNKNOWN_PURPOSE_ID\0"
|
1189
|
+
"UNKNOWN_TRUST_ID\0"
|
1190
|
+
"WRONG_LOOKUP_TYPE\0"
|
1191
|
+
"BAD_IP_ADDRESS\0"
|
1192
|
+
"BAD_OBJECT\0"
|
1193
|
+
"BN_DEC2BN_ERROR\0"
|
1194
|
+
"BN_TO_ASN1_INTEGER_ERROR\0"
|
1195
|
+
"CANNOT_FIND_FREE_FUNCTION\0"
|
1196
|
+
"DIRNAME_ERROR\0"
|
1197
|
+
"DISTPOINT_ALREADY_SET\0"
|
1198
|
+
"DUPLICATE_ZONE_ID\0"
|
1199
|
+
"ERROR_CONVERTING_ZONE\0"
|
1200
|
+
"ERROR_CREATING_EXTENSION\0"
|
1201
|
+
"ERROR_IN_EXTENSION\0"
|
1202
|
+
"EXPECTED_A_SECTION_NAME\0"
|
1203
|
+
"EXTENSION_EXISTS\0"
|
1204
|
+
"EXTENSION_NAME_ERROR\0"
|
1205
|
+
"EXTENSION_NOT_FOUND\0"
|
1206
|
+
"EXTENSION_SETTING_NOT_SUPPORTED\0"
|
1207
|
+
"EXTENSION_VALUE_ERROR\0"
|
1208
|
+
"ILLEGAL_EMPTY_EXTENSION\0"
|
1209
|
+
"ILLEGAL_HEX_DIGIT\0"
|
1210
|
+
"INCORRECT_POLICY_SYNTAX_TAG\0"
|
1211
|
+
"INVALID_BOOLEAN_STRING\0"
|
1212
|
+
"INVALID_EXTENSION_STRING\0"
|
1213
|
+
"INVALID_MULTIPLE_RDNS\0"
|
1214
|
+
"INVALID_NAME\0"
|
1215
|
+
"INVALID_NULL_ARGUMENT\0"
|
1216
|
+
"INVALID_NULL_NAME\0"
|
1217
|
+
"INVALID_NULL_VALUE\0"
|
1218
|
+
"INVALID_NUMBERS\0"
|
1219
|
+
"INVALID_OBJECT_IDENTIFIER\0"
|
1220
|
+
"INVALID_OPTION\0"
|
1221
|
+
"INVALID_POLICY_IDENTIFIER\0"
|
1222
|
+
"INVALID_PROXY_POLICY_SETTING\0"
|
1223
|
+
"INVALID_PURPOSE\0"
|
1224
|
+
"INVALID_SECTION\0"
|
1225
|
+
"INVALID_SYNTAX\0"
|
1226
|
+
"ISSUER_DECODE_ERROR\0"
|
1227
|
+
"NEED_ORGANIZATION_AND_NUMBERS\0"
|
1228
|
+
"NO_CONFIG_DATABASE\0"
|
1229
|
+
"NO_ISSUER_CERTIFICATE\0"
|
1230
|
+
"NO_ISSUER_DETAILS\0"
|
1231
|
+
"NO_POLICY_IDENTIFIER\0"
|
1232
|
+
"NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED\0"
|
1233
|
+
"NO_PUBLIC_KEY\0"
|
1234
|
+
"NO_SUBJECT_DETAILS\0"
|
1235
|
+
"ODD_NUMBER_OF_DIGITS\0"
|
1236
|
+
"OPERATION_NOT_DEFINED\0"
|
1237
|
+
"OTHERNAME_ERROR\0"
|
1238
|
+
"POLICY_LANGUAGE_ALREADY_DEFINED\0"
|
1239
|
+
"POLICY_PATH_LENGTH\0"
|
1240
|
+
"POLICY_PATH_LENGTH_ALREADY_DEFINED\0"
|
1241
|
+
"POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY\0"
|
1242
|
+
"SECTION_NOT_FOUND\0"
|
1243
|
+
"UNABLE_TO_GET_ISSUER_DETAILS\0"
|
1244
|
+
"UNABLE_TO_GET_ISSUER_KEYID\0"
|
1245
|
+
"UNKNOWN_BIT_STRING_ARGUMENT\0"
|
1246
|
+
"UNKNOWN_EXTENSION\0"
|
1247
|
+
"UNKNOWN_EXTENSION_NAME\0"
|
1248
|
+
"UNKNOWN_OPTION\0"
|
1249
|
+
"UNSUPPORTED_OPTION\0"
|
1250
|
+
"USER_TOO_LONG\0"
|
1251
|
+
"";
|
1252
|
+
|