wearefair-grpc 1.3.1.pre.a
Sign up to get free protection for your applications and to get access to all the features.
- 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,150 @@
|
|
1
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
2
|
+
* All rights reserved.
|
3
|
+
*
|
4
|
+
* This package is an SSL implementation written
|
5
|
+
* by Eric Young (eay@cryptsoft.com).
|
6
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
7
|
+
*
|
8
|
+
* This library is free for commercial and non-commercial use as long as
|
9
|
+
* the following conditions are aheared to. The following conditions
|
10
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
11
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
12
|
+
* included with this distribution is covered by the same copyright terms
|
13
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
14
|
+
*
|
15
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
16
|
+
* the code are not to be removed.
|
17
|
+
* If this package is used in a product, Eric Young should be given attribution
|
18
|
+
* as the author of the parts of the library used.
|
19
|
+
* This can be in the form of a textual message at program startup or
|
20
|
+
* in documentation (online or textual) provided with the package.
|
21
|
+
*
|
22
|
+
* Redistribution and use in source and binary forms, with or without
|
23
|
+
* modification, are permitted provided that the following conditions
|
24
|
+
* are met:
|
25
|
+
* 1. Redistributions of source code must retain the copyright
|
26
|
+
* notice, this list of conditions and the following disclaimer.
|
27
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
28
|
+
* notice, this list of conditions and the following disclaimer in the
|
29
|
+
* documentation and/or other materials provided with the distribution.
|
30
|
+
* 3. All advertising materials mentioning features or use of this software
|
31
|
+
* must display the following acknowledgement:
|
32
|
+
* "This product includes cryptographic software written by
|
33
|
+
* Eric Young (eay@cryptsoft.com)"
|
34
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
35
|
+
* being used are not cryptographic related :-).
|
36
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
37
|
+
* the apps directory (application code) you must include an acknowledgement:
|
38
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
39
|
+
*
|
40
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
41
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
42
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
43
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
44
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
45
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
46
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
48
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
49
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
50
|
+
* SUCH DAMAGE.
|
51
|
+
*
|
52
|
+
* The licence and distribution terms for any publically available version or
|
53
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
54
|
+
* copied and put under another distribution licence
|
55
|
+
* [including the GNU Public Licence.] */
|
56
|
+
|
57
|
+
#ifndef OPENSSL_HEADER_MEM_H
|
58
|
+
#define OPENSSL_HEADER_MEM_H
|
59
|
+
|
60
|
+
#include <openssl/base.h>
|
61
|
+
|
62
|
+
#include <stdlib.h>
|
63
|
+
#include <stdarg.h>
|
64
|
+
|
65
|
+
#if defined(__cplusplus)
|
66
|
+
extern "C" {
|
67
|
+
#endif
|
68
|
+
|
69
|
+
|
70
|
+
/* Memory and string functions, see also buf.h.
|
71
|
+
*
|
72
|
+
* OpenSSL has, historically, had a complex set of malloc debugging options.
|
73
|
+
* However, that was written in a time before Valgrind and ASAN. Since we now
|
74
|
+
* have those tools, the OpenSSL allocation functions are simply macros around
|
75
|
+
* the standard memory functions. */
|
76
|
+
|
77
|
+
|
78
|
+
#define OPENSSL_malloc malloc
|
79
|
+
#define OPENSSL_realloc realloc
|
80
|
+
#define OPENSSL_free free
|
81
|
+
|
82
|
+
/* OPENSSL_realloc_clean acts like |realloc|, but clears the previous memory
|
83
|
+
* buffer. Because this is implemented as a wrapper around |malloc|, it needs
|
84
|
+
* to be given the size of the buffer pointed to by |ptr|. */
|
85
|
+
void *OPENSSL_realloc_clean(void *ptr, size_t old_size, size_t new_size);
|
86
|
+
|
87
|
+
/* OPENSSL_cleanse zeros out |len| bytes of memory at |ptr|. This is similar to
|
88
|
+
* |memset_s| from C11. */
|
89
|
+
OPENSSL_EXPORT void OPENSSL_cleanse(void *ptr, size_t len);
|
90
|
+
|
91
|
+
/* CRYPTO_memcmp returns zero iff the |len| bytes at |a| and |b| are equal. It
|
92
|
+
* takes an amount of time dependent on |len|, but independent of the contents
|
93
|
+
* of |a| and |b|. Unlike memcmp, it cannot be used to put elements into a
|
94
|
+
* defined order as the return value when a != b is undefined, other than to be
|
95
|
+
* non-zero. */
|
96
|
+
OPENSSL_EXPORT int CRYPTO_memcmp(const void *a, const void *b, size_t len);
|
97
|
+
|
98
|
+
/* OPENSSL_hash32 implements the 32 bit, FNV-1a hash. */
|
99
|
+
OPENSSL_EXPORT uint32_t OPENSSL_hash32(const void *ptr, size_t len);
|
100
|
+
|
101
|
+
/* OPENSSL_strdup has the same behaviour as strdup(3). */
|
102
|
+
OPENSSL_EXPORT char *OPENSSL_strdup(const char *s);
|
103
|
+
|
104
|
+
/* OPENSSL_strnlen has the same behaviour as strnlen(3). */
|
105
|
+
OPENSSL_EXPORT size_t OPENSSL_strnlen(const char *s, size_t len);
|
106
|
+
|
107
|
+
/* OPENSSL_strcasecmp has the same behaviour as strcasecmp(3). */
|
108
|
+
OPENSSL_EXPORT int OPENSSL_strcasecmp(const char *a, const char *b);
|
109
|
+
|
110
|
+
/* OPENSSL_strncasecmp has the same behaviour as strncasecmp(3). */
|
111
|
+
OPENSSL_EXPORT int OPENSSL_strncasecmp(const char *a, const char *b, size_t n);
|
112
|
+
|
113
|
+
/* DECIMAL_SIZE returns an upper bound for the length of the decimal
|
114
|
+
* representation of the given type. */
|
115
|
+
#define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
|
116
|
+
|
117
|
+
/* BIO_snprintf has the same behavior as snprintf(3). */
|
118
|
+
OPENSSL_EXPORT int BIO_snprintf(char *buf, size_t n, const char *format, ...)
|
119
|
+
OPENSSL_PRINTF_FORMAT_FUNC(3, 4);
|
120
|
+
|
121
|
+
/* BIO_vsnprintf has the same behavior as vsnprintf(3). */
|
122
|
+
OPENSSL_EXPORT int BIO_vsnprintf(char *buf, size_t n, const char *format,
|
123
|
+
va_list args)
|
124
|
+
OPENSSL_PRINTF_FORMAT_FUNC(3, 0);
|
125
|
+
|
126
|
+
|
127
|
+
/* Deprecated functions. */
|
128
|
+
|
129
|
+
#define CRYPTO_malloc OPENSSL_malloc
|
130
|
+
#define CRYPTO_realloc OPENSSL_realloc
|
131
|
+
#define CRYPTO_free OPENSSL_free
|
132
|
+
|
133
|
+
|
134
|
+
#if defined(__cplusplus)
|
135
|
+
} /* extern C */
|
136
|
+
|
137
|
+
extern "C++" {
|
138
|
+
|
139
|
+
namespace bssl {
|
140
|
+
|
141
|
+
BORINGSSL_MAKE_DELETER(char, OPENSSL_free)
|
142
|
+
BORINGSSL_MAKE_DELETER(uint8_t, OPENSSL_free)
|
143
|
+
|
144
|
+
} // namespace bssl
|
145
|
+
|
146
|
+
} /* extern C++ */
|
147
|
+
|
148
|
+
#endif
|
149
|
+
|
150
|
+
#endif /* OPENSSL_HEADER_MEM_H */
|
@@ -0,0 +1,158 @@
|
|
1
|
+
/* Copyright (c) 2016, Google Inc.
|
2
|
+
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
6
|
+
*
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
14
|
+
|
15
|
+
#ifndef OPENSSL_HEADER_NEWHOPE_H
|
16
|
+
#define OPENSSL_HEADER_NEWHOPE_H
|
17
|
+
|
18
|
+
#include <openssl/base.h>
|
19
|
+
#include <openssl/sha.h>
|
20
|
+
|
21
|
+
#if defined(__cplusplus)
|
22
|
+
extern "C" {
|
23
|
+
#endif
|
24
|
+
|
25
|
+
|
26
|
+
/* Post-quantum key agreement, based upon the reference
|
27
|
+
* implementation. Note: this implementation does not interoperate
|
28
|
+
* with the reference implementation!
|
29
|
+
*
|
30
|
+
* Source: https://github.com/tpoeppelmann/newhope
|
31
|
+
*
|
32
|
+
* The authors' permission to use their code is gratefully acknowledged. */
|
33
|
+
|
34
|
+
|
35
|
+
/* NEWHOPE_POLY_new returns a new |NEWHOPE_POLY| object, or NULL on error. */
|
36
|
+
OPENSSL_EXPORT NEWHOPE_POLY *NEWHOPE_POLY_new(void);
|
37
|
+
|
38
|
+
/* NEWHOPE_POLY_free frees |p|. */
|
39
|
+
OPENSSL_EXPORT void NEWHOPE_POLY_free(NEWHOPE_POLY *p);
|
40
|
+
|
41
|
+
/* NEWHOPE_POLY_LENGTH is the size in bytes of the packed representation of a
|
42
|
+
* polynomial, encoded with 14 bits per coefficient. */
|
43
|
+
#define NEWHOPE_POLY_LENGTH ((1024 * 14) / 8)
|
44
|
+
|
45
|
+
/* NEWHOPE_RECONCILIATION_LENGTH is the size in bytes of the packed
|
46
|
+
* representation of the reconciliation data, encoded as 2 bits per
|
47
|
+
* coefficient. */
|
48
|
+
#define NEWHOPE_RECONCILIATION_LENGTH ((1024 * 2) / 8)
|
49
|
+
|
50
|
+
/* NEWHOPE_OFFERMSG_LENGTH is the length of the offering party's message to the
|
51
|
+
* accepting party. */
|
52
|
+
#define NEWHOPE_OFFERMSG_LENGTH (NEWHOPE_POLY_LENGTH + 32)
|
53
|
+
|
54
|
+
/* NEWHOPE_ACCEPTMSG_LENGTH is the length of the accepting party's message to
|
55
|
+
* the offering party. */
|
56
|
+
#define NEWHOPE_ACCEPTMSG_LENGTH \
|
57
|
+
(NEWHOPE_POLY_LENGTH + NEWHOPE_RECONCILIATION_LENGTH)
|
58
|
+
|
59
|
+
/* NEWHOPE_KEY_LENGTH is the size of the result of the key agreement. This
|
60
|
+
* result is not exposed to callers: instead, it is whitened with SHA-256, whose
|
61
|
+
* output happens to be the same size. */
|
62
|
+
#define NEWHOPE_KEY_LENGTH 32
|
63
|
+
|
64
|
+
/* NEWHOPE_offer initializes |out_msg| and |out_sk| for a new key
|
65
|
+
* exchange. |msg| must have room for |NEWHOPE_OFFERMSG_LENGTH| bytes. Neither
|
66
|
+
* output may be cached. */
|
67
|
+
OPENSSL_EXPORT void NEWHOPE_offer(uint8_t out_msg[NEWHOPE_OFFERMSG_LENGTH],
|
68
|
+
NEWHOPE_POLY *out_sk);
|
69
|
+
|
70
|
+
/* NEWHOPE_accept completes a key exchange given an offer message |msg|. The
|
71
|
+
* result of the key exchange is written to |out_key|, which must have space for
|
72
|
+
* |SHA256_DIGEST_LENGTH| bytes. The message to be send to the offering party is
|
73
|
+
* written to |out_msg|, which must have room for |NEWHOPE_ACCEPTMSG_LENGTH|
|
74
|
+
* bytes. Returns 1 on success and 0 on error. */
|
75
|
+
OPENSSL_EXPORT int NEWHOPE_accept(uint8_t out_key[SHA256_DIGEST_LENGTH],
|
76
|
+
uint8_t out_msg[NEWHOPE_ACCEPTMSG_LENGTH],
|
77
|
+
const uint8_t msg[NEWHOPE_OFFERMSG_LENGTH],
|
78
|
+
size_t msg_len);
|
79
|
+
|
80
|
+
/* NEWHOPE_finish completes a key exchange for the offering party, given an
|
81
|
+
* accept message |msg| and the previously generated secret |sk|. The result of
|
82
|
+
* the key exchange is written to |out_key|, which must have space for
|
83
|
+
* |SHA256_DIGEST_LENGTH| bytes. Returns 1 on success and 0 on error. */
|
84
|
+
OPENSSL_EXPORT int NEWHOPE_finish(uint8_t out_key[SHA256_DIGEST_LENGTH],
|
85
|
+
const NEWHOPE_POLY *sk,
|
86
|
+
const uint8_t msg[NEWHOPE_ACCEPTMSG_LENGTH],
|
87
|
+
size_t msg_len);
|
88
|
+
|
89
|
+
|
90
|
+
/* Lower-level functions. */
|
91
|
+
|
92
|
+
/* NEWHOPE_POLY_noise sets |r| to a random polynomial where the coefficients are
|
93
|
+
* sampled from the noise distribution. */
|
94
|
+
OPENSSL_EXPORT void NEWHOPE_POLY_noise(NEWHOPE_POLY* r);
|
95
|
+
|
96
|
+
/* NEWHOPE_POLY_noise_ntt sets |r| to an output of NEWHOPE_POLY_noise, and then
|
97
|
+
* applies NTT(r) in-place. */
|
98
|
+
OPENSSL_EXPORT void NEWHOPE_POLY_noise_ntt(NEWHOPE_POLY* r);
|
99
|
+
|
100
|
+
/* NEWHOPE_offer_computation is the work of |NEWHOPE_offer|, less the encoding
|
101
|
+
* parts. The inputs are the noise polynomials |s| and |e|, and random
|
102
|
+
* polynomial |a|. The output is the polynomial |pk|. */
|
103
|
+
OPENSSL_EXPORT void NEWHOPE_offer_computation(
|
104
|
+
NEWHOPE_POLY *out_pk,
|
105
|
+
const NEWHOPE_POLY *s, const NEWHOPE_POLY *e, const NEWHOPE_POLY *a);
|
106
|
+
|
107
|
+
/* NEWHOPE_accept_computation is the work of |NEWHOPE_accept|, less the encoding
|
108
|
+
* parts. The inputs from the peer are |pk| and |a|. The locally-generated
|
109
|
+
* inputs are the noise polynomials |sp|, |ep|, and |epp|, and the random bytes
|
110
|
+
* |rand|. The outputs are |out_bp| and |out_reconciliation|, and the result of
|
111
|
+
* key agreement |key|. Returns 1 on success and 0 on failure. */
|
112
|
+
OPENSSL_EXPORT void NEWHOPE_accept_computation(
|
113
|
+
uint8_t out_key[NEWHOPE_KEY_LENGTH], NEWHOPE_POLY *out_bp,
|
114
|
+
NEWHOPE_POLY *out_reconciliation,
|
115
|
+
const NEWHOPE_POLY *sp, const NEWHOPE_POLY *ep, const NEWHOPE_POLY *epp,
|
116
|
+
const uint8_t rand[32],
|
117
|
+
const NEWHOPE_POLY *pk, const NEWHOPE_POLY *a);
|
118
|
+
|
119
|
+
/* NEWHOPE_finish_computation is the work of |NEWHOPE_finish|, less the encoding
|
120
|
+
* parts. Given the peer's |bp| and |reconciliation|, and locally-generated
|
121
|
+
* noise |noise|, the result of the key agreement is written to out_key.
|
122
|
+
* Returns 1 on success and 0 on failure. */
|
123
|
+
OPENSSL_EXPORT void NEWHOPE_finish_computation(
|
124
|
+
uint8_t out_key[NEWHOPE_KEY_LENGTH], const NEWHOPE_POLY *noise,
|
125
|
+
const NEWHOPE_POLY *bp, const NEWHOPE_POLY *reconciliation);
|
126
|
+
|
127
|
+
/* NEWHOPE_POLY_frombytes decodes |a| into |r|. */
|
128
|
+
OPENSSL_EXPORT void NEWHOPE_POLY_frombytes(
|
129
|
+
NEWHOPE_POLY *r, const uint8_t a[NEWHOPE_POLY_LENGTH]);
|
130
|
+
|
131
|
+
/* NEWHOPE_POLY_tobytes packs the polynomial |p| into the compact representation
|
132
|
+
* |r|. */
|
133
|
+
OPENSSL_EXPORT void NEWHOPE_POLY_tobytes(uint8_t r[NEWHOPE_POLY_LENGTH],
|
134
|
+
const NEWHOPE_POLY* p);
|
135
|
+
|
136
|
+
/* NEWHOPE_offer_frommsg decodes an offer message |msg| into its constituent
|
137
|
+
* polynomials |out_pk| and |a|. */
|
138
|
+
OPENSSL_EXPORT void NEWHOPE_offer_frommsg(
|
139
|
+
NEWHOPE_POLY *out_pk, NEWHOPE_POLY *out_a,
|
140
|
+
const uint8_t msg[NEWHOPE_OFFERMSG_LENGTH]);
|
141
|
+
|
142
|
+
|
143
|
+
#if defined(__cplusplus)
|
144
|
+
} /* extern "C" */
|
145
|
+
|
146
|
+
extern "C++" {
|
147
|
+
|
148
|
+
namespace bssl {
|
149
|
+
|
150
|
+
BORINGSSL_MAKE_DELETER(NEWHOPE_POLY, NEWHOPE_POLY_free)
|
151
|
+
|
152
|
+
} // namespace bssl
|
153
|
+
|
154
|
+
} /* extern C++ */
|
155
|
+
|
156
|
+
#endif
|
157
|
+
|
158
|
+
#endif /* OPENSSL_HEADER_NEWHOPE_H */
|
@@ -0,0 +1,4166 @@
|
|
1
|
+
/* THIS FILE IS GENERATED FROM objects.txt by objects.pl via the
|
2
|
+
* following command:
|
3
|
+
* perl objects.pl objects.txt obj_mac.num ../../include/openssl/nid.h */
|
4
|
+
|
5
|
+
/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
|
6
|
+
* All rights reserved.
|
7
|
+
*
|
8
|
+
* This package is an SSL implementation written
|
9
|
+
* by Eric Young (eay@cryptsoft.com).
|
10
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
11
|
+
*
|
12
|
+
* This library is free for commercial and non-commercial use as long as
|
13
|
+
* the following conditions are aheared to. The following conditions
|
14
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
15
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
16
|
+
* included with this distribution is covered by the same copyright terms
|
17
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
18
|
+
*
|
19
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
20
|
+
* the code are not to be removed.
|
21
|
+
* If this package is used in a product, Eric Young should be given attribution
|
22
|
+
* as the author of the parts of the library used.
|
23
|
+
* This can be in the form of a textual message at program startup or
|
24
|
+
* in documentation (online or textual) provided with the package.
|
25
|
+
*
|
26
|
+
* Redistribution and use in source and binary forms, with or without
|
27
|
+
* modification, are permitted provided that the following conditions
|
28
|
+
* are met:
|
29
|
+
* 1. Redistributions of source code must retain the copyright
|
30
|
+
* notice, this list of conditions and the following disclaimer.
|
31
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
32
|
+
* notice, this list of conditions and the following disclaimer in the
|
33
|
+
* documentation and/or other materials provided with the distribution.
|
34
|
+
* 3. All advertising materials mentioning features or use of this software
|
35
|
+
* must display the following acknowledgement:
|
36
|
+
* "This product includes cryptographic software written by
|
37
|
+
* Eric Young (eay@cryptsoft.com)"
|
38
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
39
|
+
* being used are not cryptographic related :-).
|
40
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
41
|
+
* the apps directory (application code) you must include an acknowledgement:
|
42
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
43
|
+
*
|
44
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
45
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
46
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
47
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
48
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
49
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
50
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
51
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
52
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
53
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
54
|
+
* SUCH DAMAGE.
|
55
|
+
*
|
56
|
+
* The licence and distribution terms for any publically available version or
|
57
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
58
|
+
* copied and put under another distribution licence
|
59
|
+
* [including the GNU Public Licence.]
|
60
|
+
*/
|
61
|
+
|
62
|
+
#ifndef OPENSSL_HEADER_NID_H
|
63
|
+
#define OPENSSL_HEADER_NID_H
|
64
|
+
|
65
|
+
|
66
|
+
/* The nid library provides numbered values for ASN.1 object identifiers and
|
67
|
+
* other symbols. These values are used by other libraries to identify
|
68
|
+
* cryptographic primitives.
|
69
|
+
*
|
70
|
+
* A separate objects library, obj.h, provides functions for converting between
|
71
|
+
* nids and object identifiers. However it depends on large internal tables with
|
72
|
+
* the encodings of every nid defind. Consumers concerned with binary size
|
73
|
+
* should instead embed the encodings of the few consumed OIDs and compare
|
74
|
+
* against those.
|
75
|
+
*
|
76
|
+
* These values should not be used outside of a single process; they are not
|
77
|
+
* stable identifiers. */
|
78
|
+
|
79
|
+
|
80
|
+
#define SN_undef "UNDEF"
|
81
|
+
#define LN_undef "undefined"
|
82
|
+
#define NID_undef 0
|
83
|
+
#define OBJ_undef 0L
|
84
|
+
|
85
|
+
#define SN_itu_t "ITU-T"
|
86
|
+
#define LN_itu_t "itu-t"
|
87
|
+
#define NID_itu_t 645
|
88
|
+
#define OBJ_itu_t 0L
|
89
|
+
|
90
|
+
#define NID_ccitt 404
|
91
|
+
#define OBJ_ccitt OBJ_itu_t
|
92
|
+
|
93
|
+
#define SN_iso "ISO"
|
94
|
+
#define LN_iso "iso"
|
95
|
+
#define NID_iso 181
|
96
|
+
#define OBJ_iso 1L
|
97
|
+
|
98
|
+
#define SN_joint_iso_itu_t "JOINT-ISO-ITU-T"
|
99
|
+
#define LN_joint_iso_itu_t "joint-iso-itu-t"
|
100
|
+
#define NID_joint_iso_itu_t 646
|
101
|
+
#define OBJ_joint_iso_itu_t 2L
|
102
|
+
|
103
|
+
#define NID_joint_iso_ccitt 393
|
104
|
+
#define OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t
|
105
|
+
|
106
|
+
#define SN_member_body "member-body"
|
107
|
+
#define LN_member_body "ISO Member Body"
|
108
|
+
#define NID_member_body 182
|
109
|
+
#define OBJ_member_body OBJ_iso,2L
|
110
|
+
|
111
|
+
#define SN_identified_organization "identified-organization"
|
112
|
+
#define NID_identified_organization 676
|
113
|
+
#define OBJ_identified_organization OBJ_iso,3L
|
114
|
+
|
115
|
+
#define SN_hmac_md5 "HMAC-MD5"
|
116
|
+
#define LN_hmac_md5 "hmac-md5"
|
117
|
+
#define NID_hmac_md5 780
|
118
|
+
#define OBJ_hmac_md5 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,1L
|
119
|
+
|
120
|
+
#define SN_hmac_sha1 "HMAC-SHA1"
|
121
|
+
#define LN_hmac_sha1 "hmac-sha1"
|
122
|
+
#define NID_hmac_sha1 781
|
123
|
+
#define OBJ_hmac_sha1 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,2L
|
124
|
+
|
125
|
+
#define SN_certicom_arc "certicom-arc"
|
126
|
+
#define NID_certicom_arc 677
|
127
|
+
#define OBJ_certicom_arc OBJ_identified_organization,132L
|
128
|
+
|
129
|
+
#define SN_international_organizations "international-organizations"
|
130
|
+
#define LN_international_organizations "International Organizations"
|
131
|
+
#define NID_international_organizations 647
|
132
|
+
#define OBJ_international_organizations OBJ_joint_iso_itu_t,23L
|
133
|
+
|
134
|
+
#define SN_wap "wap"
|
135
|
+
#define NID_wap 678
|
136
|
+
#define OBJ_wap OBJ_international_organizations,43L
|
137
|
+
|
138
|
+
#define SN_wap_wsg "wap-wsg"
|
139
|
+
#define NID_wap_wsg 679
|
140
|
+
#define OBJ_wap_wsg OBJ_wap,1L
|
141
|
+
|
142
|
+
#define SN_selected_attribute_types "selected-attribute-types"
|
143
|
+
#define LN_selected_attribute_types "Selected Attribute Types"
|
144
|
+
#define NID_selected_attribute_types 394
|
145
|
+
#define OBJ_selected_attribute_types OBJ_joint_iso_itu_t,5L,1L,5L
|
146
|
+
|
147
|
+
#define SN_clearance "clearance"
|
148
|
+
#define NID_clearance 395
|
149
|
+
#define OBJ_clearance OBJ_selected_attribute_types,55L
|
150
|
+
|
151
|
+
#define SN_ISO_US "ISO-US"
|
152
|
+
#define LN_ISO_US "ISO US Member Body"
|
153
|
+
#define NID_ISO_US 183
|
154
|
+
#define OBJ_ISO_US OBJ_member_body,840L
|
155
|
+
|
156
|
+
#define SN_X9_57 "X9-57"
|
157
|
+
#define LN_X9_57 "X9.57"
|
158
|
+
#define NID_X9_57 184
|
159
|
+
#define OBJ_X9_57 OBJ_ISO_US,10040L
|
160
|
+
|
161
|
+
#define SN_X9cm "X9cm"
|
162
|
+
#define LN_X9cm "X9.57 CM ?"
|
163
|
+
#define NID_X9cm 185
|
164
|
+
#define OBJ_X9cm OBJ_X9_57,4L
|
165
|
+
|
166
|
+
#define SN_dsa "DSA"
|
167
|
+
#define LN_dsa "dsaEncryption"
|
168
|
+
#define NID_dsa 116
|
169
|
+
#define OBJ_dsa OBJ_X9cm,1L
|
170
|
+
|
171
|
+
#define SN_dsaWithSHA1 "DSA-SHA1"
|
172
|
+
#define LN_dsaWithSHA1 "dsaWithSHA1"
|
173
|
+
#define NID_dsaWithSHA1 113
|
174
|
+
#define OBJ_dsaWithSHA1 OBJ_X9cm,3L
|
175
|
+
|
176
|
+
#define SN_ansi_X9_62 "ansi-X9-62"
|
177
|
+
#define LN_ansi_X9_62 "ANSI X9.62"
|
178
|
+
#define NID_ansi_X9_62 405
|
179
|
+
#define OBJ_ansi_X9_62 OBJ_ISO_US,10045L
|
180
|
+
|
181
|
+
#define OBJ_X9_62_id_fieldType OBJ_ansi_X9_62,1L
|
182
|
+
|
183
|
+
#define SN_X9_62_prime_field "prime-field"
|
184
|
+
#define NID_X9_62_prime_field 406
|
185
|
+
#define OBJ_X9_62_prime_field OBJ_X9_62_id_fieldType,1L
|
186
|
+
|
187
|
+
#define SN_X9_62_characteristic_two_field "characteristic-two-field"
|
188
|
+
#define NID_X9_62_characteristic_two_field 407
|
189
|
+
#define OBJ_X9_62_characteristic_two_field OBJ_X9_62_id_fieldType,2L
|
190
|
+
|
191
|
+
#define SN_X9_62_id_characteristic_two_basis "id-characteristic-two-basis"
|
192
|
+
#define NID_X9_62_id_characteristic_two_basis 680
|
193
|
+
#define OBJ_X9_62_id_characteristic_two_basis OBJ_X9_62_characteristic_two_field,3L
|
194
|
+
|
195
|
+
#define SN_X9_62_onBasis "onBasis"
|
196
|
+
#define NID_X9_62_onBasis 681
|
197
|
+
#define OBJ_X9_62_onBasis OBJ_X9_62_id_characteristic_two_basis,1L
|
198
|
+
|
199
|
+
#define SN_X9_62_tpBasis "tpBasis"
|
200
|
+
#define NID_X9_62_tpBasis 682
|
201
|
+
#define OBJ_X9_62_tpBasis OBJ_X9_62_id_characteristic_two_basis,2L
|
202
|
+
|
203
|
+
#define SN_X9_62_ppBasis "ppBasis"
|
204
|
+
#define NID_X9_62_ppBasis 683
|
205
|
+
#define OBJ_X9_62_ppBasis OBJ_X9_62_id_characteristic_two_basis,3L
|
206
|
+
|
207
|
+
#define OBJ_X9_62_id_publicKeyType OBJ_ansi_X9_62,2L
|
208
|
+
|
209
|
+
#define SN_X9_62_id_ecPublicKey "id-ecPublicKey"
|
210
|
+
#define NID_X9_62_id_ecPublicKey 408
|
211
|
+
#define OBJ_X9_62_id_ecPublicKey OBJ_X9_62_id_publicKeyType,1L
|
212
|
+
|
213
|
+
#define OBJ_X9_62_ellipticCurve OBJ_ansi_X9_62,3L
|
214
|
+
|
215
|
+
#define OBJ_X9_62_c_TwoCurve OBJ_X9_62_ellipticCurve,0L
|
216
|
+
|
217
|
+
#define SN_X9_62_c2pnb163v1 "c2pnb163v1"
|
218
|
+
#define NID_X9_62_c2pnb163v1 684
|
219
|
+
#define OBJ_X9_62_c2pnb163v1 OBJ_X9_62_c_TwoCurve,1L
|
220
|
+
|
221
|
+
#define SN_X9_62_c2pnb163v2 "c2pnb163v2"
|
222
|
+
#define NID_X9_62_c2pnb163v2 685
|
223
|
+
#define OBJ_X9_62_c2pnb163v2 OBJ_X9_62_c_TwoCurve,2L
|
224
|
+
|
225
|
+
#define SN_X9_62_c2pnb163v3 "c2pnb163v3"
|
226
|
+
#define NID_X9_62_c2pnb163v3 686
|
227
|
+
#define OBJ_X9_62_c2pnb163v3 OBJ_X9_62_c_TwoCurve,3L
|
228
|
+
|
229
|
+
#define SN_X9_62_c2pnb176v1 "c2pnb176v1"
|
230
|
+
#define NID_X9_62_c2pnb176v1 687
|
231
|
+
#define OBJ_X9_62_c2pnb176v1 OBJ_X9_62_c_TwoCurve,4L
|
232
|
+
|
233
|
+
#define SN_X9_62_c2tnb191v1 "c2tnb191v1"
|
234
|
+
#define NID_X9_62_c2tnb191v1 688
|
235
|
+
#define OBJ_X9_62_c2tnb191v1 OBJ_X9_62_c_TwoCurve,5L
|
236
|
+
|
237
|
+
#define SN_X9_62_c2tnb191v2 "c2tnb191v2"
|
238
|
+
#define NID_X9_62_c2tnb191v2 689
|
239
|
+
#define OBJ_X9_62_c2tnb191v2 OBJ_X9_62_c_TwoCurve,6L
|
240
|
+
|
241
|
+
#define SN_X9_62_c2tnb191v3 "c2tnb191v3"
|
242
|
+
#define NID_X9_62_c2tnb191v3 690
|
243
|
+
#define OBJ_X9_62_c2tnb191v3 OBJ_X9_62_c_TwoCurve,7L
|
244
|
+
|
245
|
+
#define SN_X9_62_c2onb191v4 "c2onb191v4"
|
246
|
+
#define NID_X9_62_c2onb191v4 691
|
247
|
+
#define OBJ_X9_62_c2onb191v4 OBJ_X9_62_c_TwoCurve,8L
|
248
|
+
|
249
|
+
#define SN_X9_62_c2onb191v5 "c2onb191v5"
|
250
|
+
#define NID_X9_62_c2onb191v5 692
|
251
|
+
#define OBJ_X9_62_c2onb191v5 OBJ_X9_62_c_TwoCurve,9L
|
252
|
+
|
253
|
+
#define SN_X9_62_c2pnb208w1 "c2pnb208w1"
|
254
|
+
#define NID_X9_62_c2pnb208w1 693
|
255
|
+
#define OBJ_X9_62_c2pnb208w1 OBJ_X9_62_c_TwoCurve,10L
|
256
|
+
|
257
|
+
#define SN_X9_62_c2tnb239v1 "c2tnb239v1"
|
258
|
+
#define NID_X9_62_c2tnb239v1 694
|
259
|
+
#define OBJ_X9_62_c2tnb239v1 OBJ_X9_62_c_TwoCurve,11L
|
260
|
+
|
261
|
+
#define SN_X9_62_c2tnb239v2 "c2tnb239v2"
|
262
|
+
#define NID_X9_62_c2tnb239v2 695
|
263
|
+
#define OBJ_X9_62_c2tnb239v2 OBJ_X9_62_c_TwoCurve,12L
|
264
|
+
|
265
|
+
#define SN_X9_62_c2tnb239v3 "c2tnb239v3"
|
266
|
+
#define NID_X9_62_c2tnb239v3 696
|
267
|
+
#define OBJ_X9_62_c2tnb239v3 OBJ_X9_62_c_TwoCurve,13L
|
268
|
+
|
269
|
+
#define SN_X9_62_c2onb239v4 "c2onb239v4"
|
270
|
+
#define NID_X9_62_c2onb239v4 697
|
271
|
+
#define OBJ_X9_62_c2onb239v4 OBJ_X9_62_c_TwoCurve,14L
|
272
|
+
|
273
|
+
#define SN_X9_62_c2onb239v5 "c2onb239v5"
|
274
|
+
#define NID_X9_62_c2onb239v5 698
|
275
|
+
#define OBJ_X9_62_c2onb239v5 OBJ_X9_62_c_TwoCurve,15L
|
276
|
+
|
277
|
+
#define SN_X9_62_c2pnb272w1 "c2pnb272w1"
|
278
|
+
#define NID_X9_62_c2pnb272w1 699
|
279
|
+
#define OBJ_X9_62_c2pnb272w1 OBJ_X9_62_c_TwoCurve,16L
|
280
|
+
|
281
|
+
#define SN_X9_62_c2pnb304w1 "c2pnb304w1"
|
282
|
+
#define NID_X9_62_c2pnb304w1 700
|
283
|
+
#define OBJ_X9_62_c2pnb304w1 OBJ_X9_62_c_TwoCurve,17L
|
284
|
+
|
285
|
+
#define SN_X9_62_c2tnb359v1 "c2tnb359v1"
|
286
|
+
#define NID_X9_62_c2tnb359v1 701
|
287
|
+
#define OBJ_X9_62_c2tnb359v1 OBJ_X9_62_c_TwoCurve,18L
|
288
|
+
|
289
|
+
#define SN_X9_62_c2pnb368w1 "c2pnb368w1"
|
290
|
+
#define NID_X9_62_c2pnb368w1 702
|
291
|
+
#define OBJ_X9_62_c2pnb368w1 OBJ_X9_62_c_TwoCurve,19L
|
292
|
+
|
293
|
+
#define SN_X9_62_c2tnb431r1 "c2tnb431r1"
|
294
|
+
#define NID_X9_62_c2tnb431r1 703
|
295
|
+
#define OBJ_X9_62_c2tnb431r1 OBJ_X9_62_c_TwoCurve,20L
|
296
|
+
|
297
|
+
#define OBJ_X9_62_primeCurve OBJ_X9_62_ellipticCurve,1L
|
298
|
+
|
299
|
+
#define SN_X9_62_prime192v1 "prime192v1"
|
300
|
+
#define NID_X9_62_prime192v1 409
|
301
|
+
#define OBJ_X9_62_prime192v1 OBJ_X9_62_primeCurve,1L
|
302
|
+
|
303
|
+
#define SN_X9_62_prime192v2 "prime192v2"
|
304
|
+
#define NID_X9_62_prime192v2 410
|
305
|
+
#define OBJ_X9_62_prime192v2 OBJ_X9_62_primeCurve,2L
|
306
|
+
|
307
|
+
#define SN_X9_62_prime192v3 "prime192v3"
|
308
|
+
#define NID_X9_62_prime192v3 411
|
309
|
+
#define OBJ_X9_62_prime192v3 OBJ_X9_62_primeCurve,3L
|
310
|
+
|
311
|
+
#define SN_X9_62_prime239v1 "prime239v1"
|
312
|
+
#define NID_X9_62_prime239v1 412
|
313
|
+
#define OBJ_X9_62_prime239v1 OBJ_X9_62_primeCurve,4L
|
314
|
+
|
315
|
+
#define SN_X9_62_prime239v2 "prime239v2"
|
316
|
+
#define NID_X9_62_prime239v2 413
|
317
|
+
#define OBJ_X9_62_prime239v2 OBJ_X9_62_primeCurve,5L
|
318
|
+
|
319
|
+
#define SN_X9_62_prime239v3 "prime239v3"
|
320
|
+
#define NID_X9_62_prime239v3 414
|
321
|
+
#define OBJ_X9_62_prime239v3 OBJ_X9_62_primeCurve,6L
|
322
|
+
|
323
|
+
#define SN_X9_62_prime256v1 "prime256v1"
|
324
|
+
#define NID_X9_62_prime256v1 415
|
325
|
+
#define OBJ_X9_62_prime256v1 OBJ_X9_62_primeCurve,7L
|
326
|
+
|
327
|
+
#define OBJ_X9_62_id_ecSigType OBJ_ansi_X9_62,4L
|
328
|
+
|
329
|
+
#define SN_ecdsa_with_SHA1 "ecdsa-with-SHA1"
|
330
|
+
#define NID_ecdsa_with_SHA1 416
|
331
|
+
#define OBJ_ecdsa_with_SHA1 OBJ_X9_62_id_ecSigType,1L
|
332
|
+
|
333
|
+
#define SN_ecdsa_with_Recommended "ecdsa-with-Recommended"
|
334
|
+
#define NID_ecdsa_with_Recommended 791
|
335
|
+
#define OBJ_ecdsa_with_Recommended OBJ_X9_62_id_ecSigType,2L
|
336
|
+
|
337
|
+
#define SN_ecdsa_with_Specified "ecdsa-with-Specified"
|
338
|
+
#define NID_ecdsa_with_Specified 792
|
339
|
+
#define OBJ_ecdsa_with_Specified OBJ_X9_62_id_ecSigType,3L
|
340
|
+
|
341
|
+
#define SN_ecdsa_with_SHA224 "ecdsa-with-SHA224"
|
342
|
+
#define NID_ecdsa_with_SHA224 793
|
343
|
+
#define OBJ_ecdsa_with_SHA224 OBJ_ecdsa_with_Specified,1L
|
344
|
+
|
345
|
+
#define SN_ecdsa_with_SHA256 "ecdsa-with-SHA256"
|
346
|
+
#define NID_ecdsa_with_SHA256 794
|
347
|
+
#define OBJ_ecdsa_with_SHA256 OBJ_ecdsa_with_Specified,2L
|
348
|
+
|
349
|
+
#define SN_ecdsa_with_SHA384 "ecdsa-with-SHA384"
|
350
|
+
#define NID_ecdsa_with_SHA384 795
|
351
|
+
#define OBJ_ecdsa_with_SHA384 OBJ_ecdsa_with_Specified,3L
|
352
|
+
|
353
|
+
#define SN_ecdsa_with_SHA512 "ecdsa-with-SHA512"
|
354
|
+
#define NID_ecdsa_with_SHA512 796
|
355
|
+
#define OBJ_ecdsa_with_SHA512 OBJ_ecdsa_with_Specified,4L
|
356
|
+
|
357
|
+
#define OBJ_secg_ellipticCurve OBJ_certicom_arc,0L
|
358
|
+
|
359
|
+
#define SN_secp112r1 "secp112r1"
|
360
|
+
#define NID_secp112r1 704
|
361
|
+
#define OBJ_secp112r1 OBJ_secg_ellipticCurve,6L
|
362
|
+
|
363
|
+
#define SN_secp112r2 "secp112r2"
|
364
|
+
#define NID_secp112r2 705
|
365
|
+
#define OBJ_secp112r2 OBJ_secg_ellipticCurve,7L
|
366
|
+
|
367
|
+
#define SN_secp128r1 "secp128r1"
|
368
|
+
#define NID_secp128r1 706
|
369
|
+
#define OBJ_secp128r1 OBJ_secg_ellipticCurve,28L
|
370
|
+
|
371
|
+
#define SN_secp128r2 "secp128r2"
|
372
|
+
#define NID_secp128r2 707
|
373
|
+
#define OBJ_secp128r2 OBJ_secg_ellipticCurve,29L
|
374
|
+
|
375
|
+
#define SN_secp160k1 "secp160k1"
|
376
|
+
#define NID_secp160k1 708
|
377
|
+
#define OBJ_secp160k1 OBJ_secg_ellipticCurve,9L
|
378
|
+
|
379
|
+
#define SN_secp160r1 "secp160r1"
|
380
|
+
#define NID_secp160r1 709
|
381
|
+
#define OBJ_secp160r1 OBJ_secg_ellipticCurve,8L
|
382
|
+
|
383
|
+
#define SN_secp160r2 "secp160r2"
|
384
|
+
#define NID_secp160r2 710
|
385
|
+
#define OBJ_secp160r2 OBJ_secg_ellipticCurve,30L
|
386
|
+
|
387
|
+
#define SN_secp192k1 "secp192k1"
|
388
|
+
#define NID_secp192k1 711
|
389
|
+
#define OBJ_secp192k1 OBJ_secg_ellipticCurve,31L
|
390
|
+
|
391
|
+
#define SN_secp224k1 "secp224k1"
|
392
|
+
#define NID_secp224k1 712
|
393
|
+
#define OBJ_secp224k1 OBJ_secg_ellipticCurve,32L
|
394
|
+
|
395
|
+
#define SN_secp224r1 "secp224r1"
|
396
|
+
#define NID_secp224r1 713
|
397
|
+
#define OBJ_secp224r1 OBJ_secg_ellipticCurve,33L
|
398
|
+
|
399
|
+
#define SN_secp256k1 "secp256k1"
|
400
|
+
#define NID_secp256k1 714
|
401
|
+
#define OBJ_secp256k1 OBJ_secg_ellipticCurve,10L
|
402
|
+
|
403
|
+
#define SN_secp384r1 "secp384r1"
|
404
|
+
#define NID_secp384r1 715
|
405
|
+
#define OBJ_secp384r1 OBJ_secg_ellipticCurve,34L
|
406
|
+
|
407
|
+
#define SN_secp521r1 "secp521r1"
|
408
|
+
#define NID_secp521r1 716
|
409
|
+
#define OBJ_secp521r1 OBJ_secg_ellipticCurve,35L
|
410
|
+
|
411
|
+
#define SN_sect113r1 "sect113r1"
|
412
|
+
#define NID_sect113r1 717
|
413
|
+
#define OBJ_sect113r1 OBJ_secg_ellipticCurve,4L
|
414
|
+
|
415
|
+
#define SN_sect113r2 "sect113r2"
|
416
|
+
#define NID_sect113r2 718
|
417
|
+
#define OBJ_sect113r2 OBJ_secg_ellipticCurve,5L
|
418
|
+
|
419
|
+
#define SN_sect131r1 "sect131r1"
|
420
|
+
#define NID_sect131r1 719
|
421
|
+
#define OBJ_sect131r1 OBJ_secg_ellipticCurve,22L
|
422
|
+
|
423
|
+
#define SN_sect131r2 "sect131r2"
|
424
|
+
#define NID_sect131r2 720
|
425
|
+
#define OBJ_sect131r2 OBJ_secg_ellipticCurve,23L
|
426
|
+
|
427
|
+
#define SN_sect163k1 "sect163k1"
|
428
|
+
#define NID_sect163k1 721
|
429
|
+
#define OBJ_sect163k1 OBJ_secg_ellipticCurve,1L
|
430
|
+
|
431
|
+
#define SN_sect163r1 "sect163r1"
|
432
|
+
#define NID_sect163r1 722
|
433
|
+
#define OBJ_sect163r1 OBJ_secg_ellipticCurve,2L
|
434
|
+
|
435
|
+
#define SN_sect163r2 "sect163r2"
|
436
|
+
#define NID_sect163r2 723
|
437
|
+
#define OBJ_sect163r2 OBJ_secg_ellipticCurve,15L
|
438
|
+
|
439
|
+
#define SN_sect193r1 "sect193r1"
|
440
|
+
#define NID_sect193r1 724
|
441
|
+
#define OBJ_sect193r1 OBJ_secg_ellipticCurve,24L
|
442
|
+
|
443
|
+
#define SN_sect193r2 "sect193r2"
|
444
|
+
#define NID_sect193r2 725
|
445
|
+
#define OBJ_sect193r2 OBJ_secg_ellipticCurve,25L
|
446
|
+
|
447
|
+
#define SN_sect233k1 "sect233k1"
|
448
|
+
#define NID_sect233k1 726
|
449
|
+
#define OBJ_sect233k1 OBJ_secg_ellipticCurve,26L
|
450
|
+
|
451
|
+
#define SN_sect233r1 "sect233r1"
|
452
|
+
#define NID_sect233r1 727
|
453
|
+
#define OBJ_sect233r1 OBJ_secg_ellipticCurve,27L
|
454
|
+
|
455
|
+
#define SN_sect239k1 "sect239k1"
|
456
|
+
#define NID_sect239k1 728
|
457
|
+
#define OBJ_sect239k1 OBJ_secg_ellipticCurve,3L
|
458
|
+
|
459
|
+
#define SN_sect283k1 "sect283k1"
|
460
|
+
#define NID_sect283k1 729
|
461
|
+
#define OBJ_sect283k1 OBJ_secg_ellipticCurve,16L
|
462
|
+
|
463
|
+
#define SN_sect283r1 "sect283r1"
|
464
|
+
#define NID_sect283r1 730
|
465
|
+
#define OBJ_sect283r1 OBJ_secg_ellipticCurve,17L
|
466
|
+
|
467
|
+
#define SN_sect409k1 "sect409k1"
|
468
|
+
#define NID_sect409k1 731
|
469
|
+
#define OBJ_sect409k1 OBJ_secg_ellipticCurve,36L
|
470
|
+
|
471
|
+
#define SN_sect409r1 "sect409r1"
|
472
|
+
#define NID_sect409r1 732
|
473
|
+
#define OBJ_sect409r1 OBJ_secg_ellipticCurve,37L
|
474
|
+
|
475
|
+
#define SN_sect571k1 "sect571k1"
|
476
|
+
#define NID_sect571k1 733
|
477
|
+
#define OBJ_sect571k1 OBJ_secg_ellipticCurve,38L
|
478
|
+
|
479
|
+
#define SN_sect571r1 "sect571r1"
|
480
|
+
#define NID_sect571r1 734
|
481
|
+
#define OBJ_sect571r1 OBJ_secg_ellipticCurve,39L
|
482
|
+
|
483
|
+
#define OBJ_wap_wsg_idm_ecid OBJ_wap_wsg,4L
|
484
|
+
|
485
|
+
#define SN_wap_wsg_idm_ecid_wtls1 "wap-wsg-idm-ecid-wtls1"
|
486
|
+
#define NID_wap_wsg_idm_ecid_wtls1 735
|
487
|
+
#define OBJ_wap_wsg_idm_ecid_wtls1 OBJ_wap_wsg_idm_ecid,1L
|
488
|
+
|
489
|
+
#define SN_wap_wsg_idm_ecid_wtls3 "wap-wsg-idm-ecid-wtls3"
|
490
|
+
#define NID_wap_wsg_idm_ecid_wtls3 736
|
491
|
+
#define OBJ_wap_wsg_idm_ecid_wtls3 OBJ_wap_wsg_idm_ecid,3L
|
492
|
+
|
493
|
+
#define SN_wap_wsg_idm_ecid_wtls4 "wap-wsg-idm-ecid-wtls4"
|
494
|
+
#define NID_wap_wsg_idm_ecid_wtls4 737
|
495
|
+
#define OBJ_wap_wsg_idm_ecid_wtls4 OBJ_wap_wsg_idm_ecid,4L
|
496
|
+
|
497
|
+
#define SN_wap_wsg_idm_ecid_wtls5 "wap-wsg-idm-ecid-wtls5"
|
498
|
+
#define NID_wap_wsg_idm_ecid_wtls5 738
|
499
|
+
#define OBJ_wap_wsg_idm_ecid_wtls5 OBJ_wap_wsg_idm_ecid,5L
|
500
|
+
|
501
|
+
#define SN_wap_wsg_idm_ecid_wtls6 "wap-wsg-idm-ecid-wtls6"
|
502
|
+
#define NID_wap_wsg_idm_ecid_wtls6 739
|
503
|
+
#define OBJ_wap_wsg_idm_ecid_wtls6 OBJ_wap_wsg_idm_ecid,6L
|
504
|
+
|
505
|
+
#define SN_wap_wsg_idm_ecid_wtls7 "wap-wsg-idm-ecid-wtls7"
|
506
|
+
#define NID_wap_wsg_idm_ecid_wtls7 740
|
507
|
+
#define OBJ_wap_wsg_idm_ecid_wtls7 OBJ_wap_wsg_idm_ecid,7L
|
508
|
+
|
509
|
+
#define SN_wap_wsg_idm_ecid_wtls8 "wap-wsg-idm-ecid-wtls8"
|
510
|
+
#define NID_wap_wsg_idm_ecid_wtls8 741
|
511
|
+
#define OBJ_wap_wsg_idm_ecid_wtls8 OBJ_wap_wsg_idm_ecid,8L
|
512
|
+
|
513
|
+
#define SN_wap_wsg_idm_ecid_wtls9 "wap-wsg-idm-ecid-wtls9"
|
514
|
+
#define NID_wap_wsg_idm_ecid_wtls9 742
|
515
|
+
#define OBJ_wap_wsg_idm_ecid_wtls9 OBJ_wap_wsg_idm_ecid,9L
|
516
|
+
|
517
|
+
#define SN_wap_wsg_idm_ecid_wtls10 "wap-wsg-idm-ecid-wtls10"
|
518
|
+
#define NID_wap_wsg_idm_ecid_wtls10 743
|
519
|
+
#define OBJ_wap_wsg_idm_ecid_wtls10 OBJ_wap_wsg_idm_ecid,10L
|
520
|
+
|
521
|
+
#define SN_wap_wsg_idm_ecid_wtls11 "wap-wsg-idm-ecid-wtls11"
|
522
|
+
#define NID_wap_wsg_idm_ecid_wtls11 744
|
523
|
+
#define OBJ_wap_wsg_idm_ecid_wtls11 OBJ_wap_wsg_idm_ecid,11L
|
524
|
+
|
525
|
+
#define SN_wap_wsg_idm_ecid_wtls12 "wap-wsg-idm-ecid-wtls12"
|
526
|
+
#define NID_wap_wsg_idm_ecid_wtls12 745
|
527
|
+
#define OBJ_wap_wsg_idm_ecid_wtls12 OBJ_wap_wsg_idm_ecid,12L
|
528
|
+
|
529
|
+
#define SN_cast5_cbc "CAST5-CBC"
|
530
|
+
#define LN_cast5_cbc "cast5-cbc"
|
531
|
+
#define NID_cast5_cbc 108
|
532
|
+
#define OBJ_cast5_cbc OBJ_ISO_US,113533L,7L,66L,10L
|
533
|
+
|
534
|
+
#define SN_cast5_ecb "CAST5-ECB"
|
535
|
+
#define LN_cast5_ecb "cast5-ecb"
|
536
|
+
#define NID_cast5_ecb 109
|
537
|
+
|
538
|
+
#define SN_cast5_cfb64 "CAST5-CFB"
|
539
|
+
#define LN_cast5_cfb64 "cast5-cfb"
|
540
|
+
#define NID_cast5_cfb64 110
|
541
|
+
|
542
|
+
#define SN_cast5_ofb64 "CAST5-OFB"
|
543
|
+
#define LN_cast5_ofb64 "cast5-ofb"
|
544
|
+
#define NID_cast5_ofb64 111
|
545
|
+
|
546
|
+
#define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC"
|
547
|
+
#define NID_pbeWithMD5AndCast5_CBC 112
|
548
|
+
#define OBJ_pbeWithMD5AndCast5_CBC OBJ_ISO_US,113533L,7L,66L,12L
|
549
|
+
|
550
|
+
#define SN_id_PasswordBasedMAC "id-PasswordBasedMAC"
|
551
|
+
#define LN_id_PasswordBasedMAC "password based MAC"
|
552
|
+
#define NID_id_PasswordBasedMAC 782
|
553
|
+
#define OBJ_id_PasswordBasedMAC OBJ_ISO_US,113533L,7L,66L,13L
|
554
|
+
|
555
|
+
#define SN_id_DHBasedMac "id-DHBasedMac"
|
556
|
+
#define LN_id_DHBasedMac "Diffie-Hellman based MAC"
|
557
|
+
#define NID_id_DHBasedMac 783
|
558
|
+
#define OBJ_id_DHBasedMac OBJ_ISO_US,113533L,7L,66L,30L
|
559
|
+
|
560
|
+
#define SN_rsadsi "rsadsi"
|
561
|
+
#define LN_rsadsi "RSA Data Security, Inc."
|
562
|
+
#define NID_rsadsi 1
|
563
|
+
#define OBJ_rsadsi OBJ_ISO_US,113549L
|
564
|
+
|
565
|
+
#define SN_pkcs "pkcs"
|
566
|
+
#define LN_pkcs "RSA Data Security, Inc. PKCS"
|
567
|
+
#define NID_pkcs 2
|
568
|
+
#define OBJ_pkcs OBJ_rsadsi,1L
|
569
|
+
|
570
|
+
#define SN_pkcs1 "pkcs1"
|
571
|
+
#define NID_pkcs1 186
|
572
|
+
#define OBJ_pkcs1 OBJ_pkcs,1L
|
573
|
+
|
574
|
+
#define LN_rsaEncryption "rsaEncryption"
|
575
|
+
#define NID_rsaEncryption 6
|
576
|
+
#define OBJ_rsaEncryption OBJ_pkcs1,1L
|
577
|
+
|
578
|
+
#define SN_md2WithRSAEncryption "RSA-MD2"
|
579
|
+
#define LN_md2WithRSAEncryption "md2WithRSAEncryption"
|
580
|
+
#define NID_md2WithRSAEncryption 7
|
581
|
+
#define OBJ_md2WithRSAEncryption OBJ_pkcs1,2L
|
582
|
+
|
583
|
+
#define SN_md4WithRSAEncryption "RSA-MD4"
|
584
|
+
#define LN_md4WithRSAEncryption "md4WithRSAEncryption"
|
585
|
+
#define NID_md4WithRSAEncryption 396
|
586
|
+
#define OBJ_md4WithRSAEncryption OBJ_pkcs1,3L
|
587
|
+
|
588
|
+
#define SN_md5WithRSAEncryption "RSA-MD5"
|
589
|
+
#define LN_md5WithRSAEncryption "md5WithRSAEncryption"
|
590
|
+
#define NID_md5WithRSAEncryption 8
|
591
|
+
#define OBJ_md5WithRSAEncryption OBJ_pkcs1,4L
|
592
|
+
|
593
|
+
#define SN_sha1WithRSAEncryption "RSA-SHA1"
|
594
|
+
#define LN_sha1WithRSAEncryption "sha1WithRSAEncryption"
|
595
|
+
#define NID_sha1WithRSAEncryption 65
|
596
|
+
#define OBJ_sha1WithRSAEncryption OBJ_pkcs1,5L
|
597
|
+
|
598
|
+
#define SN_rsaesOaep "RSAES-OAEP"
|
599
|
+
#define LN_rsaesOaep "rsaesOaep"
|
600
|
+
#define NID_rsaesOaep 919
|
601
|
+
#define OBJ_rsaesOaep OBJ_pkcs1,7L
|
602
|
+
|
603
|
+
#define SN_mgf1 "MGF1"
|
604
|
+
#define LN_mgf1 "mgf1"
|
605
|
+
#define NID_mgf1 911
|
606
|
+
#define OBJ_mgf1 OBJ_pkcs1,8L
|
607
|
+
|
608
|
+
#define SN_pSpecified "PSPECIFIED"
|
609
|
+
#define LN_pSpecified "pSpecified"
|
610
|
+
#define NID_pSpecified 935
|
611
|
+
#define OBJ_pSpecified OBJ_pkcs1,9L
|
612
|
+
|
613
|
+
#define SN_rsassaPss "RSASSA-PSS"
|
614
|
+
#define LN_rsassaPss "rsassaPss"
|
615
|
+
#define NID_rsassaPss 912
|
616
|
+
#define OBJ_rsassaPss OBJ_pkcs1,10L
|
617
|
+
|
618
|
+
#define SN_sha256WithRSAEncryption "RSA-SHA256"
|
619
|
+
#define LN_sha256WithRSAEncryption "sha256WithRSAEncryption"
|
620
|
+
#define NID_sha256WithRSAEncryption 668
|
621
|
+
#define OBJ_sha256WithRSAEncryption OBJ_pkcs1,11L
|
622
|
+
|
623
|
+
#define SN_sha384WithRSAEncryption "RSA-SHA384"
|
624
|
+
#define LN_sha384WithRSAEncryption "sha384WithRSAEncryption"
|
625
|
+
#define NID_sha384WithRSAEncryption 669
|
626
|
+
#define OBJ_sha384WithRSAEncryption OBJ_pkcs1,12L
|
627
|
+
|
628
|
+
#define SN_sha512WithRSAEncryption "RSA-SHA512"
|
629
|
+
#define LN_sha512WithRSAEncryption "sha512WithRSAEncryption"
|
630
|
+
#define NID_sha512WithRSAEncryption 670
|
631
|
+
#define OBJ_sha512WithRSAEncryption OBJ_pkcs1,13L
|
632
|
+
|
633
|
+
#define SN_sha224WithRSAEncryption "RSA-SHA224"
|
634
|
+
#define LN_sha224WithRSAEncryption "sha224WithRSAEncryption"
|
635
|
+
#define NID_sha224WithRSAEncryption 671
|
636
|
+
#define OBJ_sha224WithRSAEncryption OBJ_pkcs1,14L
|
637
|
+
|
638
|
+
#define SN_pkcs3 "pkcs3"
|
639
|
+
#define NID_pkcs3 27
|
640
|
+
#define OBJ_pkcs3 OBJ_pkcs,3L
|
641
|
+
|
642
|
+
#define LN_dhKeyAgreement "dhKeyAgreement"
|
643
|
+
#define NID_dhKeyAgreement 28
|
644
|
+
#define OBJ_dhKeyAgreement OBJ_pkcs3,1L
|
645
|
+
|
646
|
+
#define SN_pkcs5 "pkcs5"
|
647
|
+
#define NID_pkcs5 187
|
648
|
+
#define OBJ_pkcs5 OBJ_pkcs,5L
|
649
|
+
|
650
|
+
#define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES"
|
651
|
+
#define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC"
|
652
|
+
#define NID_pbeWithMD2AndDES_CBC 9
|
653
|
+
#define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs5,1L
|
654
|
+
|
655
|
+
#define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES"
|
656
|
+
#define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC"
|
657
|
+
#define NID_pbeWithMD5AndDES_CBC 10
|
658
|
+
#define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs5,3L
|
659
|
+
|
660
|
+
#define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64"
|
661
|
+
#define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC"
|
662
|
+
#define NID_pbeWithMD2AndRC2_CBC 168
|
663
|
+
#define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs5,4L
|
664
|
+
|
665
|
+
#define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64"
|
666
|
+
#define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC"
|
667
|
+
#define NID_pbeWithMD5AndRC2_CBC 169
|
668
|
+
#define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs5,6L
|
669
|
+
|
670
|
+
#define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES"
|
671
|
+
#define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC"
|
672
|
+
#define NID_pbeWithSHA1AndDES_CBC 170
|
673
|
+
#define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs5,10L
|
674
|
+
|
675
|
+
#define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64"
|
676
|
+
#define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC"
|
677
|
+
#define NID_pbeWithSHA1AndRC2_CBC 68
|
678
|
+
#define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs5,11L
|
679
|
+
|
680
|
+
#define LN_id_pbkdf2 "PBKDF2"
|
681
|
+
#define NID_id_pbkdf2 69
|
682
|
+
#define OBJ_id_pbkdf2 OBJ_pkcs5,12L
|
683
|
+
|
684
|
+
#define LN_pbes2 "PBES2"
|
685
|
+
#define NID_pbes2 161
|
686
|
+
#define OBJ_pbes2 OBJ_pkcs5,13L
|
687
|
+
|
688
|
+
#define LN_pbmac1 "PBMAC1"
|
689
|
+
#define NID_pbmac1 162
|
690
|
+
#define OBJ_pbmac1 OBJ_pkcs5,14L
|
691
|
+
|
692
|
+
#define SN_pkcs7 "pkcs7"
|
693
|
+
#define NID_pkcs7 20
|
694
|
+
#define OBJ_pkcs7 OBJ_pkcs,7L
|
695
|
+
|
696
|
+
#define LN_pkcs7_data "pkcs7-data"
|
697
|
+
#define NID_pkcs7_data 21
|
698
|
+
#define OBJ_pkcs7_data OBJ_pkcs7,1L
|
699
|
+
|
700
|
+
#define LN_pkcs7_signed "pkcs7-signedData"
|
701
|
+
#define NID_pkcs7_signed 22
|
702
|
+
#define OBJ_pkcs7_signed OBJ_pkcs7,2L
|
703
|
+
|
704
|
+
#define LN_pkcs7_enveloped "pkcs7-envelopedData"
|
705
|
+
#define NID_pkcs7_enveloped 23
|
706
|
+
#define OBJ_pkcs7_enveloped OBJ_pkcs7,3L
|
707
|
+
|
708
|
+
#define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData"
|
709
|
+
#define NID_pkcs7_signedAndEnveloped 24
|
710
|
+
#define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L
|
711
|
+
|
712
|
+
#define LN_pkcs7_digest "pkcs7-digestData"
|
713
|
+
#define NID_pkcs7_digest 25
|
714
|
+
#define OBJ_pkcs7_digest OBJ_pkcs7,5L
|
715
|
+
|
716
|
+
#define LN_pkcs7_encrypted "pkcs7-encryptedData"
|
717
|
+
#define NID_pkcs7_encrypted 26
|
718
|
+
#define OBJ_pkcs7_encrypted OBJ_pkcs7,6L
|
719
|
+
|
720
|
+
#define SN_pkcs9 "pkcs9"
|
721
|
+
#define NID_pkcs9 47
|
722
|
+
#define OBJ_pkcs9 OBJ_pkcs,9L
|
723
|
+
|
724
|
+
#define LN_pkcs9_emailAddress "emailAddress"
|
725
|
+
#define NID_pkcs9_emailAddress 48
|
726
|
+
#define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L
|
727
|
+
|
728
|
+
#define LN_pkcs9_unstructuredName "unstructuredName"
|
729
|
+
#define NID_pkcs9_unstructuredName 49
|
730
|
+
#define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L
|
731
|
+
|
732
|
+
#define LN_pkcs9_contentType "contentType"
|
733
|
+
#define NID_pkcs9_contentType 50
|
734
|
+
#define OBJ_pkcs9_contentType OBJ_pkcs9,3L
|
735
|
+
|
736
|
+
#define LN_pkcs9_messageDigest "messageDigest"
|
737
|
+
#define NID_pkcs9_messageDigest 51
|
738
|
+
#define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L
|
739
|
+
|
740
|
+
#define LN_pkcs9_signingTime "signingTime"
|
741
|
+
#define NID_pkcs9_signingTime 52
|
742
|
+
#define OBJ_pkcs9_signingTime OBJ_pkcs9,5L
|
743
|
+
|
744
|
+
#define LN_pkcs9_countersignature "countersignature"
|
745
|
+
#define NID_pkcs9_countersignature 53
|
746
|
+
#define OBJ_pkcs9_countersignature OBJ_pkcs9,6L
|
747
|
+
|
748
|
+
#define LN_pkcs9_challengePassword "challengePassword"
|
749
|
+
#define NID_pkcs9_challengePassword 54
|
750
|
+
#define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L
|
751
|
+
|
752
|
+
#define LN_pkcs9_unstructuredAddress "unstructuredAddress"
|
753
|
+
#define NID_pkcs9_unstructuredAddress 55
|
754
|
+
#define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L
|
755
|
+
|
756
|
+
#define LN_pkcs9_extCertAttributes "extendedCertificateAttributes"
|
757
|
+
#define NID_pkcs9_extCertAttributes 56
|
758
|
+
#define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L
|
759
|
+
|
760
|
+
#define SN_ext_req "extReq"
|
761
|
+
#define LN_ext_req "Extension Request"
|
762
|
+
#define NID_ext_req 172
|
763
|
+
#define OBJ_ext_req OBJ_pkcs9,14L
|
764
|
+
|
765
|
+
#define SN_SMIMECapabilities "SMIME-CAPS"
|
766
|
+
#define LN_SMIMECapabilities "S/MIME Capabilities"
|
767
|
+
#define NID_SMIMECapabilities 167
|
768
|
+
#define OBJ_SMIMECapabilities OBJ_pkcs9,15L
|
769
|
+
|
770
|
+
#define SN_SMIME "SMIME"
|
771
|
+
#define LN_SMIME "S/MIME"
|
772
|
+
#define NID_SMIME 188
|
773
|
+
#define OBJ_SMIME OBJ_pkcs9,16L
|
774
|
+
|
775
|
+
#define SN_id_smime_mod "id-smime-mod"
|
776
|
+
#define NID_id_smime_mod 189
|
777
|
+
#define OBJ_id_smime_mod OBJ_SMIME,0L
|
778
|
+
|
779
|
+
#define SN_id_smime_ct "id-smime-ct"
|
780
|
+
#define NID_id_smime_ct 190
|
781
|
+
#define OBJ_id_smime_ct OBJ_SMIME,1L
|
782
|
+
|
783
|
+
#define SN_id_smime_aa "id-smime-aa"
|
784
|
+
#define NID_id_smime_aa 191
|
785
|
+
#define OBJ_id_smime_aa OBJ_SMIME,2L
|
786
|
+
|
787
|
+
#define SN_id_smime_alg "id-smime-alg"
|
788
|
+
#define NID_id_smime_alg 192
|
789
|
+
#define OBJ_id_smime_alg OBJ_SMIME,3L
|
790
|
+
|
791
|
+
#define SN_id_smime_cd "id-smime-cd"
|
792
|
+
#define NID_id_smime_cd 193
|
793
|
+
#define OBJ_id_smime_cd OBJ_SMIME,4L
|
794
|
+
|
795
|
+
#define SN_id_smime_spq "id-smime-spq"
|
796
|
+
#define NID_id_smime_spq 194
|
797
|
+
#define OBJ_id_smime_spq OBJ_SMIME,5L
|
798
|
+
|
799
|
+
#define SN_id_smime_cti "id-smime-cti"
|
800
|
+
#define NID_id_smime_cti 195
|
801
|
+
#define OBJ_id_smime_cti OBJ_SMIME,6L
|
802
|
+
|
803
|
+
#define SN_id_smime_mod_cms "id-smime-mod-cms"
|
804
|
+
#define NID_id_smime_mod_cms 196
|
805
|
+
#define OBJ_id_smime_mod_cms OBJ_id_smime_mod,1L
|
806
|
+
|
807
|
+
#define SN_id_smime_mod_ess "id-smime-mod-ess"
|
808
|
+
#define NID_id_smime_mod_ess 197
|
809
|
+
#define OBJ_id_smime_mod_ess OBJ_id_smime_mod,2L
|
810
|
+
|
811
|
+
#define SN_id_smime_mod_oid "id-smime-mod-oid"
|
812
|
+
#define NID_id_smime_mod_oid 198
|
813
|
+
#define OBJ_id_smime_mod_oid OBJ_id_smime_mod,3L
|
814
|
+
|
815
|
+
#define SN_id_smime_mod_msg_v3 "id-smime-mod-msg-v3"
|
816
|
+
#define NID_id_smime_mod_msg_v3 199
|
817
|
+
#define OBJ_id_smime_mod_msg_v3 OBJ_id_smime_mod,4L
|
818
|
+
|
819
|
+
#define SN_id_smime_mod_ets_eSignature_88 "id-smime-mod-ets-eSignature-88"
|
820
|
+
#define NID_id_smime_mod_ets_eSignature_88 200
|
821
|
+
#define OBJ_id_smime_mod_ets_eSignature_88 OBJ_id_smime_mod,5L
|
822
|
+
|
823
|
+
#define SN_id_smime_mod_ets_eSignature_97 "id-smime-mod-ets-eSignature-97"
|
824
|
+
#define NID_id_smime_mod_ets_eSignature_97 201
|
825
|
+
#define OBJ_id_smime_mod_ets_eSignature_97 OBJ_id_smime_mod,6L
|
826
|
+
|
827
|
+
#define SN_id_smime_mod_ets_eSigPolicy_88 "id-smime-mod-ets-eSigPolicy-88"
|
828
|
+
#define NID_id_smime_mod_ets_eSigPolicy_88 202
|
829
|
+
#define OBJ_id_smime_mod_ets_eSigPolicy_88 OBJ_id_smime_mod,7L
|
830
|
+
|
831
|
+
#define SN_id_smime_mod_ets_eSigPolicy_97 "id-smime-mod-ets-eSigPolicy-97"
|
832
|
+
#define NID_id_smime_mod_ets_eSigPolicy_97 203
|
833
|
+
#define OBJ_id_smime_mod_ets_eSigPolicy_97 OBJ_id_smime_mod,8L
|
834
|
+
|
835
|
+
#define SN_id_smime_ct_receipt "id-smime-ct-receipt"
|
836
|
+
#define NID_id_smime_ct_receipt 204
|
837
|
+
#define OBJ_id_smime_ct_receipt OBJ_id_smime_ct,1L
|
838
|
+
|
839
|
+
#define SN_id_smime_ct_authData "id-smime-ct-authData"
|
840
|
+
#define NID_id_smime_ct_authData 205
|
841
|
+
#define OBJ_id_smime_ct_authData OBJ_id_smime_ct,2L
|
842
|
+
|
843
|
+
#define SN_id_smime_ct_publishCert "id-smime-ct-publishCert"
|
844
|
+
#define NID_id_smime_ct_publishCert 206
|
845
|
+
#define OBJ_id_smime_ct_publishCert OBJ_id_smime_ct,3L
|
846
|
+
|
847
|
+
#define SN_id_smime_ct_TSTInfo "id-smime-ct-TSTInfo"
|
848
|
+
#define NID_id_smime_ct_TSTInfo 207
|
849
|
+
#define OBJ_id_smime_ct_TSTInfo OBJ_id_smime_ct,4L
|
850
|
+
|
851
|
+
#define SN_id_smime_ct_TDTInfo "id-smime-ct-TDTInfo"
|
852
|
+
#define NID_id_smime_ct_TDTInfo 208
|
853
|
+
#define OBJ_id_smime_ct_TDTInfo OBJ_id_smime_ct,5L
|
854
|
+
|
855
|
+
#define SN_id_smime_ct_contentInfo "id-smime-ct-contentInfo"
|
856
|
+
#define NID_id_smime_ct_contentInfo 209
|
857
|
+
#define OBJ_id_smime_ct_contentInfo OBJ_id_smime_ct,6L
|
858
|
+
|
859
|
+
#define SN_id_smime_ct_DVCSRequestData "id-smime-ct-DVCSRequestData"
|
860
|
+
#define NID_id_smime_ct_DVCSRequestData 210
|
861
|
+
#define OBJ_id_smime_ct_DVCSRequestData OBJ_id_smime_ct,7L
|
862
|
+
|
863
|
+
#define SN_id_smime_ct_DVCSResponseData "id-smime-ct-DVCSResponseData"
|
864
|
+
#define NID_id_smime_ct_DVCSResponseData 211
|
865
|
+
#define OBJ_id_smime_ct_DVCSResponseData OBJ_id_smime_ct,8L
|
866
|
+
|
867
|
+
#define SN_id_smime_ct_compressedData "id-smime-ct-compressedData"
|
868
|
+
#define NID_id_smime_ct_compressedData 786
|
869
|
+
#define OBJ_id_smime_ct_compressedData OBJ_id_smime_ct,9L
|
870
|
+
|
871
|
+
#define SN_id_ct_asciiTextWithCRLF "id-ct-asciiTextWithCRLF"
|
872
|
+
#define NID_id_ct_asciiTextWithCRLF 787
|
873
|
+
#define OBJ_id_ct_asciiTextWithCRLF OBJ_id_smime_ct,27L
|
874
|
+
|
875
|
+
#define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest"
|
876
|
+
#define NID_id_smime_aa_receiptRequest 212
|
877
|
+
#define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L
|
878
|
+
|
879
|
+
#define SN_id_smime_aa_securityLabel "id-smime-aa-securityLabel"
|
880
|
+
#define NID_id_smime_aa_securityLabel 213
|
881
|
+
#define OBJ_id_smime_aa_securityLabel OBJ_id_smime_aa,2L
|
882
|
+
|
883
|
+
#define SN_id_smime_aa_mlExpandHistory "id-smime-aa-mlExpandHistory"
|
884
|
+
#define NID_id_smime_aa_mlExpandHistory 214
|
885
|
+
#define OBJ_id_smime_aa_mlExpandHistory OBJ_id_smime_aa,3L
|
886
|
+
|
887
|
+
#define SN_id_smime_aa_contentHint "id-smime-aa-contentHint"
|
888
|
+
#define NID_id_smime_aa_contentHint 215
|
889
|
+
#define OBJ_id_smime_aa_contentHint OBJ_id_smime_aa,4L
|
890
|
+
|
891
|
+
#define SN_id_smime_aa_msgSigDigest "id-smime-aa-msgSigDigest"
|
892
|
+
#define NID_id_smime_aa_msgSigDigest 216
|
893
|
+
#define OBJ_id_smime_aa_msgSigDigest OBJ_id_smime_aa,5L
|
894
|
+
|
895
|
+
#define SN_id_smime_aa_encapContentType "id-smime-aa-encapContentType"
|
896
|
+
#define NID_id_smime_aa_encapContentType 217
|
897
|
+
#define OBJ_id_smime_aa_encapContentType OBJ_id_smime_aa,6L
|
898
|
+
|
899
|
+
#define SN_id_smime_aa_contentIdentifier "id-smime-aa-contentIdentifier"
|
900
|
+
#define NID_id_smime_aa_contentIdentifier 218
|
901
|
+
#define OBJ_id_smime_aa_contentIdentifier OBJ_id_smime_aa,7L
|
902
|
+
|
903
|
+
#define SN_id_smime_aa_macValue "id-smime-aa-macValue"
|
904
|
+
#define NID_id_smime_aa_macValue 219
|
905
|
+
#define OBJ_id_smime_aa_macValue OBJ_id_smime_aa,8L
|
906
|
+
|
907
|
+
#define SN_id_smime_aa_equivalentLabels "id-smime-aa-equivalentLabels"
|
908
|
+
#define NID_id_smime_aa_equivalentLabels 220
|
909
|
+
#define OBJ_id_smime_aa_equivalentLabels OBJ_id_smime_aa,9L
|
910
|
+
|
911
|
+
#define SN_id_smime_aa_contentReference "id-smime-aa-contentReference"
|
912
|
+
#define NID_id_smime_aa_contentReference 221
|
913
|
+
#define OBJ_id_smime_aa_contentReference OBJ_id_smime_aa,10L
|
914
|
+
|
915
|
+
#define SN_id_smime_aa_encrypKeyPref "id-smime-aa-encrypKeyPref"
|
916
|
+
#define NID_id_smime_aa_encrypKeyPref 222
|
917
|
+
#define OBJ_id_smime_aa_encrypKeyPref OBJ_id_smime_aa,11L
|
918
|
+
|
919
|
+
#define SN_id_smime_aa_signingCertificate "id-smime-aa-signingCertificate"
|
920
|
+
#define NID_id_smime_aa_signingCertificate 223
|
921
|
+
#define OBJ_id_smime_aa_signingCertificate OBJ_id_smime_aa,12L
|
922
|
+
|
923
|
+
#define SN_id_smime_aa_smimeEncryptCerts "id-smime-aa-smimeEncryptCerts"
|
924
|
+
#define NID_id_smime_aa_smimeEncryptCerts 224
|
925
|
+
#define OBJ_id_smime_aa_smimeEncryptCerts OBJ_id_smime_aa,13L
|
926
|
+
|
927
|
+
#define SN_id_smime_aa_timeStampToken "id-smime-aa-timeStampToken"
|
928
|
+
#define NID_id_smime_aa_timeStampToken 225
|
929
|
+
#define OBJ_id_smime_aa_timeStampToken OBJ_id_smime_aa,14L
|
930
|
+
|
931
|
+
#define SN_id_smime_aa_ets_sigPolicyId "id-smime-aa-ets-sigPolicyId"
|
932
|
+
#define NID_id_smime_aa_ets_sigPolicyId 226
|
933
|
+
#define OBJ_id_smime_aa_ets_sigPolicyId OBJ_id_smime_aa,15L
|
934
|
+
|
935
|
+
#define SN_id_smime_aa_ets_commitmentType "id-smime-aa-ets-commitmentType"
|
936
|
+
#define NID_id_smime_aa_ets_commitmentType 227
|
937
|
+
#define OBJ_id_smime_aa_ets_commitmentType OBJ_id_smime_aa,16L
|
938
|
+
|
939
|
+
#define SN_id_smime_aa_ets_signerLocation "id-smime-aa-ets-signerLocation"
|
940
|
+
#define NID_id_smime_aa_ets_signerLocation 228
|
941
|
+
#define OBJ_id_smime_aa_ets_signerLocation OBJ_id_smime_aa,17L
|
942
|
+
|
943
|
+
#define SN_id_smime_aa_ets_signerAttr "id-smime-aa-ets-signerAttr"
|
944
|
+
#define NID_id_smime_aa_ets_signerAttr 229
|
945
|
+
#define OBJ_id_smime_aa_ets_signerAttr OBJ_id_smime_aa,18L
|
946
|
+
|
947
|
+
#define SN_id_smime_aa_ets_otherSigCert "id-smime-aa-ets-otherSigCert"
|
948
|
+
#define NID_id_smime_aa_ets_otherSigCert 230
|
949
|
+
#define OBJ_id_smime_aa_ets_otherSigCert OBJ_id_smime_aa,19L
|
950
|
+
|
951
|
+
#define SN_id_smime_aa_ets_contentTimestamp "id-smime-aa-ets-contentTimestamp"
|
952
|
+
#define NID_id_smime_aa_ets_contentTimestamp 231
|
953
|
+
#define OBJ_id_smime_aa_ets_contentTimestamp OBJ_id_smime_aa,20L
|
954
|
+
|
955
|
+
#define SN_id_smime_aa_ets_CertificateRefs "id-smime-aa-ets-CertificateRefs"
|
956
|
+
#define NID_id_smime_aa_ets_CertificateRefs 232
|
957
|
+
#define OBJ_id_smime_aa_ets_CertificateRefs OBJ_id_smime_aa,21L
|
958
|
+
|
959
|
+
#define SN_id_smime_aa_ets_RevocationRefs "id-smime-aa-ets-RevocationRefs"
|
960
|
+
#define NID_id_smime_aa_ets_RevocationRefs 233
|
961
|
+
#define OBJ_id_smime_aa_ets_RevocationRefs OBJ_id_smime_aa,22L
|
962
|
+
|
963
|
+
#define SN_id_smime_aa_ets_certValues "id-smime-aa-ets-certValues"
|
964
|
+
#define NID_id_smime_aa_ets_certValues 234
|
965
|
+
#define OBJ_id_smime_aa_ets_certValues OBJ_id_smime_aa,23L
|
966
|
+
|
967
|
+
#define SN_id_smime_aa_ets_revocationValues "id-smime-aa-ets-revocationValues"
|
968
|
+
#define NID_id_smime_aa_ets_revocationValues 235
|
969
|
+
#define OBJ_id_smime_aa_ets_revocationValues OBJ_id_smime_aa,24L
|
970
|
+
|
971
|
+
#define SN_id_smime_aa_ets_escTimeStamp "id-smime-aa-ets-escTimeStamp"
|
972
|
+
#define NID_id_smime_aa_ets_escTimeStamp 236
|
973
|
+
#define OBJ_id_smime_aa_ets_escTimeStamp OBJ_id_smime_aa,25L
|
974
|
+
|
975
|
+
#define SN_id_smime_aa_ets_certCRLTimestamp "id-smime-aa-ets-certCRLTimestamp"
|
976
|
+
#define NID_id_smime_aa_ets_certCRLTimestamp 237
|
977
|
+
#define OBJ_id_smime_aa_ets_certCRLTimestamp OBJ_id_smime_aa,26L
|
978
|
+
|
979
|
+
#define SN_id_smime_aa_ets_archiveTimeStamp "id-smime-aa-ets-archiveTimeStamp"
|
980
|
+
#define NID_id_smime_aa_ets_archiveTimeStamp 238
|
981
|
+
#define OBJ_id_smime_aa_ets_archiveTimeStamp OBJ_id_smime_aa,27L
|
982
|
+
|
983
|
+
#define SN_id_smime_aa_signatureType "id-smime-aa-signatureType"
|
984
|
+
#define NID_id_smime_aa_signatureType 239
|
985
|
+
#define OBJ_id_smime_aa_signatureType OBJ_id_smime_aa,28L
|
986
|
+
|
987
|
+
#define SN_id_smime_aa_dvcs_dvc "id-smime-aa-dvcs-dvc"
|
988
|
+
#define NID_id_smime_aa_dvcs_dvc 240
|
989
|
+
#define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L
|
990
|
+
|
991
|
+
#define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES"
|
992
|
+
#define NID_id_smime_alg_ESDHwith3DES 241
|
993
|
+
#define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L
|
994
|
+
|
995
|
+
#define SN_id_smime_alg_ESDHwithRC2 "id-smime-alg-ESDHwithRC2"
|
996
|
+
#define NID_id_smime_alg_ESDHwithRC2 242
|
997
|
+
#define OBJ_id_smime_alg_ESDHwithRC2 OBJ_id_smime_alg,2L
|
998
|
+
|
999
|
+
#define SN_id_smime_alg_3DESwrap "id-smime-alg-3DESwrap"
|
1000
|
+
#define NID_id_smime_alg_3DESwrap 243
|
1001
|
+
#define OBJ_id_smime_alg_3DESwrap OBJ_id_smime_alg,3L
|
1002
|
+
|
1003
|
+
#define SN_id_smime_alg_RC2wrap "id-smime-alg-RC2wrap"
|
1004
|
+
#define NID_id_smime_alg_RC2wrap 244
|
1005
|
+
#define OBJ_id_smime_alg_RC2wrap OBJ_id_smime_alg,4L
|
1006
|
+
|
1007
|
+
#define SN_id_smime_alg_ESDH "id-smime-alg-ESDH"
|
1008
|
+
#define NID_id_smime_alg_ESDH 245
|
1009
|
+
#define OBJ_id_smime_alg_ESDH OBJ_id_smime_alg,5L
|
1010
|
+
|
1011
|
+
#define SN_id_smime_alg_CMS3DESwrap "id-smime-alg-CMS3DESwrap"
|
1012
|
+
#define NID_id_smime_alg_CMS3DESwrap 246
|
1013
|
+
#define OBJ_id_smime_alg_CMS3DESwrap OBJ_id_smime_alg,6L
|
1014
|
+
|
1015
|
+
#define SN_id_smime_alg_CMSRC2wrap "id-smime-alg-CMSRC2wrap"
|
1016
|
+
#define NID_id_smime_alg_CMSRC2wrap 247
|
1017
|
+
#define OBJ_id_smime_alg_CMSRC2wrap OBJ_id_smime_alg,7L
|
1018
|
+
|
1019
|
+
#define SN_id_alg_PWRI_KEK "id-alg-PWRI-KEK"
|
1020
|
+
#define NID_id_alg_PWRI_KEK 893
|
1021
|
+
#define OBJ_id_alg_PWRI_KEK OBJ_id_smime_alg,9L
|
1022
|
+
|
1023
|
+
#define SN_id_smime_cd_ldap "id-smime-cd-ldap"
|
1024
|
+
#define NID_id_smime_cd_ldap 248
|
1025
|
+
#define OBJ_id_smime_cd_ldap OBJ_id_smime_cd,1L
|
1026
|
+
|
1027
|
+
#define SN_id_smime_spq_ets_sqt_uri "id-smime-spq-ets-sqt-uri"
|
1028
|
+
#define NID_id_smime_spq_ets_sqt_uri 249
|
1029
|
+
#define OBJ_id_smime_spq_ets_sqt_uri OBJ_id_smime_spq,1L
|
1030
|
+
|
1031
|
+
#define SN_id_smime_spq_ets_sqt_unotice "id-smime-spq-ets-sqt-unotice"
|
1032
|
+
#define NID_id_smime_spq_ets_sqt_unotice 250
|
1033
|
+
#define OBJ_id_smime_spq_ets_sqt_unotice OBJ_id_smime_spq,2L
|
1034
|
+
|
1035
|
+
#define SN_id_smime_cti_ets_proofOfOrigin "id-smime-cti-ets-proofOfOrigin"
|
1036
|
+
#define NID_id_smime_cti_ets_proofOfOrigin 251
|
1037
|
+
#define OBJ_id_smime_cti_ets_proofOfOrigin OBJ_id_smime_cti,1L
|
1038
|
+
|
1039
|
+
#define SN_id_smime_cti_ets_proofOfReceipt "id-smime-cti-ets-proofOfReceipt"
|
1040
|
+
#define NID_id_smime_cti_ets_proofOfReceipt 252
|
1041
|
+
#define OBJ_id_smime_cti_ets_proofOfReceipt OBJ_id_smime_cti,2L
|
1042
|
+
|
1043
|
+
#define SN_id_smime_cti_ets_proofOfDelivery "id-smime-cti-ets-proofOfDelivery"
|
1044
|
+
#define NID_id_smime_cti_ets_proofOfDelivery 253
|
1045
|
+
#define OBJ_id_smime_cti_ets_proofOfDelivery OBJ_id_smime_cti,3L
|
1046
|
+
|
1047
|
+
#define SN_id_smime_cti_ets_proofOfSender "id-smime-cti-ets-proofOfSender"
|
1048
|
+
#define NID_id_smime_cti_ets_proofOfSender 254
|
1049
|
+
#define OBJ_id_smime_cti_ets_proofOfSender OBJ_id_smime_cti,4L
|
1050
|
+
|
1051
|
+
#define SN_id_smime_cti_ets_proofOfApproval "id-smime-cti-ets-proofOfApproval"
|
1052
|
+
#define NID_id_smime_cti_ets_proofOfApproval 255
|
1053
|
+
#define OBJ_id_smime_cti_ets_proofOfApproval OBJ_id_smime_cti,5L
|
1054
|
+
|
1055
|
+
#define SN_id_smime_cti_ets_proofOfCreation "id-smime-cti-ets-proofOfCreation"
|
1056
|
+
#define NID_id_smime_cti_ets_proofOfCreation 256
|
1057
|
+
#define OBJ_id_smime_cti_ets_proofOfCreation OBJ_id_smime_cti,6L
|
1058
|
+
|
1059
|
+
#define LN_friendlyName "friendlyName"
|
1060
|
+
#define NID_friendlyName 156
|
1061
|
+
#define OBJ_friendlyName OBJ_pkcs9,20L
|
1062
|
+
|
1063
|
+
#define LN_localKeyID "localKeyID"
|
1064
|
+
#define NID_localKeyID 157
|
1065
|
+
#define OBJ_localKeyID OBJ_pkcs9,21L
|
1066
|
+
|
1067
|
+
#define SN_ms_csp_name "CSPName"
|
1068
|
+
#define LN_ms_csp_name "Microsoft CSP Name"
|
1069
|
+
#define NID_ms_csp_name 417
|
1070
|
+
#define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L
|
1071
|
+
|
1072
|
+
#define SN_LocalKeySet "LocalKeySet"
|
1073
|
+
#define LN_LocalKeySet "Microsoft Local Key set"
|
1074
|
+
#define NID_LocalKeySet 856
|
1075
|
+
#define OBJ_LocalKeySet 1L,3L,6L,1L,4L,1L,311L,17L,2L
|
1076
|
+
|
1077
|
+
#define OBJ_certTypes OBJ_pkcs9,22L
|
1078
|
+
|
1079
|
+
#define LN_x509Certificate "x509Certificate"
|
1080
|
+
#define NID_x509Certificate 158
|
1081
|
+
#define OBJ_x509Certificate OBJ_certTypes,1L
|
1082
|
+
|
1083
|
+
#define LN_sdsiCertificate "sdsiCertificate"
|
1084
|
+
#define NID_sdsiCertificate 159
|
1085
|
+
#define OBJ_sdsiCertificate OBJ_certTypes,2L
|
1086
|
+
|
1087
|
+
#define OBJ_crlTypes OBJ_pkcs9,23L
|
1088
|
+
|
1089
|
+
#define LN_x509Crl "x509Crl"
|
1090
|
+
#define NID_x509Crl 160
|
1091
|
+
#define OBJ_x509Crl OBJ_crlTypes,1L
|
1092
|
+
|
1093
|
+
#define OBJ_pkcs12 OBJ_pkcs,12L
|
1094
|
+
|
1095
|
+
#define OBJ_pkcs12_pbeids OBJ_pkcs12,1L
|
1096
|
+
|
1097
|
+
#define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128"
|
1098
|
+
#define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4"
|
1099
|
+
#define NID_pbe_WithSHA1And128BitRC4 144
|
1100
|
+
#define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids,1L
|
1101
|
+
|
1102
|
+
#define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40"
|
1103
|
+
#define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4"
|
1104
|
+
#define NID_pbe_WithSHA1And40BitRC4 145
|
1105
|
+
#define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids,2L
|
1106
|
+
|
1107
|
+
#define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES"
|
1108
|
+
#define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC"
|
1109
|
+
#define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146
|
1110
|
+
#define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids,3L
|
1111
|
+
|
1112
|
+
#define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES"
|
1113
|
+
#define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC"
|
1114
|
+
#define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147
|
1115
|
+
#define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids,4L
|
1116
|
+
|
1117
|
+
#define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128"
|
1118
|
+
#define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC"
|
1119
|
+
#define NID_pbe_WithSHA1And128BitRC2_CBC 148
|
1120
|
+
#define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids,5L
|
1121
|
+
|
1122
|
+
#define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40"
|
1123
|
+
#define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC"
|
1124
|
+
#define NID_pbe_WithSHA1And40BitRC2_CBC 149
|
1125
|
+
#define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids,6L
|
1126
|
+
|
1127
|
+
#define OBJ_pkcs12_Version1 OBJ_pkcs12,10L
|
1128
|
+
|
1129
|
+
#define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1,1L
|
1130
|
+
|
1131
|
+
#define LN_keyBag "keyBag"
|
1132
|
+
#define NID_keyBag 150
|
1133
|
+
#define OBJ_keyBag OBJ_pkcs12_BagIds,1L
|
1134
|
+
|
1135
|
+
#define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag"
|
1136
|
+
#define NID_pkcs8ShroudedKeyBag 151
|
1137
|
+
#define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds,2L
|
1138
|
+
|
1139
|
+
#define LN_certBag "certBag"
|
1140
|
+
#define NID_certBag 152
|
1141
|
+
#define OBJ_certBag OBJ_pkcs12_BagIds,3L
|
1142
|
+
|
1143
|
+
#define LN_crlBag "crlBag"
|
1144
|
+
#define NID_crlBag 153
|
1145
|
+
#define OBJ_crlBag OBJ_pkcs12_BagIds,4L
|
1146
|
+
|
1147
|
+
#define LN_secretBag "secretBag"
|
1148
|
+
#define NID_secretBag 154
|
1149
|
+
#define OBJ_secretBag OBJ_pkcs12_BagIds,5L
|
1150
|
+
|
1151
|
+
#define LN_safeContentsBag "safeContentsBag"
|
1152
|
+
#define NID_safeContentsBag 155
|
1153
|
+
#define OBJ_safeContentsBag OBJ_pkcs12_BagIds,6L
|
1154
|
+
|
1155
|
+
#define SN_md2 "MD2"
|
1156
|
+
#define LN_md2 "md2"
|
1157
|
+
#define NID_md2 3
|
1158
|
+
#define OBJ_md2 OBJ_rsadsi,2L,2L
|
1159
|
+
|
1160
|
+
#define SN_md4 "MD4"
|
1161
|
+
#define LN_md4 "md4"
|
1162
|
+
#define NID_md4 257
|
1163
|
+
#define OBJ_md4 OBJ_rsadsi,2L,4L
|
1164
|
+
|
1165
|
+
#define SN_md5 "MD5"
|
1166
|
+
#define LN_md5 "md5"
|
1167
|
+
#define NID_md5 4
|
1168
|
+
#define OBJ_md5 OBJ_rsadsi,2L,5L
|
1169
|
+
|
1170
|
+
#define SN_md5_sha1 "MD5-SHA1"
|
1171
|
+
#define LN_md5_sha1 "md5-sha1"
|
1172
|
+
#define NID_md5_sha1 114
|
1173
|
+
|
1174
|
+
#define LN_hmacWithMD5 "hmacWithMD5"
|
1175
|
+
#define NID_hmacWithMD5 797
|
1176
|
+
#define OBJ_hmacWithMD5 OBJ_rsadsi,2L,6L
|
1177
|
+
|
1178
|
+
#define LN_hmacWithSHA1 "hmacWithSHA1"
|
1179
|
+
#define NID_hmacWithSHA1 163
|
1180
|
+
#define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L
|
1181
|
+
|
1182
|
+
#define LN_hmacWithSHA224 "hmacWithSHA224"
|
1183
|
+
#define NID_hmacWithSHA224 798
|
1184
|
+
#define OBJ_hmacWithSHA224 OBJ_rsadsi,2L,8L
|
1185
|
+
|
1186
|
+
#define LN_hmacWithSHA256 "hmacWithSHA256"
|
1187
|
+
#define NID_hmacWithSHA256 799
|
1188
|
+
#define OBJ_hmacWithSHA256 OBJ_rsadsi,2L,9L
|
1189
|
+
|
1190
|
+
#define LN_hmacWithSHA384 "hmacWithSHA384"
|
1191
|
+
#define NID_hmacWithSHA384 800
|
1192
|
+
#define OBJ_hmacWithSHA384 OBJ_rsadsi,2L,10L
|
1193
|
+
|
1194
|
+
#define LN_hmacWithSHA512 "hmacWithSHA512"
|
1195
|
+
#define NID_hmacWithSHA512 801
|
1196
|
+
#define OBJ_hmacWithSHA512 OBJ_rsadsi,2L,11L
|
1197
|
+
|
1198
|
+
#define SN_rc2_cbc "RC2-CBC"
|
1199
|
+
#define LN_rc2_cbc "rc2-cbc"
|
1200
|
+
#define NID_rc2_cbc 37
|
1201
|
+
#define OBJ_rc2_cbc OBJ_rsadsi,3L,2L
|
1202
|
+
|
1203
|
+
#define SN_rc2_ecb "RC2-ECB"
|
1204
|
+
#define LN_rc2_ecb "rc2-ecb"
|
1205
|
+
#define NID_rc2_ecb 38
|
1206
|
+
|
1207
|
+
#define SN_rc2_cfb64 "RC2-CFB"
|
1208
|
+
#define LN_rc2_cfb64 "rc2-cfb"
|
1209
|
+
#define NID_rc2_cfb64 39
|
1210
|
+
|
1211
|
+
#define SN_rc2_ofb64 "RC2-OFB"
|
1212
|
+
#define LN_rc2_ofb64 "rc2-ofb"
|
1213
|
+
#define NID_rc2_ofb64 40
|
1214
|
+
|
1215
|
+
#define SN_rc2_40_cbc "RC2-40-CBC"
|
1216
|
+
#define LN_rc2_40_cbc "rc2-40-cbc"
|
1217
|
+
#define NID_rc2_40_cbc 98
|
1218
|
+
|
1219
|
+
#define SN_rc2_64_cbc "RC2-64-CBC"
|
1220
|
+
#define LN_rc2_64_cbc "rc2-64-cbc"
|
1221
|
+
#define NID_rc2_64_cbc 166
|
1222
|
+
|
1223
|
+
#define SN_rc4 "RC4"
|
1224
|
+
#define LN_rc4 "rc4"
|
1225
|
+
#define NID_rc4 5
|
1226
|
+
#define OBJ_rc4 OBJ_rsadsi,3L,4L
|
1227
|
+
|
1228
|
+
#define SN_rc4_40 "RC4-40"
|
1229
|
+
#define LN_rc4_40 "rc4-40"
|
1230
|
+
#define NID_rc4_40 97
|
1231
|
+
|
1232
|
+
#define SN_des_ede3_cbc "DES-EDE3-CBC"
|
1233
|
+
#define LN_des_ede3_cbc "des-ede3-cbc"
|
1234
|
+
#define NID_des_ede3_cbc 44
|
1235
|
+
#define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L
|
1236
|
+
|
1237
|
+
#define SN_rc5_cbc "RC5-CBC"
|
1238
|
+
#define LN_rc5_cbc "rc5-cbc"
|
1239
|
+
#define NID_rc5_cbc 120
|
1240
|
+
#define OBJ_rc5_cbc OBJ_rsadsi,3L,8L
|
1241
|
+
|
1242
|
+
#define SN_rc5_ecb "RC5-ECB"
|
1243
|
+
#define LN_rc5_ecb "rc5-ecb"
|
1244
|
+
#define NID_rc5_ecb 121
|
1245
|
+
|
1246
|
+
#define SN_rc5_cfb64 "RC5-CFB"
|
1247
|
+
#define LN_rc5_cfb64 "rc5-cfb"
|
1248
|
+
#define NID_rc5_cfb64 122
|
1249
|
+
|
1250
|
+
#define SN_rc5_ofb64 "RC5-OFB"
|
1251
|
+
#define LN_rc5_ofb64 "rc5-ofb"
|
1252
|
+
#define NID_rc5_ofb64 123
|
1253
|
+
|
1254
|
+
#define SN_ms_ext_req "msExtReq"
|
1255
|
+
#define LN_ms_ext_req "Microsoft Extension Request"
|
1256
|
+
#define NID_ms_ext_req 171
|
1257
|
+
#define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L
|
1258
|
+
|
1259
|
+
#define SN_ms_code_ind "msCodeInd"
|
1260
|
+
#define LN_ms_code_ind "Microsoft Individual Code Signing"
|
1261
|
+
#define NID_ms_code_ind 134
|
1262
|
+
#define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L
|
1263
|
+
|
1264
|
+
#define SN_ms_code_com "msCodeCom"
|
1265
|
+
#define LN_ms_code_com "Microsoft Commercial Code Signing"
|
1266
|
+
#define NID_ms_code_com 135
|
1267
|
+
#define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L
|
1268
|
+
|
1269
|
+
#define SN_ms_ctl_sign "msCTLSign"
|
1270
|
+
#define LN_ms_ctl_sign "Microsoft Trust List Signing"
|
1271
|
+
#define NID_ms_ctl_sign 136
|
1272
|
+
#define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L
|
1273
|
+
|
1274
|
+
#define SN_ms_sgc "msSGC"
|
1275
|
+
#define LN_ms_sgc "Microsoft Server Gated Crypto"
|
1276
|
+
#define NID_ms_sgc 137
|
1277
|
+
#define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L
|
1278
|
+
|
1279
|
+
#define SN_ms_efs "msEFS"
|
1280
|
+
#define LN_ms_efs "Microsoft Encrypted File System"
|
1281
|
+
#define NID_ms_efs 138
|
1282
|
+
#define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L
|
1283
|
+
|
1284
|
+
#define SN_ms_smartcard_login "msSmartcardLogin"
|
1285
|
+
#define LN_ms_smartcard_login "Microsoft Smartcardlogin"
|
1286
|
+
#define NID_ms_smartcard_login 648
|
1287
|
+
#define OBJ_ms_smartcard_login 1L,3L,6L,1L,4L,1L,311L,20L,2L,2L
|
1288
|
+
|
1289
|
+
#define SN_ms_upn "msUPN"
|
1290
|
+
#define LN_ms_upn "Microsoft Universal Principal Name"
|
1291
|
+
#define NID_ms_upn 649
|
1292
|
+
#define OBJ_ms_upn 1L,3L,6L,1L,4L,1L,311L,20L,2L,3L
|
1293
|
+
|
1294
|
+
#define SN_idea_cbc "IDEA-CBC"
|
1295
|
+
#define LN_idea_cbc "idea-cbc"
|
1296
|
+
#define NID_idea_cbc 34
|
1297
|
+
#define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L
|
1298
|
+
|
1299
|
+
#define SN_idea_ecb "IDEA-ECB"
|
1300
|
+
#define LN_idea_ecb "idea-ecb"
|
1301
|
+
#define NID_idea_ecb 36
|
1302
|
+
|
1303
|
+
#define SN_idea_cfb64 "IDEA-CFB"
|
1304
|
+
#define LN_idea_cfb64 "idea-cfb"
|
1305
|
+
#define NID_idea_cfb64 35
|
1306
|
+
|
1307
|
+
#define SN_idea_ofb64 "IDEA-OFB"
|
1308
|
+
#define LN_idea_ofb64 "idea-ofb"
|
1309
|
+
#define NID_idea_ofb64 46
|
1310
|
+
|
1311
|
+
#define SN_bf_cbc "BF-CBC"
|
1312
|
+
#define LN_bf_cbc "bf-cbc"
|
1313
|
+
#define NID_bf_cbc 91
|
1314
|
+
#define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L
|
1315
|
+
|
1316
|
+
#define SN_bf_ecb "BF-ECB"
|
1317
|
+
#define LN_bf_ecb "bf-ecb"
|
1318
|
+
#define NID_bf_ecb 92
|
1319
|
+
|
1320
|
+
#define SN_bf_cfb64 "BF-CFB"
|
1321
|
+
#define LN_bf_cfb64 "bf-cfb"
|
1322
|
+
#define NID_bf_cfb64 93
|
1323
|
+
|
1324
|
+
#define SN_bf_ofb64 "BF-OFB"
|
1325
|
+
#define LN_bf_ofb64 "bf-ofb"
|
1326
|
+
#define NID_bf_ofb64 94
|
1327
|
+
|
1328
|
+
#define SN_id_pkix "PKIX"
|
1329
|
+
#define NID_id_pkix 127
|
1330
|
+
#define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L
|
1331
|
+
|
1332
|
+
#define SN_id_pkix_mod "id-pkix-mod"
|
1333
|
+
#define NID_id_pkix_mod 258
|
1334
|
+
#define OBJ_id_pkix_mod OBJ_id_pkix,0L
|
1335
|
+
|
1336
|
+
#define SN_id_pe "id-pe"
|
1337
|
+
#define NID_id_pe 175
|
1338
|
+
#define OBJ_id_pe OBJ_id_pkix,1L
|
1339
|
+
|
1340
|
+
#define SN_id_qt "id-qt"
|
1341
|
+
#define NID_id_qt 259
|
1342
|
+
#define OBJ_id_qt OBJ_id_pkix,2L
|
1343
|
+
|
1344
|
+
#define SN_id_kp "id-kp"
|
1345
|
+
#define NID_id_kp 128
|
1346
|
+
#define OBJ_id_kp OBJ_id_pkix,3L
|
1347
|
+
|
1348
|
+
#define SN_id_it "id-it"
|
1349
|
+
#define NID_id_it 260
|
1350
|
+
#define OBJ_id_it OBJ_id_pkix,4L
|
1351
|
+
|
1352
|
+
#define SN_id_pkip "id-pkip"
|
1353
|
+
#define NID_id_pkip 261
|
1354
|
+
#define OBJ_id_pkip OBJ_id_pkix,5L
|
1355
|
+
|
1356
|
+
#define SN_id_alg "id-alg"
|
1357
|
+
#define NID_id_alg 262
|
1358
|
+
#define OBJ_id_alg OBJ_id_pkix,6L
|
1359
|
+
|
1360
|
+
#define SN_id_cmc "id-cmc"
|
1361
|
+
#define NID_id_cmc 263
|
1362
|
+
#define OBJ_id_cmc OBJ_id_pkix,7L
|
1363
|
+
|
1364
|
+
#define SN_id_on "id-on"
|
1365
|
+
#define NID_id_on 264
|
1366
|
+
#define OBJ_id_on OBJ_id_pkix,8L
|
1367
|
+
|
1368
|
+
#define SN_id_pda "id-pda"
|
1369
|
+
#define NID_id_pda 265
|
1370
|
+
#define OBJ_id_pda OBJ_id_pkix,9L
|
1371
|
+
|
1372
|
+
#define SN_id_aca "id-aca"
|
1373
|
+
#define NID_id_aca 266
|
1374
|
+
#define OBJ_id_aca OBJ_id_pkix,10L
|
1375
|
+
|
1376
|
+
#define SN_id_qcs "id-qcs"
|
1377
|
+
#define NID_id_qcs 267
|
1378
|
+
#define OBJ_id_qcs OBJ_id_pkix,11L
|
1379
|
+
|
1380
|
+
#define SN_id_cct "id-cct"
|
1381
|
+
#define NID_id_cct 268
|
1382
|
+
#define OBJ_id_cct OBJ_id_pkix,12L
|
1383
|
+
|
1384
|
+
#define SN_id_ppl "id-ppl"
|
1385
|
+
#define NID_id_ppl 662
|
1386
|
+
#define OBJ_id_ppl OBJ_id_pkix,21L
|
1387
|
+
|
1388
|
+
#define SN_id_ad "id-ad"
|
1389
|
+
#define NID_id_ad 176
|
1390
|
+
#define OBJ_id_ad OBJ_id_pkix,48L
|
1391
|
+
|
1392
|
+
#define SN_id_pkix1_explicit_88 "id-pkix1-explicit-88"
|
1393
|
+
#define NID_id_pkix1_explicit_88 269
|
1394
|
+
#define OBJ_id_pkix1_explicit_88 OBJ_id_pkix_mod,1L
|
1395
|
+
|
1396
|
+
#define SN_id_pkix1_implicit_88 "id-pkix1-implicit-88"
|
1397
|
+
#define NID_id_pkix1_implicit_88 270
|
1398
|
+
#define OBJ_id_pkix1_implicit_88 OBJ_id_pkix_mod,2L
|
1399
|
+
|
1400
|
+
#define SN_id_pkix1_explicit_93 "id-pkix1-explicit-93"
|
1401
|
+
#define NID_id_pkix1_explicit_93 271
|
1402
|
+
#define OBJ_id_pkix1_explicit_93 OBJ_id_pkix_mod,3L
|
1403
|
+
|
1404
|
+
#define SN_id_pkix1_implicit_93 "id-pkix1-implicit-93"
|
1405
|
+
#define NID_id_pkix1_implicit_93 272
|
1406
|
+
#define OBJ_id_pkix1_implicit_93 OBJ_id_pkix_mod,4L
|
1407
|
+
|
1408
|
+
#define SN_id_mod_crmf "id-mod-crmf"
|
1409
|
+
#define NID_id_mod_crmf 273
|
1410
|
+
#define OBJ_id_mod_crmf OBJ_id_pkix_mod,5L
|
1411
|
+
|
1412
|
+
#define SN_id_mod_cmc "id-mod-cmc"
|
1413
|
+
#define NID_id_mod_cmc 274
|
1414
|
+
#define OBJ_id_mod_cmc OBJ_id_pkix_mod,6L
|
1415
|
+
|
1416
|
+
#define SN_id_mod_kea_profile_88 "id-mod-kea-profile-88"
|
1417
|
+
#define NID_id_mod_kea_profile_88 275
|
1418
|
+
#define OBJ_id_mod_kea_profile_88 OBJ_id_pkix_mod,7L
|
1419
|
+
|
1420
|
+
#define SN_id_mod_kea_profile_93 "id-mod-kea-profile-93"
|
1421
|
+
#define NID_id_mod_kea_profile_93 276
|
1422
|
+
#define OBJ_id_mod_kea_profile_93 OBJ_id_pkix_mod,8L
|
1423
|
+
|
1424
|
+
#define SN_id_mod_cmp "id-mod-cmp"
|
1425
|
+
#define NID_id_mod_cmp 277
|
1426
|
+
#define OBJ_id_mod_cmp OBJ_id_pkix_mod,9L
|
1427
|
+
|
1428
|
+
#define SN_id_mod_qualified_cert_88 "id-mod-qualified-cert-88"
|
1429
|
+
#define NID_id_mod_qualified_cert_88 278
|
1430
|
+
#define OBJ_id_mod_qualified_cert_88 OBJ_id_pkix_mod,10L
|
1431
|
+
|
1432
|
+
#define SN_id_mod_qualified_cert_93 "id-mod-qualified-cert-93"
|
1433
|
+
#define NID_id_mod_qualified_cert_93 279
|
1434
|
+
#define OBJ_id_mod_qualified_cert_93 OBJ_id_pkix_mod,11L
|
1435
|
+
|
1436
|
+
#define SN_id_mod_attribute_cert "id-mod-attribute-cert"
|
1437
|
+
#define NID_id_mod_attribute_cert 280
|
1438
|
+
#define OBJ_id_mod_attribute_cert OBJ_id_pkix_mod,12L
|
1439
|
+
|
1440
|
+
#define SN_id_mod_timestamp_protocol "id-mod-timestamp-protocol"
|
1441
|
+
#define NID_id_mod_timestamp_protocol 281
|
1442
|
+
#define OBJ_id_mod_timestamp_protocol OBJ_id_pkix_mod,13L
|
1443
|
+
|
1444
|
+
#define SN_id_mod_ocsp "id-mod-ocsp"
|
1445
|
+
#define NID_id_mod_ocsp 282
|
1446
|
+
#define OBJ_id_mod_ocsp OBJ_id_pkix_mod,14L
|
1447
|
+
|
1448
|
+
#define SN_id_mod_dvcs "id-mod-dvcs"
|
1449
|
+
#define NID_id_mod_dvcs 283
|
1450
|
+
#define OBJ_id_mod_dvcs OBJ_id_pkix_mod,15L
|
1451
|
+
|
1452
|
+
#define SN_id_mod_cmp2000 "id-mod-cmp2000"
|
1453
|
+
#define NID_id_mod_cmp2000 284
|
1454
|
+
#define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L
|
1455
|
+
|
1456
|
+
#define SN_info_access "authorityInfoAccess"
|
1457
|
+
#define LN_info_access "Authority Information Access"
|
1458
|
+
#define NID_info_access 177
|
1459
|
+
#define OBJ_info_access OBJ_id_pe,1L
|
1460
|
+
|
1461
|
+
#define SN_biometricInfo "biometricInfo"
|
1462
|
+
#define LN_biometricInfo "Biometric Info"
|
1463
|
+
#define NID_biometricInfo 285
|
1464
|
+
#define OBJ_biometricInfo OBJ_id_pe,2L
|
1465
|
+
|
1466
|
+
#define SN_qcStatements "qcStatements"
|
1467
|
+
#define NID_qcStatements 286
|
1468
|
+
#define OBJ_qcStatements OBJ_id_pe,3L
|
1469
|
+
|
1470
|
+
#define SN_ac_auditEntity "ac-auditEntity"
|
1471
|
+
#define NID_ac_auditEntity 287
|
1472
|
+
#define OBJ_ac_auditEntity OBJ_id_pe,4L
|
1473
|
+
|
1474
|
+
#define SN_ac_targeting "ac-targeting"
|
1475
|
+
#define NID_ac_targeting 288
|
1476
|
+
#define OBJ_ac_targeting OBJ_id_pe,5L
|
1477
|
+
|
1478
|
+
#define SN_aaControls "aaControls"
|
1479
|
+
#define NID_aaControls 289
|
1480
|
+
#define OBJ_aaControls OBJ_id_pe,6L
|
1481
|
+
|
1482
|
+
#define SN_sbgp_ipAddrBlock "sbgp-ipAddrBlock"
|
1483
|
+
#define NID_sbgp_ipAddrBlock 290
|
1484
|
+
#define OBJ_sbgp_ipAddrBlock OBJ_id_pe,7L
|
1485
|
+
|
1486
|
+
#define SN_sbgp_autonomousSysNum "sbgp-autonomousSysNum"
|
1487
|
+
#define NID_sbgp_autonomousSysNum 291
|
1488
|
+
#define OBJ_sbgp_autonomousSysNum OBJ_id_pe,8L
|
1489
|
+
|
1490
|
+
#define SN_sbgp_routerIdentifier "sbgp-routerIdentifier"
|
1491
|
+
#define NID_sbgp_routerIdentifier 292
|
1492
|
+
#define OBJ_sbgp_routerIdentifier OBJ_id_pe,9L
|
1493
|
+
|
1494
|
+
#define SN_ac_proxying "ac-proxying"
|
1495
|
+
#define NID_ac_proxying 397
|
1496
|
+
#define OBJ_ac_proxying OBJ_id_pe,10L
|
1497
|
+
|
1498
|
+
#define SN_sinfo_access "subjectInfoAccess"
|
1499
|
+
#define LN_sinfo_access "Subject Information Access"
|
1500
|
+
#define NID_sinfo_access 398
|
1501
|
+
#define OBJ_sinfo_access OBJ_id_pe,11L
|
1502
|
+
|
1503
|
+
#define SN_proxyCertInfo "proxyCertInfo"
|
1504
|
+
#define LN_proxyCertInfo "Proxy Certificate Information"
|
1505
|
+
#define NID_proxyCertInfo 663
|
1506
|
+
#define OBJ_proxyCertInfo OBJ_id_pe,14L
|
1507
|
+
|
1508
|
+
#define SN_id_qt_cps "id-qt-cps"
|
1509
|
+
#define LN_id_qt_cps "Policy Qualifier CPS"
|
1510
|
+
#define NID_id_qt_cps 164
|
1511
|
+
#define OBJ_id_qt_cps OBJ_id_qt,1L
|
1512
|
+
|
1513
|
+
#define SN_id_qt_unotice "id-qt-unotice"
|
1514
|
+
#define LN_id_qt_unotice "Policy Qualifier User Notice"
|
1515
|
+
#define NID_id_qt_unotice 165
|
1516
|
+
#define OBJ_id_qt_unotice OBJ_id_qt,2L
|
1517
|
+
|
1518
|
+
#define SN_textNotice "textNotice"
|
1519
|
+
#define NID_textNotice 293
|
1520
|
+
#define OBJ_textNotice OBJ_id_qt,3L
|
1521
|
+
|
1522
|
+
#define SN_server_auth "serverAuth"
|
1523
|
+
#define LN_server_auth "TLS Web Server Authentication"
|
1524
|
+
#define NID_server_auth 129
|
1525
|
+
#define OBJ_server_auth OBJ_id_kp,1L
|
1526
|
+
|
1527
|
+
#define SN_client_auth "clientAuth"
|
1528
|
+
#define LN_client_auth "TLS Web Client Authentication"
|
1529
|
+
#define NID_client_auth 130
|
1530
|
+
#define OBJ_client_auth OBJ_id_kp,2L
|
1531
|
+
|
1532
|
+
#define SN_code_sign "codeSigning"
|
1533
|
+
#define LN_code_sign "Code Signing"
|
1534
|
+
#define NID_code_sign 131
|
1535
|
+
#define OBJ_code_sign OBJ_id_kp,3L
|
1536
|
+
|
1537
|
+
#define SN_email_protect "emailProtection"
|
1538
|
+
#define LN_email_protect "E-mail Protection"
|
1539
|
+
#define NID_email_protect 132
|
1540
|
+
#define OBJ_email_protect OBJ_id_kp,4L
|
1541
|
+
|
1542
|
+
#define SN_ipsecEndSystem "ipsecEndSystem"
|
1543
|
+
#define LN_ipsecEndSystem "IPSec End System"
|
1544
|
+
#define NID_ipsecEndSystem 294
|
1545
|
+
#define OBJ_ipsecEndSystem OBJ_id_kp,5L
|
1546
|
+
|
1547
|
+
#define SN_ipsecTunnel "ipsecTunnel"
|
1548
|
+
#define LN_ipsecTunnel "IPSec Tunnel"
|
1549
|
+
#define NID_ipsecTunnel 295
|
1550
|
+
#define OBJ_ipsecTunnel OBJ_id_kp,6L
|
1551
|
+
|
1552
|
+
#define SN_ipsecUser "ipsecUser"
|
1553
|
+
#define LN_ipsecUser "IPSec User"
|
1554
|
+
#define NID_ipsecUser 296
|
1555
|
+
#define OBJ_ipsecUser OBJ_id_kp,7L
|
1556
|
+
|
1557
|
+
#define SN_time_stamp "timeStamping"
|
1558
|
+
#define LN_time_stamp "Time Stamping"
|
1559
|
+
#define NID_time_stamp 133
|
1560
|
+
#define OBJ_time_stamp OBJ_id_kp,8L
|
1561
|
+
|
1562
|
+
#define SN_OCSP_sign "OCSPSigning"
|
1563
|
+
#define LN_OCSP_sign "OCSP Signing"
|
1564
|
+
#define NID_OCSP_sign 180
|
1565
|
+
#define OBJ_OCSP_sign OBJ_id_kp,9L
|
1566
|
+
|
1567
|
+
#define SN_dvcs "DVCS"
|
1568
|
+
#define LN_dvcs "dvcs"
|
1569
|
+
#define NID_dvcs 297
|
1570
|
+
#define OBJ_dvcs OBJ_id_kp,10L
|
1571
|
+
|
1572
|
+
#define SN_id_it_caProtEncCert "id-it-caProtEncCert"
|
1573
|
+
#define NID_id_it_caProtEncCert 298
|
1574
|
+
#define OBJ_id_it_caProtEncCert OBJ_id_it,1L
|
1575
|
+
|
1576
|
+
#define SN_id_it_signKeyPairTypes "id-it-signKeyPairTypes"
|
1577
|
+
#define NID_id_it_signKeyPairTypes 299
|
1578
|
+
#define OBJ_id_it_signKeyPairTypes OBJ_id_it,2L
|
1579
|
+
|
1580
|
+
#define SN_id_it_encKeyPairTypes "id-it-encKeyPairTypes"
|
1581
|
+
#define NID_id_it_encKeyPairTypes 300
|
1582
|
+
#define OBJ_id_it_encKeyPairTypes OBJ_id_it,3L
|
1583
|
+
|
1584
|
+
#define SN_id_it_preferredSymmAlg "id-it-preferredSymmAlg"
|
1585
|
+
#define NID_id_it_preferredSymmAlg 301
|
1586
|
+
#define OBJ_id_it_preferredSymmAlg OBJ_id_it,4L
|
1587
|
+
|
1588
|
+
#define SN_id_it_caKeyUpdateInfo "id-it-caKeyUpdateInfo"
|
1589
|
+
#define NID_id_it_caKeyUpdateInfo 302
|
1590
|
+
#define OBJ_id_it_caKeyUpdateInfo OBJ_id_it,5L
|
1591
|
+
|
1592
|
+
#define SN_id_it_currentCRL "id-it-currentCRL"
|
1593
|
+
#define NID_id_it_currentCRL 303
|
1594
|
+
#define OBJ_id_it_currentCRL OBJ_id_it,6L
|
1595
|
+
|
1596
|
+
#define SN_id_it_unsupportedOIDs "id-it-unsupportedOIDs"
|
1597
|
+
#define NID_id_it_unsupportedOIDs 304
|
1598
|
+
#define OBJ_id_it_unsupportedOIDs OBJ_id_it,7L
|
1599
|
+
|
1600
|
+
#define SN_id_it_subscriptionRequest "id-it-subscriptionRequest"
|
1601
|
+
#define NID_id_it_subscriptionRequest 305
|
1602
|
+
#define OBJ_id_it_subscriptionRequest OBJ_id_it,8L
|
1603
|
+
|
1604
|
+
#define SN_id_it_subscriptionResponse "id-it-subscriptionResponse"
|
1605
|
+
#define NID_id_it_subscriptionResponse 306
|
1606
|
+
#define OBJ_id_it_subscriptionResponse OBJ_id_it,9L
|
1607
|
+
|
1608
|
+
#define SN_id_it_keyPairParamReq "id-it-keyPairParamReq"
|
1609
|
+
#define NID_id_it_keyPairParamReq 307
|
1610
|
+
#define OBJ_id_it_keyPairParamReq OBJ_id_it,10L
|
1611
|
+
|
1612
|
+
#define SN_id_it_keyPairParamRep "id-it-keyPairParamRep"
|
1613
|
+
#define NID_id_it_keyPairParamRep 308
|
1614
|
+
#define OBJ_id_it_keyPairParamRep OBJ_id_it,11L
|
1615
|
+
|
1616
|
+
#define SN_id_it_revPassphrase "id-it-revPassphrase"
|
1617
|
+
#define NID_id_it_revPassphrase 309
|
1618
|
+
#define OBJ_id_it_revPassphrase OBJ_id_it,12L
|
1619
|
+
|
1620
|
+
#define SN_id_it_implicitConfirm "id-it-implicitConfirm"
|
1621
|
+
#define NID_id_it_implicitConfirm 310
|
1622
|
+
#define OBJ_id_it_implicitConfirm OBJ_id_it,13L
|
1623
|
+
|
1624
|
+
#define SN_id_it_confirmWaitTime "id-it-confirmWaitTime"
|
1625
|
+
#define NID_id_it_confirmWaitTime 311
|
1626
|
+
#define OBJ_id_it_confirmWaitTime OBJ_id_it,14L
|
1627
|
+
|
1628
|
+
#define SN_id_it_origPKIMessage "id-it-origPKIMessage"
|
1629
|
+
#define NID_id_it_origPKIMessage 312
|
1630
|
+
#define OBJ_id_it_origPKIMessage OBJ_id_it,15L
|
1631
|
+
|
1632
|
+
#define SN_id_it_suppLangTags "id-it-suppLangTags"
|
1633
|
+
#define NID_id_it_suppLangTags 784
|
1634
|
+
#define OBJ_id_it_suppLangTags OBJ_id_it,16L
|
1635
|
+
|
1636
|
+
#define SN_id_regCtrl "id-regCtrl"
|
1637
|
+
#define NID_id_regCtrl 313
|
1638
|
+
#define OBJ_id_regCtrl OBJ_id_pkip,1L
|
1639
|
+
|
1640
|
+
#define SN_id_regInfo "id-regInfo"
|
1641
|
+
#define NID_id_regInfo 314
|
1642
|
+
#define OBJ_id_regInfo OBJ_id_pkip,2L
|
1643
|
+
|
1644
|
+
#define SN_id_regCtrl_regToken "id-regCtrl-regToken"
|
1645
|
+
#define NID_id_regCtrl_regToken 315
|
1646
|
+
#define OBJ_id_regCtrl_regToken OBJ_id_regCtrl,1L
|
1647
|
+
|
1648
|
+
#define SN_id_regCtrl_authenticator "id-regCtrl-authenticator"
|
1649
|
+
#define NID_id_regCtrl_authenticator 316
|
1650
|
+
#define OBJ_id_regCtrl_authenticator OBJ_id_regCtrl,2L
|
1651
|
+
|
1652
|
+
#define SN_id_regCtrl_pkiPublicationInfo "id-regCtrl-pkiPublicationInfo"
|
1653
|
+
#define NID_id_regCtrl_pkiPublicationInfo 317
|
1654
|
+
#define OBJ_id_regCtrl_pkiPublicationInfo OBJ_id_regCtrl,3L
|
1655
|
+
|
1656
|
+
#define SN_id_regCtrl_pkiArchiveOptions "id-regCtrl-pkiArchiveOptions"
|
1657
|
+
#define NID_id_regCtrl_pkiArchiveOptions 318
|
1658
|
+
#define OBJ_id_regCtrl_pkiArchiveOptions OBJ_id_regCtrl,4L
|
1659
|
+
|
1660
|
+
#define SN_id_regCtrl_oldCertID "id-regCtrl-oldCertID"
|
1661
|
+
#define NID_id_regCtrl_oldCertID 319
|
1662
|
+
#define OBJ_id_regCtrl_oldCertID OBJ_id_regCtrl,5L
|
1663
|
+
|
1664
|
+
#define SN_id_regCtrl_protocolEncrKey "id-regCtrl-protocolEncrKey"
|
1665
|
+
#define NID_id_regCtrl_protocolEncrKey 320
|
1666
|
+
#define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L
|
1667
|
+
|
1668
|
+
#define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs"
|
1669
|
+
#define NID_id_regInfo_utf8Pairs 321
|
1670
|
+
#define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L
|
1671
|
+
|
1672
|
+
#define SN_id_regInfo_certReq "id-regInfo-certReq"
|
1673
|
+
#define NID_id_regInfo_certReq 322
|
1674
|
+
#define OBJ_id_regInfo_certReq OBJ_id_regInfo,2L
|
1675
|
+
|
1676
|
+
#define SN_id_alg_des40 "id-alg-des40"
|
1677
|
+
#define NID_id_alg_des40 323
|
1678
|
+
#define OBJ_id_alg_des40 OBJ_id_alg,1L
|
1679
|
+
|
1680
|
+
#define SN_id_alg_noSignature "id-alg-noSignature"
|
1681
|
+
#define NID_id_alg_noSignature 324
|
1682
|
+
#define OBJ_id_alg_noSignature OBJ_id_alg,2L
|
1683
|
+
|
1684
|
+
#define SN_id_alg_dh_sig_hmac_sha1 "id-alg-dh-sig-hmac-sha1"
|
1685
|
+
#define NID_id_alg_dh_sig_hmac_sha1 325
|
1686
|
+
#define OBJ_id_alg_dh_sig_hmac_sha1 OBJ_id_alg,3L
|
1687
|
+
|
1688
|
+
#define SN_id_alg_dh_pop "id-alg-dh-pop"
|
1689
|
+
#define NID_id_alg_dh_pop 326
|
1690
|
+
#define OBJ_id_alg_dh_pop OBJ_id_alg,4L
|
1691
|
+
|
1692
|
+
#define SN_id_cmc_statusInfo "id-cmc-statusInfo"
|
1693
|
+
#define NID_id_cmc_statusInfo 327
|
1694
|
+
#define OBJ_id_cmc_statusInfo OBJ_id_cmc,1L
|
1695
|
+
|
1696
|
+
#define SN_id_cmc_identification "id-cmc-identification"
|
1697
|
+
#define NID_id_cmc_identification 328
|
1698
|
+
#define OBJ_id_cmc_identification OBJ_id_cmc,2L
|
1699
|
+
|
1700
|
+
#define SN_id_cmc_identityProof "id-cmc-identityProof"
|
1701
|
+
#define NID_id_cmc_identityProof 329
|
1702
|
+
#define OBJ_id_cmc_identityProof OBJ_id_cmc,3L
|
1703
|
+
|
1704
|
+
#define SN_id_cmc_dataReturn "id-cmc-dataReturn"
|
1705
|
+
#define NID_id_cmc_dataReturn 330
|
1706
|
+
#define OBJ_id_cmc_dataReturn OBJ_id_cmc,4L
|
1707
|
+
|
1708
|
+
#define SN_id_cmc_transactionId "id-cmc-transactionId"
|
1709
|
+
#define NID_id_cmc_transactionId 331
|
1710
|
+
#define OBJ_id_cmc_transactionId OBJ_id_cmc,5L
|
1711
|
+
|
1712
|
+
#define SN_id_cmc_senderNonce "id-cmc-senderNonce"
|
1713
|
+
#define NID_id_cmc_senderNonce 332
|
1714
|
+
#define OBJ_id_cmc_senderNonce OBJ_id_cmc,6L
|
1715
|
+
|
1716
|
+
#define SN_id_cmc_recipientNonce "id-cmc-recipientNonce"
|
1717
|
+
#define NID_id_cmc_recipientNonce 333
|
1718
|
+
#define OBJ_id_cmc_recipientNonce OBJ_id_cmc,7L
|
1719
|
+
|
1720
|
+
#define SN_id_cmc_addExtensions "id-cmc-addExtensions"
|
1721
|
+
#define NID_id_cmc_addExtensions 334
|
1722
|
+
#define OBJ_id_cmc_addExtensions OBJ_id_cmc,8L
|
1723
|
+
|
1724
|
+
#define SN_id_cmc_encryptedPOP "id-cmc-encryptedPOP"
|
1725
|
+
#define NID_id_cmc_encryptedPOP 335
|
1726
|
+
#define OBJ_id_cmc_encryptedPOP OBJ_id_cmc,9L
|
1727
|
+
|
1728
|
+
#define SN_id_cmc_decryptedPOP "id-cmc-decryptedPOP"
|
1729
|
+
#define NID_id_cmc_decryptedPOP 336
|
1730
|
+
#define OBJ_id_cmc_decryptedPOP OBJ_id_cmc,10L
|
1731
|
+
|
1732
|
+
#define SN_id_cmc_lraPOPWitness "id-cmc-lraPOPWitness"
|
1733
|
+
#define NID_id_cmc_lraPOPWitness 337
|
1734
|
+
#define OBJ_id_cmc_lraPOPWitness OBJ_id_cmc,11L
|
1735
|
+
|
1736
|
+
#define SN_id_cmc_getCert "id-cmc-getCert"
|
1737
|
+
#define NID_id_cmc_getCert 338
|
1738
|
+
#define OBJ_id_cmc_getCert OBJ_id_cmc,15L
|
1739
|
+
|
1740
|
+
#define SN_id_cmc_getCRL "id-cmc-getCRL"
|
1741
|
+
#define NID_id_cmc_getCRL 339
|
1742
|
+
#define OBJ_id_cmc_getCRL OBJ_id_cmc,16L
|
1743
|
+
|
1744
|
+
#define SN_id_cmc_revokeRequest "id-cmc-revokeRequest"
|
1745
|
+
#define NID_id_cmc_revokeRequest 340
|
1746
|
+
#define OBJ_id_cmc_revokeRequest OBJ_id_cmc,17L
|
1747
|
+
|
1748
|
+
#define SN_id_cmc_regInfo "id-cmc-regInfo"
|
1749
|
+
#define NID_id_cmc_regInfo 341
|
1750
|
+
#define OBJ_id_cmc_regInfo OBJ_id_cmc,18L
|
1751
|
+
|
1752
|
+
#define SN_id_cmc_responseInfo "id-cmc-responseInfo"
|
1753
|
+
#define NID_id_cmc_responseInfo 342
|
1754
|
+
#define OBJ_id_cmc_responseInfo OBJ_id_cmc,19L
|
1755
|
+
|
1756
|
+
#define SN_id_cmc_queryPending "id-cmc-queryPending"
|
1757
|
+
#define NID_id_cmc_queryPending 343
|
1758
|
+
#define OBJ_id_cmc_queryPending OBJ_id_cmc,21L
|
1759
|
+
|
1760
|
+
#define SN_id_cmc_popLinkRandom "id-cmc-popLinkRandom"
|
1761
|
+
#define NID_id_cmc_popLinkRandom 344
|
1762
|
+
#define OBJ_id_cmc_popLinkRandom OBJ_id_cmc,22L
|
1763
|
+
|
1764
|
+
#define SN_id_cmc_popLinkWitness "id-cmc-popLinkWitness"
|
1765
|
+
#define NID_id_cmc_popLinkWitness 345
|
1766
|
+
#define OBJ_id_cmc_popLinkWitness OBJ_id_cmc,23L
|
1767
|
+
|
1768
|
+
#define SN_id_cmc_confirmCertAcceptance "id-cmc-confirmCertAcceptance"
|
1769
|
+
#define NID_id_cmc_confirmCertAcceptance 346
|
1770
|
+
#define OBJ_id_cmc_confirmCertAcceptance OBJ_id_cmc,24L
|
1771
|
+
|
1772
|
+
#define SN_id_on_personalData "id-on-personalData"
|
1773
|
+
#define NID_id_on_personalData 347
|
1774
|
+
#define OBJ_id_on_personalData OBJ_id_on,1L
|
1775
|
+
|
1776
|
+
#define SN_id_on_permanentIdentifier "id-on-permanentIdentifier"
|
1777
|
+
#define LN_id_on_permanentIdentifier "Permanent Identifier"
|
1778
|
+
#define NID_id_on_permanentIdentifier 858
|
1779
|
+
#define OBJ_id_on_permanentIdentifier OBJ_id_on,3L
|
1780
|
+
|
1781
|
+
#define SN_id_pda_dateOfBirth "id-pda-dateOfBirth"
|
1782
|
+
#define NID_id_pda_dateOfBirth 348
|
1783
|
+
#define OBJ_id_pda_dateOfBirth OBJ_id_pda,1L
|
1784
|
+
|
1785
|
+
#define SN_id_pda_placeOfBirth "id-pda-placeOfBirth"
|
1786
|
+
#define NID_id_pda_placeOfBirth 349
|
1787
|
+
#define OBJ_id_pda_placeOfBirth OBJ_id_pda,2L
|
1788
|
+
|
1789
|
+
#define SN_id_pda_gender "id-pda-gender"
|
1790
|
+
#define NID_id_pda_gender 351
|
1791
|
+
#define OBJ_id_pda_gender OBJ_id_pda,3L
|
1792
|
+
|
1793
|
+
#define SN_id_pda_countryOfCitizenship "id-pda-countryOfCitizenship"
|
1794
|
+
#define NID_id_pda_countryOfCitizenship 352
|
1795
|
+
#define OBJ_id_pda_countryOfCitizenship OBJ_id_pda,4L
|
1796
|
+
|
1797
|
+
#define SN_id_pda_countryOfResidence "id-pda-countryOfResidence"
|
1798
|
+
#define NID_id_pda_countryOfResidence 353
|
1799
|
+
#define OBJ_id_pda_countryOfResidence OBJ_id_pda,5L
|
1800
|
+
|
1801
|
+
#define SN_id_aca_authenticationInfo "id-aca-authenticationInfo"
|
1802
|
+
#define NID_id_aca_authenticationInfo 354
|
1803
|
+
#define OBJ_id_aca_authenticationInfo OBJ_id_aca,1L
|
1804
|
+
|
1805
|
+
#define SN_id_aca_accessIdentity "id-aca-accessIdentity"
|
1806
|
+
#define NID_id_aca_accessIdentity 355
|
1807
|
+
#define OBJ_id_aca_accessIdentity OBJ_id_aca,2L
|
1808
|
+
|
1809
|
+
#define SN_id_aca_chargingIdentity "id-aca-chargingIdentity"
|
1810
|
+
#define NID_id_aca_chargingIdentity 356
|
1811
|
+
#define OBJ_id_aca_chargingIdentity OBJ_id_aca,3L
|
1812
|
+
|
1813
|
+
#define SN_id_aca_group "id-aca-group"
|
1814
|
+
#define NID_id_aca_group 357
|
1815
|
+
#define OBJ_id_aca_group OBJ_id_aca,4L
|
1816
|
+
|
1817
|
+
#define SN_id_aca_role "id-aca-role"
|
1818
|
+
#define NID_id_aca_role 358
|
1819
|
+
#define OBJ_id_aca_role OBJ_id_aca,5L
|
1820
|
+
|
1821
|
+
#define SN_id_aca_encAttrs "id-aca-encAttrs"
|
1822
|
+
#define NID_id_aca_encAttrs 399
|
1823
|
+
#define OBJ_id_aca_encAttrs OBJ_id_aca,6L
|
1824
|
+
|
1825
|
+
#define SN_id_qcs_pkixQCSyntax_v1 "id-qcs-pkixQCSyntax-v1"
|
1826
|
+
#define NID_id_qcs_pkixQCSyntax_v1 359
|
1827
|
+
#define OBJ_id_qcs_pkixQCSyntax_v1 OBJ_id_qcs,1L
|
1828
|
+
|
1829
|
+
#define SN_id_cct_crs "id-cct-crs"
|
1830
|
+
#define NID_id_cct_crs 360
|
1831
|
+
#define OBJ_id_cct_crs OBJ_id_cct,1L
|
1832
|
+
|
1833
|
+
#define SN_id_cct_PKIData "id-cct-PKIData"
|
1834
|
+
#define NID_id_cct_PKIData 361
|
1835
|
+
#define OBJ_id_cct_PKIData OBJ_id_cct,2L
|
1836
|
+
|
1837
|
+
#define SN_id_cct_PKIResponse "id-cct-PKIResponse"
|
1838
|
+
#define NID_id_cct_PKIResponse 362
|
1839
|
+
#define OBJ_id_cct_PKIResponse OBJ_id_cct,3L
|
1840
|
+
|
1841
|
+
#define SN_id_ppl_anyLanguage "id-ppl-anyLanguage"
|
1842
|
+
#define LN_id_ppl_anyLanguage "Any language"
|
1843
|
+
#define NID_id_ppl_anyLanguage 664
|
1844
|
+
#define OBJ_id_ppl_anyLanguage OBJ_id_ppl,0L
|
1845
|
+
|
1846
|
+
#define SN_id_ppl_inheritAll "id-ppl-inheritAll"
|
1847
|
+
#define LN_id_ppl_inheritAll "Inherit all"
|
1848
|
+
#define NID_id_ppl_inheritAll 665
|
1849
|
+
#define OBJ_id_ppl_inheritAll OBJ_id_ppl,1L
|
1850
|
+
|
1851
|
+
#define SN_Independent "id-ppl-independent"
|
1852
|
+
#define LN_Independent "Independent"
|
1853
|
+
#define NID_Independent 667
|
1854
|
+
#define OBJ_Independent OBJ_id_ppl,2L
|
1855
|
+
|
1856
|
+
#define SN_ad_OCSP "OCSP"
|
1857
|
+
#define LN_ad_OCSP "OCSP"
|
1858
|
+
#define NID_ad_OCSP 178
|
1859
|
+
#define OBJ_ad_OCSP OBJ_id_ad,1L
|
1860
|
+
|
1861
|
+
#define SN_ad_ca_issuers "caIssuers"
|
1862
|
+
#define LN_ad_ca_issuers "CA Issuers"
|
1863
|
+
#define NID_ad_ca_issuers 179
|
1864
|
+
#define OBJ_ad_ca_issuers OBJ_id_ad,2L
|
1865
|
+
|
1866
|
+
#define SN_ad_timeStamping "ad_timestamping"
|
1867
|
+
#define LN_ad_timeStamping "AD Time Stamping"
|
1868
|
+
#define NID_ad_timeStamping 363
|
1869
|
+
#define OBJ_ad_timeStamping OBJ_id_ad,3L
|
1870
|
+
|
1871
|
+
#define SN_ad_dvcs "AD_DVCS"
|
1872
|
+
#define LN_ad_dvcs "ad dvcs"
|
1873
|
+
#define NID_ad_dvcs 364
|
1874
|
+
#define OBJ_ad_dvcs OBJ_id_ad,4L
|
1875
|
+
|
1876
|
+
#define SN_caRepository "caRepository"
|
1877
|
+
#define LN_caRepository "CA Repository"
|
1878
|
+
#define NID_caRepository 785
|
1879
|
+
#define OBJ_caRepository OBJ_id_ad,5L
|
1880
|
+
|
1881
|
+
#define OBJ_id_pkix_OCSP OBJ_ad_OCSP
|
1882
|
+
|
1883
|
+
#define SN_id_pkix_OCSP_basic "basicOCSPResponse"
|
1884
|
+
#define LN_id_pkix_OCSP_basic "Basic OCSP Response"
|
1885
|
+
#define NID_id_pkix_OCSP_basic 365
|
1886
|
+
#define OBJ_id_pkix_OCSP_basic OBJ_id_pkix_OCSP,1L
|
1887
|
+
|
1888
|
+
#define SN_id_pkix_OCSP_Nonce "Nonce"
|
1889
|
+
#define LN_id_pkix_OCSP_Nonce "OCSP Nonce"
|
1890
|
+
#define NID_id_pkix_OCSP_Nonce 366
|
1891
|
+
#define OBJ_id_pkix_OCSP_Nonce OBJ_id_pkix_OCSP,2L
|
1892
|
+
|
1893
|
+
#define SN_id_pkix_OCSP_CrlID "CrlID"
|
1894
|
+
#define LN_id_pkix_OCSP_CrlID "OCSP CRL ID"
|
1895
|
+
#define NID_id_pkix_OCSP_CrlID 367
|
1896
|
+
#define OBJ_id_pkix_OCSP_CrlID OBJ_id_pkix_OCSP,3L
|
1897
|
+
|
1898
|
+
#define SN_id_pkix_OCSP_acceptableResponses "acceptableResponses"
|
1899
|
+
#define LN_id_pkix_OCSP_acceptableResponses "Acceptable OCSP Responses"
|
1900
|
+
#define NID_id_pkix_OCSP_acceptableResponses 368
|
1901
|
+
#define OBJ_id_pkix_OCSP_acceptableResponses OBJ_id_pkix_OCSP,4L
|
1902
|
+
|
1903
|
+
#define SN_id_pkix_OCSP_noCheck "noCheck"
|
1904
|
+
#define LN_id_pkix_OCSP_noCheck "OCSP No Check"
|
1905
|
+
#define NID_id_pkix_OCSP_noCheck 369
|
1906
|
+
#define OBJ_id_pkix_OCSP_noCheck OBJ_id_pkix_OCSP,5L
|
1907
|
+
|
1908
|
+
#define SN_id_pkix_OCSP_archiveCutoff "archiveCutoff"
|
1909
|
+
#define LN_id_pkix_OCSP_archiveCutoff "OCSP Archive Cutoff"
|
1910
|
+
#define NID_id_pkix_OCSP_archiveCutoff 370
|
1911
|
+
#define OBJ_id_pkix_OCSP_archiveCutoff OBJ_id_pkix_OCSP,6L
|
1912
|
+
|
1913
|
+
#define SN_id_pkix_OCSP_serviceLocator "serviceLocator"
|
1914
|
+
#define LN_id_pkix_OCSP_serviceLocator "OCSP Service Locator"
|
1915
|
+
#define NID_id_pkix_OCSP_serviceLocator 371
|
1916
|
+
#define OBJ_id_pkix_OCSP_serviceLocator OBJ_id_pkix_OCSP,7L
|
1917
|
+
|
1918
|
+
#define SN_id_pkix_OCSP_extendedStatus "extendedStatus"
|
1919
|
+
#define LN_id_pkix_OCSP_extendedStatus "Extended OCSP Status"
|
1920
|
+
#define NID_id_pkix_OCSP_extendedStatus 372
|
1921
|
+
#define OBJ_id_pkix_OCSP_extendedStatus OBJ_id_pkix_OCSP,8L
|
1922
|
+
|
1923
|
+
#define SN_id_pkix_OCSP_valid "valid"
|
1924
|
+
#define NID_id_pkix_OCSP_valid 373
|
1925
|
+
#define OBJ_id_pkix_OCSP_valid OBJ_id_pkix_OCSP,9L
|
1926
|
+
|
1927
|
+
#define SN_id_pkix_OCSP_path "path"
|
1928
|
+
#define NID_id_pkix_OCSP_path 374
|
1929
|
+
#define OBJ_id_pkix_OCSP_path OBJ_id_pkix_OCSP,10L
|
1930
|
+
|
1931
|
+
#define SN_id_pkix_OCSP_trustRoot "trustRoot"
|
1932
|
+
#define LN_id_pkix_OCSP_trustRoot "Trust Root"
|
1933
|
+
#define NID_id_pkix_OCSP_trustRoot 375
|
1934
|
+
#define OBJ_id_pkix_OCSP_trustRoot OBJ_id_pkix_OCSP,11L
|
1935
|
+
|
1936
|
+
#define SN_algorithm "algorithm"
|
1937
|
+
#define LN_algorithm "algorithm"
|
1938
|
+
#define NID_algorithm 376
|
1939
|
+
#define OBJ_algorithm 1L,3L,14L,3L,2L
|
1940
|
+
|
1941
|
+
#define SN_md5WithRSA "RSA-NP-MD5"
|
1942
|
+
#define LN_md5WithRSA "md5WithRSA"
|
1943
|
+
#define NID_md5WithRSA 104
|
1944
|
+
#define OBJ_md5WithRSA OBJ_algorithm,3L
|
1945
|
+
|
1946
|
+
#define SN_des_ecb "DES-ECB"
|
1947
|
+
#define LN_des_ecb "des-ecb"
|
1948
|
+
#define NID_des_ecb 29
|
1949
|
+
#define OBJ_des_ecb OBJ_algorithm,6L
|
1950
|
+
|
1951
|
+
#define SN_des_cbc "DES-CBC"
|
1952
|
+
#define LN_des_cbc "des-cbc"
|
1953
|
+
#define NID_des_cbc 31
|
1954
|
+
#define OBJ_des_cbc OBJ_algorithm,7L
|
1955
|
+
|
1956
|
+
#define SN_des_ofb64 "DES-OFB"
|
1957
|
+
#define LN_des_ofb64 "des-ofb"
|
1958
|
+
#define NID_des_ofb64 45
|
1959
|
+
#define OBJ_des_ofb64 OBJ_algorithm,8L
|
1960
|
+
|
1961
|
+
#define SN_des_cfb64 "DES-CFB"
|
1962
|
+
#define LN_des_cfb64 "des-cfb"
|
1963
|
+
#define NID_des_cfb64 30
|
1964
|
+
#define OBJ_des_cfb64 OBJ_algorithm,9L
|
1965
|
+
|
1966
|
+
#define SN_rsaSignature "rsaSignature"
|
1967
|
+
#define NID_rsaSignature 377
|
1968
|
+
#define OBJ_rsaSignature OBJ_algorithm,11L
|
1969
|
+
|
1970
|
+
#define SN_dsa_2 "DSA-old"
|
1971
|
+
#define LN_dsa_2 "dsaEncryption-old"
|
1972
|
+
#define NID_dsa_2 67
|
1973
|
+
#define OBJ_dsa_2 OBJ_algorithm,12L
|
1974
|
+
|
1975
|
+
#define SN_dsaWithSHA "DSA-SHA"
|
1976
|
+
#define LN_dsaWithSHA "dsaWithSHA"
|
1977
|
+
#define NID_dsaWithSHA 66
|
1978
|
+
#define OBJ_dsaWithSHA OBJ_algorithm,13L
|
1979
|
+
|
1980
|
+
#define SN_shaWithRSAEncryption "RSA-SHA"
|
1981
|
+
#define LN_shaWithRSAEncryption "shaWithRSAEncryption"
|
1982
|
+
#define NID_shaWithRSAEncryption 42
|
1983
|
+
#define OBJ_shaWithRSAEncryption OBJ_algorithm,15L
|
1984
|
+
|
1985
|
+
#define SN_des_ede_ecb "DES-EDE"
|
1986
|
+
#define LN_des_ede_ecb "des-ede"
|
1987
|
+
#define NID_des_ede_ecb 32
|
1988
|
+
#define OBJ_des_ede_ecb OBJ_algorithm,17L
|
1989
|
+
|
1990
|
+
#define SN_des_ede3_ecb "DES-EDE3"
|
1991
|
+
#define LN_des_ede3_ecb "des-ede3"
|
1992
|
+
#define NID_des_ede3_ecb 33
|
1993
|
+
|
1994
|
+
#define SN_des_ede_cbc "DES-EDE-CBC"
|
1995
|
+
#define LN_des_ede_cbc "des-ede-cbc"
|
1996
|
+
#define NID_des_ede_cbc 43
|
1997
|
+
|
1998
|
+
#define SN_des_ede_cfb64 "DES-EDE-CFB"
|
1999
|
+
#define LN_des_ede_cfb64 "des-ede-cfb"
|
2000
|
+
#define NID_des_ede_cfb64 60
|
2001
|
+
|
2002
|
+
#define SN_des_ede3_cfb64 "DES-EDE3-CFB"
|
2003
|
+
#define LN_des_ede3_cfb64 "des-ede3-cfb"
|
2004
|
+
#define NID_des_ede3_cfb64 61
|
2005
|
+
|
2006
|
+
#define SN_des_ede_ofb64 "DES-EDE-OFB"
|
2007
|
+
#define LN_des_ede_ofb64 "des-ede-ofb"
|
2008
|
+
#define NID_des_ede_ofb64 62
|
2009
|
+
|
2010
|
+
#define SN_des_ede3_ofb64 "DES-EDE3-OFB"
|
2011
|
+
#define LN_des_ede3_ofb64 "des-ede3-ofb"
|
2012
|
+
#define NID_des_ede3_ofb64 63
|
2013
|
+
|
2014
|
+
#define SN_desx_cbc "DESX-CBC"
|
2015
|
+
#define LN_desx_cbc "desx-cbc"
|
2016
|
+
#define NID_desx_cbc 80
|
2017
|
+
|
2018
|
+
#define SN_sha "SHA"
|
2019
|
+
#define LN_sha "sha"
|
2020
|
+
#define NID_sha 41
|
2021
|
+
#define OBJ_sha OBJ_algorithm,18L
|
2022
|
+
|
2023
|
+
#define SN_sha1 "SHA1"
|
2024
|
+
#define LN_sha1 "sha1"
|
2025
|
+
#define NID_sha1 64
|
2026
|
+
#define OBJ_sha1 OBJ_algorithm,26L
|
2027
|
+
|
2028
|
+
#define SN_dsaWithSHA1_2 "DSA-SHA1-old"
|
2029
|
+
#define LN_dsaWithSHA1_2 "dsaWithSHA1-old"
|
2030
|
+
#define NID_dsaWithSHA1_2 70
|
2031
|
+
#define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L
|
2032
|
+
|
2033
|
+
#define SN_sha1WithRSA "RSA-SHA1-2"
|
2034
|
+
#define LN_sha1WithRSA "sha1WithRSA"
|
2035
|
+
#define NID_sha1WithRSA 115
|
2036
|
+
#define OBJ_sha1WithRSA OBJ_algorithm,29L
|
2037
|
+
|
2038
|
+
#define SN_ripemd160 "RIPEMD160"
|
2039
|
+
#define LN_ripemd160 "ripemd160"
|
2040
|
+
#define NID_ripemd160 117
|
2041
|
+
#define OBJ_ripemd160 1L,3L,36L,3L,2L,1L
|
2042
|
+
|
2043
|
+
#define SN_ripemd160WithRSA "RSA-RIPEMD160"
|
2044
|
+
#define LN_ripemd160WithRSA "ripemd160WithRSA"
|
2045
|
+
#define NID_ripemd160WithRSA 119
|
2046
|
+
#define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L
|
2047
|
+
|
2048
|
+
#define SN_sxnet "SXNetID"
|
2049
|
+
#define LN_sxnet "Strong Extranet ID"
|
2050
|
+
#define NID_sxnet 143
|
2051
|
+
#define OBJ_sxnet 1L,3L,101L,1L,4L,1L
|
2052
|
+
|
2053
|
+
#define SN_X500 "X500"
|
2054
|
+
#define LN_X500 "directory services (X.500)"
|
2055
|
+
#define NID_X500 11
|
2056
|
+
#define OBJ_X500 2L,5L
|
2057
|
+
|
2058
|
+
#define SN_X509 "X509"
|
2059
|
+
#define NID_X509 12
|
2060
|
+
#define OBJ_X509 OBJ_X500,4L
|
2061
|
+
|
2062
|
+
#define SN_commonName "CN"
|
2063
|
+
#define LN_commonName "commonName"
|
2064
|
+
#define NID_commonName 13
|
2065
|
+
#define OBJ_commonName OBJ_X509,3L
|
2066
|
+
|
2067
|
+
#define SN_surname "SN"
|
2068
|
+
#define LN_surname "surname"
|
2069
|
+
#define NID_surname 100
|
2070
|
+
#define OBJ_surname OBJ_X509,4L
|
2071
|
+
|
2072
|
+
#define LN_serialNumber "serialNumber"
|
2073
|
+
#define NID_serialNumber 105
|
2074
|
+
#define OBJ_serialNumber OBJ_X509,5L
|
2075
|
+
|
2076
|
+
#define SN_countryName "C"
|
2077
|
+
#define LN_countryName "countryName"
|
2078
|
+
#define NID_countryName 14
|
2079
|
+
#define OBJ_countryName OBJ_X509,6L
|
2080
|
+
|
2081
|
+
#define SN_localityName "L"
|
2082
|
+
#define LN_localityName "localityName"
|
2083
|
+
#define NID_localityName 15
|
2084
|
+
#define OBJ_localityName OBJ_X509,7L
|
2085
|
+
|
2086
|
+
#define SN_stateOrProvinceName "ST"
|
2087
|
+
#define LN_stateOrProvinceName "stateOrProvinceName"
|
2088
|
+
#define NID_stateOrProvinceName 16
|
2089
|
+
#define OBJ_stateOrProvinceName OBJ_X509,8L
|
2090
|
+
|
2091
|
+
#define SN_streetAddress "street"
|
2092
|
+
#define LN_streetAddress "streetAddress"
|
2093
|
+
#define NID_streetAddress 660
|
2094
|
+
#define OBJ_streetAddress OBJ_X509,9L
|
2095
|
+
|
2096
|
+
#define SN_organizationName "O"
|
2097
|
+
#define LN_organizationName "organizationName"
|
2098
|
+
#define NID_organizationName 17
|
2099
|
+
#define OBJ_organizationName OBJ_X509,10L
|
2100
|
+
|
2101
|
+
#define SN_organizationalUnitName "OU"
|
2102
|
+
#define LN_organizationalUnitName "organizationalUnitName"
|
2103
|
+
#define NID_organizationalUnitName 18
|
2104
|
+
#define OBJ_organizationalUnitName OBJ_X509,11L
|
2105
|
+
|
2106
|
+
#define SN_title "title"
|
2107
|
+
#define LN_title "title"
|
2108
|
+
#define NID_title 106
|
2109
|
+
#define OBJ_title OBJ_X509,12L
|
2110
|
+
|
2111
|
+
#define LN_description "description"
|
2112
|
+
#define NID_description 107
|
2113
|
+
#define OBJ_description OBJ_X509,13L
|
2114
|
+
|
2115
|
+
#define LN_searchGuide "searchGuide"
|
2116
|
+
#define NID_searchGuide 859
|
2117
|
+
#define OBJ_searchGuide OBJ_X509,14L
|
2118
|
+
|
2119
|
+
#define LN_businessCategory "businessCategory"
|
2120
|
+
#define NID_businessCategory 860
|
2121
|
+
#define OBJ_businessCategory OBJ_X509,15L
|
2122
|
+
|
2123
|
+
#define LN_postalAddress "postalAddress"
|
2124
|
+
#define NID_postalAddress 861
|
2125
|
+
#define OBJ_postalAddress OBJ_X509,16L
|
2126
|
+
|
2127
|
+
#define LN_postalCode "postalCode"
|
2128
|
+
#define NID_postalCode 661
|
2129
|
+
#define OBJ_postalCode OBJ_X509,17L
|
2130
|
+
|
2131
|
+
#define LN_postOfficeBox "postOfficeBox"
|
2132
|
+
#define NID_postOfficeBox 862
|
2133
|
+
#define OBJ_postOfficeBox OBJ_X509,18L
|
2134
|
+
|
2135
|
+
#define LN_physicalDeliveryOfficeName "physicalDeliveryOfficeName"
|
2136
|
+
#define NID_physicalDeliveryOfficeName 863
|
2137
|
+
#define OBJ_physicalDeliveryOfficeName OBJ_X509,19L
|
2138
|
+
|
2139
|
+
#define LN_telephoneNumber "telephoneNumber"
|
2140
|
+
#define NID_telephoneNumber 864
|
2141
|
+
#define OBJ_telephoneNumber OBJ_X509,20L
|
2142
|
+
|
2143
|
+
#define LN_telexNumber "telexNumber"
|
2144
|
+
#define NID_telexNumber 865
|
2145
|
+
#define OBJ_telexNumber OBJ_X509,21L
|
2146
|
+
|
2147
|
+
#define LN_teletexTerminalIdentifier "teletexTerminalIdentifier"
|
2148
|
+
#define NID_teletexTerminalIdentifier 866
|
2149
|
+
#define OBJ_teletexTerminalIdentifier OBJ_X509,22L
|
2150
|
+
|
2151
|
+
#define LN_facsimileTelephoneNumber "facsimileTelephoneNumber"
|
2152
|
+
#define NID_facsimileTelephoneNumber 867
|
2153
|
+
#define OBJ_facsimileTelephoneNumber OBJ_X509,23L
|
2154
|
+
|
2155
|
+
#define LN_x121Address "x121Address"
|
2156
|
+
#define NID_x121Address 868
|
2157
|
+
#define OBJ_x121Address OBJ_X509,24L
|
2158
|
+
|
2159
|
+
#define LN_internationaliSDNNumber "internationaliSDNNumber"
|
2160
|
+
#define NID_internationaliSDNNumber 869
|
2161
|
+
#define OBJ_internationaliSDNNumber OBJ_X509,25L
|
2162
|
+
|
2163
|
+
#define LN_registeredAddress "registeredAddress"
|
2164
|
+
#define NID_registeredAddress 870
|
2165
|
+
#define OBJ_registeredAddress OBJ_X509,26L
|
2166
|
+
|
2167
|
+
#define LN_destinationIndicator "destinationIndicator"
|
2168
|
+
#define NID_destinationIndicator 871
|
2169
|
+
#define OBJ_destinationIndicator OBJ_X509,27L
|
2170
|
+
|
2171
|
+
#define LN_preferredDeliveryMethod "preferredDeliveryMethod"
|
2172
|
+
#define NID_preferredDeliveryMethod 872
|
2173
|
+
#define OBJ_preferredDeliveryMethod OBJ_X509,28L
|
2174
|
+
|
2175
|
+
#define LN_presentationAddress "presentationAddress"
|
2176
|
+
#define NID_presentationAddress 873
|
2177
|
+
#define OBJ_presentationAddress OBJ_X509,29L
|
2178
|
+
|
2179
|
+
#define LN_supportedApplicationContext "supportedApplicationContext"
|
2180
|
+
#define NID_supportedApplicationContext 874
|
2181
|
+
#define OBJ_supportedApplicationContext OBJ_X509,30L
|
2182
|
+
|
2183
|
+
#define SN_member "member"
|
2184
|
+
#define NID_member 875
|
2185
|
+
#define OBJ_member OBJ_X509,31L
|
2186
|
+
|
2187
|
+
#define SN_owner "owner"
|
2188
|
+
#define NID_owner 876
|
2189
|
+
#define OBJ_owner OBJ_X509,32L
|
2190
|
+
|
2191
|
+
#define LN_roleOccupant "roleOccupant"
|
2192
|
+
#define NID_roleOccupant 877
|
2193
|
+
#define OBJ_roleOccupant OBJ_X509,33L
|
2194
|
+
|
2195
|
+
#define SN_seeAlso "seeAlso"
|
2196
|
+
#define NID_seeAlso 878
|
2197
|
+
#define OBJ_seeAlso OBJ_X509,34L
|
2198
|
+
|
2199
|
+
#define LN_userPassword "userPassword"
|
2200
|
+
#define NID_userPassword 879
|
2201
|
+
#define OBJ_userPassword OBJ_X509,35L
|
2202
|
+
|
2203
|
+
#define LN_userCertificate "userCertificate"
|
2204
|
+
#define NID_userCertificate 880
|
2205
|
+
#define OBJ_userCertificate OBJ_X509,36L
|
2206
|
+
|
2207
|
+
#define LN_cACertificate "cACertificate"
|
2208
|
+
#define NID_cACertificate 881
|
2209
|
+
#define OBJ_cACertificate OBJ_X509,37L
|
2210
|
+
|
2211
|
+
#define LN_authorityRevocationList "authorityRevocationList"
|
2212
|
+
#define NID_authorityRevocationList 882
|
2213
|
+
#define OBJ_authorityRevocationList OBJ_X509,38L
|
2214
|
+
|
2215
|
+
#define LN_certificateRevocationList "certificateRevocationList"
|
2216
|
+
#define NID_certificateRevocationList 883
|
2217
|
+
#define OBJ_certificateRevocationList OBJ_X509,39L
|
2218
|
+
|
2219
|
+
#define LN_crossCertificatePair "crossCertificatePair"
|
2220
|
+
#define NID_crossCertificatePair 884
|
2221
|
+
#define OBJ_crossCertificatePair OBJ_X509,40L
|
2222
|
+
|
2223
|
+
#define SN_name "name"
|
2224
|
+
#define LN_name "name"
|
2225
|
+
#define NID_name 173
|
2226
|
+
#define OBJ_name OBJ_X509,41L
|
2227
|
+
|
2228
|
+
#define SN_givenName "GN"
|
2229
|
+
#define LN_givenName "givenName"
|
2230
|
+
#define NID_givenName 99
|
2231
|
+
#define OBJ_givenName OBJ_X509,42L
|
2232
|
+
|
2233
|
+
#define SN_initials "initials"
|
2234
|
+
#define LN_initials "initials"
|
2235
|
+
#define NID_initials 101
|
2236
|
+
#define OBJ_initials OBJ_X509,43L
|
2237
|
+
|
2238
|
+
#define LN_generationQualifier "generationQualifier"
|
2239
|
+
#define NID_generationQualifier 509
|
2240
|
+
#define OBJ_generationQualifier OBJ_X509,44L
|
2241
|
+
|
2242
|
+
#define LN_x500UniqueIdentifier "x500UniqueIdentifier"
|
2243
|
+
#define NID_x500UniqueIdentifier 503
|
2244
|
+
#define OBJ_x500UniqueIdentifier OBJ_X509,45L
|
2245
|
+
|
2246
|
+
#define SN_dnQualifier "dnQualifier"
|
2247
|
+
#define LN_dnQualifier "dnQualifier"
|
2248
|
+
#define NID_dnQualifier 174
|
2249
|
+
#define OBJ_dnQualifier OBJ_X509,46L
|
2250
|
+
|
2251
|
+
#define LN_enhancedSearchGuide "enhancedSearchGuide"
|
2252
|
+
#define NID_enhancedSearchGuide 885
|
2253
|
+
#define OBJ_enhancedSearchGuide OBJ_X509,47L
|
2254
|
+
|
2255
|
+
#define LN_protocolInformation "protocolInformation"
|
2256
|
+
#define NID_protocolInformation 886
|
2257
|
+
#define OBJ_protocolInformation OBJ_X509,48L
|
2258
|
+
|
2259
|
+
#define LN_distinguishedName "distinguishedName"
|
2260
|
+
#define NID_distinguishedName 887
|
2261
|
+
#define OBJ_distinguishedName OBJ_X509,49L
|
2262
|
+
|
2263
|
+
#define LN_uniqueMember "uniqueMember"
|
2264
|
+
#define NID_uniqueMember 888
|
2265
|
+
#define OBJ_uniqueMember OBJ_X509,50L
|
2266
|
+
|
2267
|
+
#define LN_houseIdentifier "houseIdentifier"
|
2268
|
+
#define NID_houseIdentifier 889
|
2269
|
+
#define OBJ_houseIdentifier OBJ_X509,51L
|
2270
|
+
|
2271
|
+
#define LN_supportedAlgorithms "supportedAlgorithms"
|
2272
|
+
#define NID_supportedAlgorithms 890
|
2273
|
+
#define OBJ_supportedAlgorithms OBJ_X509,52L
|
2274
|
+
|
2275
|
+
#define LN_deltaRevocationList "deltaRevocationList"
|
2276
|
+
#define NID_deltaRevocationList 891
|
2277
|
+
#define OBJ_deltaRevocationList OBJ_X509,53L
|
2278
|
+
|
2279
|
+
#define SN_dmdName "dmdName"
|
2280
|
+
#define NID_dmdName 892
|
2281
|
+
#define OBJ_dmdName OBJ_X509,54L
|
2282
|
+
|
2283
|
+
#define LN_pseudonym "pseudonym"
|
2284
|
+
#define NID_pseudonym 510
|
2285
|
+
#define OBJ_pseudonym OBJ_X509,65L
|
2286
|
+
|
2287
|
+
#define SN_role "role"
|
2288
|
+
#define LN_role "role"
|
2289
|
+
#define NID_role 400
|
2290
|
+
#define OBJ_role OBJ_X509,72L
|
2291
|
+
|
2292
|
+
#define SN_X500algorithms "X500algorithms"
|
2293
|
+
#define LN_X500algorithms "directory services - algorithms"
|
2294
|
+
#define NID_X500algorithms 378
|
2295
|
+
#define OBJ_X500algorithms OBJ_X500,8L
|
2296
|
+
|
2297
|
+
#define SN_rsa "RSA"
|
2298
|
+
#define LN_rsa "rsa"
|
2299
|
+
#define NID_rsa 19
|
2300
|
+
#define OBJ_rsa OBJ_X500algorithms,1L,1L
|
2301
|
+
|
2302
|
+
#define SN_mdc2WithRSA "RSA-MDC2"
|
2303
|
+
#define LN_mdc2WithRSA "mdc2WithRSA"
|
2304
|
+
#define NID_mdc2WithRSA 96
|
2305
|
+
#define OBJ_mdc2WithRSA OBJ_X500algorithms,3L,100L
|
2306
|
+
|
2307
|
+
#define SN_mdc2 "MDC2"
|
2308
|
+
#define LN_mdc2 "mdc2"
|
2309
|
+
#define NID_mdc2 95
|
2310
|
+
#define OBJ_mdc2 OBJ_X500algorithms,3L,101L
|
2311
|
+
|
2312
|
+
#define SN_id_ce "id-ce"
|
2313
|
+
#define NID_id_ce 81
|
2314
|
+
#define OBJ_id_ce OBJ_X500,29L
|
2315
|
+
|
2316
|
+
#define SN_subject_directory_attributes "subjectDirectoryAttributes"
|
2317
|
+
#define LN_subject_directory_attributes "X509v3 Subject Directory Attributes"
|
2318
|
+
#define NID_subject_directory_attributes 769
|
2319
|
+
#define OBJ_subject_directory_attributes OBJ_id_ce,9L
|
2320
|
+
|
2321
|
+
#define SN_subject_key_identifier "subjectKeyIdentifier"
|
2322
|
+
#define LN_subject_key_identifier "X509v3 Subject Key Identifier"
|
2323
|
+
#define NID_subject_key_identifier 82
|
2324
|
+
#define OBJ_subject_key_identifier OBJ_id_ce,14L
|
2325
|
+
|
2326
|
+
#define SN_key_usage "keyUsage"
|
2327
|
+
#define LN_key_usage "X509v3 Key Usage"
|
2328
|
+
#define NID_key_usage 83
|
2329
|
+
#define OBJ_key_usage OBJ_id_ce,15L
|
2330
|
+
|
2331
|
+
#define SN_private_key_usage_period "privateKeyUsagePeriod"
|
2332
|
+
#define LN_private_key_usage_period "X509v3 Private Key Usage Period"
|
2333
|
+
#define NID_private_key_usage_period 84
|
2334
|
+
#define OBJ_private_key_usage_period OBJ_id_ce,16L
|
2335
|
+
|
2336
|
+
#define SN_subject_alt_name "subjectAltName"
|
2337
|
+
#define LN_subject_alt_name "X509v3 Subject Alternative Name"
|
2338
|
+
#define NID_subject_alt_name 85
|
2339
|
+
#define OBJ_subject_alt_name OBJ_id_ce,17L
|
2340
|
+
|
2341
|
+
#define SN_issuer_alt_name "issuerAltName"
|
2342
|
+
#define LN_issuer_alt_name "X509v3 Issuer Alternative Name"
|
2343
|
+
#define NID_issuer_alt_name 86
|
2344
|
+
#define OBJ_issuer_alt_name OBJ_id_ce,18L
|
2345
|
+
|
2346
|
+
#define SN_basic_constraints "basicConstraints"
|
2347
|
+
#define LN_basic_constraints "X509v3 Basic Constraints"
|
2348
|
+
#define NID_basic_constraints 87
|
2349
|
+
#define OBJ_basic_constraints OBJ_id_ce,19L
|
2350
|
+
|
2351
|
+
#define SN_crl_number "crlNumber"
|
2352
|
+
#define LN_crl_number "X509v3 CRL Number"
|
2353
|
+
#define NID_crl_number 88
|
2354
|
+
#define OBJ_crl_number OBJ_id_ce,20L
|
2355
|
+
|
2356
|
+
#define SN_crl_reason "CRLReason"
|
2357
|
+
#define LN_crl_reason "X509v3 CRL Reason Code"
|
2358
|
+
#define NID_crl_reason 141
|
2359
|
+
#define OBJ_crl_reason OBJ_id_ce,21L
|
2360
|
+
|
2361
|
+
#define SN_invalidity_date "invalidityDate"
|
2362
|
+
#define LN_invalidity_date "Invalidity Date"
|
2363
|
+
#define NID_invalidity_date 142
|
2364
|
+
#define OBJ_invalidity_date OBJ_id_ce,24L
|
2365
|
+
|
2366
|
+
#define SN_delta_crl "deltaCRL"
|
2367
|
+
#define LN_delta_crl "X509v3 Delta CRL Indicator"
|
2368
|
+
#define NID_delta_crl 140
|
2369
|
+
#define OBJ_delta_crl OBJ_id_ce,27L
|
2370
|
+
|
2371
|
+
#define SN_issuing_distribution_point "issuingDistributionPoint"
|
2372
|
+
#define LN_issuing_distribution_point "X509v3 Issuing Distribution Point"
|
2373
|
+
#define NID_issuing_distribution_point 770
|
2374
|
+
#define OBJ_issuing_distribution_point OBJ_id_ce,28L
|
2375
|
+
|
2376
|
+
#define SN_certificate_issuer "certificateIssuer"
|
2377
|
+
#define LN_certificate_issuer "X509v3 Certificate Issuer"
|
2378
|
+
#define NID_certificate_issuer 771
|
2379
|
+
#define OBJ_certificate_issuer OBJ_id_ce,29L
|
2380
|
+
|
2381
|
+
#define SN_name_constraints "nameConstraints"
|
2382
|
+
#define LN_name_constraints "X509v3 Name Constraints"
|
2383
|
+
#define NID_name_constraints 666
|
2384
|
+
#define OBJ_name_constraints OBJ_id_ce,30L
|
2385
|
+
|
2386
|
+
#define SN_crl_distribution_points "crlDistributionPoints"
|
2387
|
+
#define LN_crl_distribution_points "X509v3 CRL Distribution Points"
|
2388
|
+
#define NID_crl_distribution_points 103
|
2389
|
+
#define OBJ_crl_distribution_points OBJ_id_ce,31L
|
2390
|
+
|
2391
|
+
#define SN_certificate_policies "certificatePolicies"
|
2392
|
+
#define LN_certificate_policies "X509v3 Certificate Policies"
|
2393
|
+
#define NID_certificate_policies 89
|
2394
|
+
#define OBJ_certificate_policies OBJ_id_ce,32L
|
2395
|
+
|
2396
|
+
#define SN_any_policy "anyPolicy"
|
2397
|
+
#define LN_any_policy "X509v3 Any Policy"
|
2398
|
+
#define NID_any_policy 746
|
2399
|
+
#define OBJ_any_policy OBJ_certificate_policies,0L
|
2400
|
+
|
2401
|
+
#define SN_policy_mappings "policyMappings"
|
2402
|
+
#define LN_policy_mappings "X509v3 Policy Mappings"
|
2403
|
+
#define NID_policy_mappings 747
|
2404
|
+
#define OBJ_policy_mappings OBJ_id_ce,33L
|
2405
|
+
|
2406
|
+
#define SN_authority_key_identifier "authorityKeyIdentifier"
|
2407
|
+
#define LN_authority_key_identifier "X509v3 Authority Key Identifier"
|
2408
|
+
#define NID_authority_key_identifier 90
|
2409
|
+
#define OBJ_authority_key_identifier OBJ_id_ce,35L
|
2410
|
+
|
2411
|
+
#define SN_policy_constraints "policyConstraints"
|
2412
|
+
#define LN_policy_constraints "X509v3 Policy Constraints"
|
2413
|
+
#define NID_policy_constraints 401
|
2414
|
+
#define OBJ_policy_constraints OBJ_id_ce,36L
|
2415
|
+
|
2416
|
+
#define SN_ext_key_usage "extendedKeyUsage"
|
2417
|
+
#define LN_ext_key_usage "X509v3 Extended Key Usage"
|
2418
|
+
#define NID_ext_key_usage 126
|
2419
|
+
#define OBJ_ext_key_usage OBJ_id_ce,37L
|
2420
|
+
|
2421
|
+
#define SN_freshest_crl "freshestCRL"
|
2422
|
+
#define LN_freshest_crl "X509v3 Freshest CRL"
|
2423
|
+
#define NID_freshest_crl 857
|
2424
|
+
#define OBJ_freshest_crl OBJ_id_ce,46L
|
2425
|
+
|
2426
|
+
#define SN_inhibit_any_policy "inhibitAnyPolicy"
|
2427
|
+
#define LN_inhibit_any_policy "X509v3 Inhibit Any Policy"
|
2428
|
+
#define NID_inhibit_any_policy 748
|
2429
|
+
#define OBJ_inhibit_any_policy OBJ_id_ce,54L
|
2430
|
+
|
2431
|
+
#define SN_target_information "targetInformation"
|
2432
|
+
#define LN_target_information "X509v3 AC Targeting"
|
2433
|
+
#define NID_target_information 402
|
2434
|
+
#define OBJ_target_information OBJ_id_ce,55L
|
2435
|
+
|
2436
|
+
#define SN_no_rev_avail "noRevAvail"
|
2437
|
+
#define LN_no_rev_avail "X509v3 No Revocation Available"
|
2438
|
+
#define NID_no_rev_avail 403
|
2439
|
+
#define OBJ_no_rev_avail OBJ_id_ce,56L
|
2440
|
+
|
2441
|
+
#define SN_anyExtendedKeyUsage "anyExtendedKeyUsage"
|
2442
|
+
#define LN_anyExtendedKeyUsage "Any Extended Key Usage"
|
2443
|
+
#define NID_anyExtendedKeyUsage 910
|
2444
|
+
#define OBJ_anyExtendedKeyUsage OBJ_ext_key_usage,0L
|
2445
|
+
|
2446
|
+
#define SN_netscape "Netscape"
|
2447
|
+
#define LN_netscape "Netscape Communications Corp."
|
2448
|
+
#define NID_netscape 57
|
2449
|
+
#define OBJ_netscape 2L,16L,840L,1L,113730L
|
2450
|
+
|
2451
|
+
#define SN_netscape_cert_extension "nsCertExt"
|
2452
|
+
#define LN_netscape_cert_extension "Netscape Certificate Extension"
|
2453
|
+
#define NID_netscape_cert_extension 58
|
2454
|
+
#define OBJ_netscape_cert_extension OBJ_netscape,1L
|
2455
|
+
|
2456
|
+
#define SN_netscape_data_type "nsDataType"
|
2457
|
+
#define LN_netscape_data_type "Netscape Data Type"
|
2458
|
+
#define NID_netscape_data_type 59
|
2459
|
+
#define OBJ_netscape_data_type OBJ_netscape,2L
|
2460
|
+
|
2461
|
+
#define SN_netscape_cert_type "nsCertType"
|
2462
|
+
#define LN_netscape_cert_type "Netscape Cert Type"
|
2463
|
+
#define NID_netscape_cert_type 71
|
2464
|
+
#define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L
|
2465
|
+
|
2466
|
+
#define SN_netscape_base_url "nsBaseUrl"
|
2467
|
+
#define LN_netscape_base_url "Netscape Base Url"
|
2468
|
+
#define NID_netscape_base_url 72
|
2469
|
+
#define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L
|
2470
|
+
|
2471
|
+
#define SN_netscape_revocation_url "nsRevocationUrl"
|
2472
|
+
#define LN_netscape_revocation_url "Netscape Revocation Url"
|
2473
|
+
#define NID_netscape_revocation_url 73
|
2474
|
+
#define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L
|
2475
|
+
|
2476
|
+
#define SN_netscape_ca_revocation_url "nsCaRevocationUrl"
|
2477
|
+
#define LN_netscape_ca_revocation_url "Netscape CA Revocation Url"
|
2478
|
+
#define NID_netscape_ca_revocation_url 74
|
2479
|
+
#define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L
|
2480
|
+
|
2481
|
+
#define SN_netscape_renewal_url "nsRenewalUrl"
|
2482
|
+
#define LN_netscape_renewal_url "Netscape Renewal Url"
|
2483
|
+
#define NID_netscape_renewal_url 75
|
2484
|
+
#define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L
|
2485
|
+
|
2486
|
+
#define SN_netscape_ca_policy_url "nsCaPolicyUrl"
|
2487
|
+
#define LN_netscape_ca_policy_url "Netscape CA Policy Url"
|
2488
|
+
#define NID_netscape_ca_policy_url 76
|
2489
|
+
#define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L
|
2490
|
+
|
2491
|
+
#define SN_netscape_ssl_server_name "nsSslServerName"
|
2492
|
+
#define LN_netscape_ssl_server_name "Netscape SSL Server Name"
|
2493
|
+
#define NID_netscape_ssl_server_name 77
|
2494
|
+
#define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L
|
2495
|
+
|
2496
|
+
#define SN_netscape_comment "nsComment"
|
2497
|
+
#define LN_netscape_comment "Netscape Comment"
|
2498
|
+
#define NID_netscape_comment 78
|
2499
|
+
#define OBJ_netscape_comment OBJ_netscape_cert_extension,13L
|
2500
|
+
|
2501
|
+
#define SN_netscape_cert_sequence "nsCertSequence"
|
2502
|
+
#define LN_netscape_cert_sequence "Netscape Certificate Sequence"
|
2503
|
+
#define NID_netscape_cert_sequence 79
|
2504
|
+
#define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L
|
2505
|
+
|
2506
|
+
#define SN_ns_sgc "nsSGC"
|
2507
|
+
#define LN_ns_sgc "Netscape Server Gated Crypto"
|
2508
|
+
#define NID_ns_sgc 139
|
2509
|
+
#define OBJ_ns_sgc OBJ_netscape,4L,1L
|
2510
|
+
|
2511
|
+
#define SN_org "ORG"
|
2512
|
+
#define LN_org "org"
|
2513
|
+
#define NID_org 379
|
2514
|
+
#define OBJ_org OBJ_iso,3L
|
2515
|
+
|
2516
|
+
#define SN_dod "DOD"
|
2517
|
+
#define LN_dod "dod"
|
2518
|
+
#define NID_dod 380
|
2519
|
+
#define OBJ_dod OBJ_org,6L
|
2520
|
+
|
2521
|
+
#define SN_iana "IANA"
|
2522
|
+
#define LN_iana "iana"
|
2523
|
+
#define NID_iana 381
|
2524
|
+
#define OBJ_iana OBJ_dod,1L
|
2525
|
+
|
2526
|
+
#define OBJ_internet OBJ_iana
|
2527
|
+
|
2528
|
+
#define SN_Directory "directory"
|
2529
|
+
#define LN_Directory "Directory"
|
2530
|
+
#define NID_Directory 382
|
2531
|
+
#define OBJ_Directory OBJ_internet,1L
|
2532
|
+
|
2533
|
+
#define SN_Management "mgmt"
|
2534
|
+
#define LN_Management "Management"
|
2535
|
+
#define NID_Management 383
|
2536
|
+
#define OBJ_Management OBJ_internet,2L
|
2537
|
+
|
2538
|
+
#define SN_Experimental "experimental"
|
2539
|
+
#define LN_Experimental "Experimental"
|
2540
|
+
#define NID_Experimental 384
|
2541
|
+
#define OBJ_Experimental OBJ_internet,3L
|
2542
|
+
|
2543
|
+
#define SN_Private "private"
|
2544
|
+
#define LN_Private "Private"
|
2545
|
+
#define NID_Private 385
|
2546
|
+
#define OBJ_Private OBJ_internet,4L
|
2547
|
+
|
2548
|
+
#define SN_Security "security"
|
2549
|
+
#define LN_Security "Security"
|
2550
|
+
#define NID_Security 386
|
2551
|
+
#define OBJ_Security OBJ_internet,5L
|
2552
|
+
|
2553
|
+
#define SN_SNMPv2 "snmpv2"
|
2554
|
+
#define LN_SNMPv2 "SNMPv2"
|
2555
|
+
#define NID_SNMPv2 387
|
2556
|
+
#define OBJ_SNMPv2 OBJ_internet,6L
|
2557
|
+
|
2558
|
+
#define LN_Mail "Mail"
|
2559
|
+
#define NID_Mail 388
|
2560
|
+
#define OBJ_Mail OBJ_internet,7L
|
2561
|
+
|
2562
|
+
#define SN_Enterprises "enterprises"
|
2563
|
+
#define LN_Enterprises "Enterprises"
|
2564
|
+
#define NID_Enterprises 389
|
2565
|
+
#define OBJ_Enterprises OBJ_Private,1L
|
2566
|
+
|
2567
|
+
#define SN_dcObject "dcobject"
|
2568
|
+
#define LN_dcObject "dcObject"
|
2569
|
+
#define NID_dcObject 390
|
2570
|
+
#define OBJ_dcObject OBJ_Enterprises,1466L,344L
|
2571
|
+
|
2572
|
+
#define SN_mime_mhs "mime-mhs"
|
2573
|
+
#define LN_mime_mhs "MIME MHS"
|
2574
|
+
#define NID_mime_mhs 504
|
2575
|
+
#define OBJ_mime_mhs OBJ_Mail,1L
|
2576
|
+
|
2577
|
+
#define SN_mime_mhs_headings "mime-mhs-headings"
|
2578
|
+
#define LN_mime_mhs_headings "mime-mhs-headings"
|
2579
|
+
#define NID_mime_mhs_headings 505
|
2580
|
+
#define OBJ_mime_mhs_headings OBJ_mime_mhs,1L
|
2581
|
+
|
2582
|
+
#define SN_mime_mhs_bodies "mime-mhs-bodies"
|
2583
|
+
#define LN_mime_mhs_bodies "mime-mhs-bodies"
|
2584
|
+
#define NID_mime_mhs_bodies 506
|
2585
|
+
#define OBJ_mime_mhs_bodies OBJ_mime_mhs,2L
|
2586
|
+
|
2587
|
+
#define SN_id_hex_partial_message "id-hex-partial-message"
|
2588
|
+
#define LN_id_hex_partial_message "id-hex-partial-message"
|
2589
|
+
#define NID_id_hex_partial_message 507
|
2590
|
+
#define OBJ_id_hex_partial_message OBJ_mime_mhs_headings,1L
|
2591
|
+
|
2592
|
+
#define SN_id_hex_multipart_message "id-hex-multipart-message"
|
2593
|
+
#define LN_id_hex_multipart_message "id-hex-multipart-message"
|
2594
|
+
#define NID_id_hex_multipart_message 508
|
2595
|
+
#define OBJ_id_hex_multipart_message OBJ_mime_mhs_headings,2L
|
2596
|
+
|
2597
|
+
#define SN_zlib_compression "ZLIB"
|
2598
|
+
#define LN_zlib_compression "zlib compression"
|
2599
|
+
#define NID_zlib_compression 125
|
2600
|
+
#define OBJ_zlib_compression OBJ_id_smime_alg,8L
|
2601
|
+
|
2602
|
+
#define OBJ_csor 2L,16L,840L,1L,101L,3L
|
2603
|
+
|
2604
|
+
#define OBJ_nistAlgorithms OBJ_csor,4L
|
2605
|
+
|
2606
|
+
#define OBJ_aes OBJ_nistAlgorithms,1L
|
2607
|
+
|
2608
|
+
#define SN_aes_128_ecb "AES-128-ECB"
|
2609
|
+
#define LN_aes_128_ecb "aes-128-ecb"
|
2610
|
+
#define NID_aes_128_ecb 418
|
2611
|
+
#define OBJ_aes_128_ecb OBJ_aes,1L
|
2612
|
+
|
2613
|
+
#define SN_aes_128_cbc "AES-128-CBC"
|
2614
|
+
#define LN_aes_128_cbc "aes-128-cbc"
|
2615
|
+
#define NID_aes_128_cbc 419
|
2616
|
+
#define OBJ_aes_128_cbc OBJ_aes,2L
|
2617
|
+
|
2618
|
+
#define SN_aes_128_ofb128 "AES-128-OFB"
|
2619
|
+
#define LN_aes_128_ofb128 "aes-128-ofb"
|
2620
|
+
#define NID_aes_128_ofb128 420
|
2621
|
+
#define OBJ_aes_128_ofb128 OBJ_aes,3L
|
2622
|
+
|
2623
|
+
#define SN_aes_128_cfb128 "AES-128-CFB"
|
2624
|
+
#define LN_aes_128_cfb128 "aes-128-cfb"
|
2625
|
+
#define NID_aes_128_cfb128 421
|
2626
|
+
#define OBJ_aes_128_cfb128 OBJ_aes,4L
|
2627
|
+
|
2628
|
+
#define SN_id_aes128_wrap "id-aes128-wrap"
|
2629
|
+
#define NID_id_aes128_wrap 788
|
2630
|
+
#define OBJ_id_aes128_wrap OBJ_aes,5L
|
2631
|
+
|
2632
|
+
#define SN_aes_128_gcm "id-aes128-GCM"
|
2633
|
+
#define LN_aes_128_gcm "aes-128-gcm"
|
2634
|
+
#define NID_aes_128_gcm 895
|
2635
|
+
#define OBJ_aes_128_gcm OBJ_aes,6L
|
2636
|
+
|
2637
|
+
#define SN_aes_128_ccm "id-aes128-CCM"
|
2638
|
+
#define LN_aes_128_ccm "aes-128-ccm"
|
2639
|
+
#define NID_aes_128_ccm 896
|
2640
|
+
#define OBJ_aes_128_ccm OBJ_aes,7L
|
2641
|
+
|
2642
|
+
#define SN_id_aes128_wrap_pad "id-aes128-wrap-pad"
|
2643
|
+
#define NID_id_aes128_wrap_pad 897
|
2644
|
+
#define OBJ_id_aes128_wrap_pad OBJ_aes,8L
|
2645
|
+
|
2646
|
+
#define SN_aes_192_ecb "AES-192-ECB"
|
2647
|
+
#define LN_aes_192_ecb "aes-192-ecb"
|
2648
|
+
#define NID_aes_192_ecb 422
|
2649
|
+
#define OBJ_aes_192_ecb OBJ_aes,21L
|
2650
|
+
|
2651
|
+
#define SN_aes_192_cbc "AES-192-CBC"
|
2652
|
+
#define LN_aes_192_cbc "aes-192-cbc"
|
2653
|
+
#define NID_aes_192_cbc 423
|
2654
|
+
#define OBJ_aes_192_cbc OBJ_aes,22L
|
2655
|
+
|
2656
|
+
#define SN_aes_192_ofb128 "AES-192-OFB"
|
2657
|
+
#define LN_aes_192_ofb128 "aes-192-ofb"
|
2658
|
+
#define NID_aes_192_ofb128 424
|
2659
|
+
#define OBJ_aes_192_ofb128 OBJ_aes,23L
|
2660
|
+
|
2661
|
+
#define SN_aes_192_cfb128 "AES-192-CFB"
|
2662
|
+
#define LN_aes_192_cfb128 "aes-192-cfb"
|
2663
|
+
#define NID_aes_192_cfb128 425
|
2664
|
+
#define OBJ_aes_192_cfb128 OBJ_aes,24L
|
2665
|
+
|
2666
|
+
#define SN_id_aes192_wrap "id-aes192-wrap"
|
2667
|
+
#define NID_id_aes192_wrap 789
|
2668
|
+
#define OBJ_id_aes192_wrap OBJ_aes,25L
|
2669
|
+
|
2670
|
+
#define SN_aes_192_gcm "id-aes192-GCM"
|
2671
|
+
#define LN_aes_192_gcm "aes-192-gcm"
|
2672
|
+
#define NID_aes_192_gcm 898
|
2673
|
+
#define OBJ_aes_192_gcm OBJ_aes,26L
|
2674
|
+
|
2675
|
+
#define SN_aes_192_ccm "id-aes192-CCM"
|
2676
|
+
#define LN_aes_192_ccm "aes-192-ccm"
|
2677
|
+
#define NID_aes_192_ccm 899
|
2678
|
+
#define OBJ_aes_192_ccm OBJ_aes,27L
|
2679
|
+
|
2680
|
+
#define SN_id_aes192_wrap_pad "id-aes192-wrap-pad"
|
2681
|
+
#define NID_id_aes192_wrap_pad 900
|
2682
|
+
#define OBJ_id_aes192_wrap_pad OBJ_aes,28L
|
2683
|
+
|
2684
|
+
#define SN_aes_256_ecb "AES-256-ECB"
|
2685
|
+
#define LN_aes_256_ecb "aes-256-ecb"
|
2686
|
+
#define NID_aes_256_ecb 426
|
2687
|
+
#define OBJ_aes_256_ecb OBJ_aes,41L
|
2688
|
+
|
2689
|
+
#define SN_aes_256_cbc "AES-256-CBC"
|
2690
|
+
#define LN_aes_256_cbc "aes-256-cbc"
|
2691
|
+
#define NID_aes_256_cbc 427
|
2692
|
+
#define OBJ_aes_256_cbc OBJ_aes,42L
|
2693
|
+
|
2694
|
+
#define SN_aes_256_ofb128 "AES-256-OFB"
|
2695
|
+
#define LN_aes_256_ofb128 "aes-256-ofb"
|
2696
|
+
#define NID_aes_256_ofb128 428
|
2697
|
+
#define OBJ_aes_256_ofb128 OBJ_aes,43L
|
2698
|
+
|
2699
|
+
#define SN_aes_256_cfb128 "AES-256-CFB"
|
2700
|
+
#define LN_aes_256_cfb128 "aes-256-cfb"
|
2701
|
+
#define NID_aes_256_cfb128 429
|
2702
|
+
#define OBJ_aes_256_cfb128 OBJ_aes,44L
|
2703
|
+
|
2704
|
+
#define SN_id_aes256_wrap "id-aes256-wrap"
|
2705
|
+
#define NID_id_aes256_wrap 790
|
2706
|
+
#define OBJ_id_aes256_wrap OBJ_aes,45L
|
2707
|
+
|
2708
|
+
#define SN_aes_256_gcm "id-aes256-GCM"
|
2709
|
+
#define LN_aes_256_gcm "aes-256-gcm"
|
2710
|
+
#define NID_aes_256_gcm 901
|
2711
|
+
#define OBJ_aes_256_gcm OBJ_aes,46L
|
2712
|
+
|
2713
|
+
#define SN_aes_256_ccm "id-aes256-CCM"
|
2714
|
+
#define LN_aes_256_ccm "aes-256-ccm"
|
2715
|
+
#define NID_aes_256_ccm 902
|
2716
|
+
#define OBJ_aes_256_ccm OBJ_aes,47L
|
2717
|
+
|
2718
|
+
#define SN_id_aes256_wrap_pad "id-aes256-wrap-pad"
|
2719
|
+
#define NID_id_aes256_wrap_pad 903
|
2720
|
+
#define OBJ_id_aes256_wrap_pad OBJ_aes,48L
|
2721
|
+
|
2722
|
+
#define SN_aes_128_cfb1 "AES-128-CFB1"
|
2723
|
+
#define LN_aes_128_cfb1 "aes-128-cfb1"
|
2724
|
+
#define NID_aes_128_cfb1 650
|
2725
|
+
|
2726
|
+
#define SN_aes_192_cfb1 "AES-192-CFB1"
|
2727
|
+
#define LN_aes_192_cfb1 "aes-192-cfb1"
|
2728
|
+
#define NID_aes_192_cfb1 651
|
2729
|
+
|
2730
|
+
#define SN_aes_256_cfb1 "AES-256-CFB1"
|
2731
|
+
#define LN_aes_256_cfb1 "aes-256-cfb1"
|
2732
|
+
#define NID_aes_256_cfb1 652
|
2733
|
+
|
2734
|
+
#define SN_aes_128_cfb8 "AES-128-CFB8"
|
2735
|
+
#define LN_aes_128_cfb8 "aes-128-cfb8"
|
2736
|
+
#define NID_aes_128_cfb8 653
|
2737
|
+
|
2738
|
+
#define SN_aes_192_cfb8 "AES-192-CFB8"
|
2739
|
+
#define LN_aes_192_cfb8 "aes-192-cfb8"
|
2740
|
+
#define NID_aes_192_cfb8 654
|
2741
|
+
|
2742
|
+
#define SN_aes_256_cfb8 "AES-256-CFB8"
|
2743
|
+
#define LN_aes_256_cfb8 "aes-256-cfb8"
|
2744
|
+
#define NID_aes_256_cfb8 655
|
2745
|
+
|
2746
|
+
#define SN_aes_128_ctr "AES-128-CTR"
|
2747
|
+
#define LN_aes_128_ctr "aes-128-ctr"
|
2748
|
+
#define NID_aes_128_ctr 904
|
2749
|
+
|
2750
|
+
#define SN_aes_192_ctr "AES-192-CTR"
|
2751
|
+
#define LN_aes_192_ctr "aes-192-ctr"
|
2752
|
+
#define NID_aes_192_ctr 905
|
2753
|
+
|
2754
|
+
#define SN_aes_256_ctr "AES-256-CTR"
|
2755
|
+
#define LN_aes_256_ctr "aes-256-ctr"
|
2756
|
+
#define NID_aes_256_ctr 906
|
2757
|
+
|
2758
|
+
#define SN_aes_128_xts "AES-128-XTS"
|
2759
|
+
#define LN_aes_128_xts "aes-128-xts"
|
2760
|
+
#define NID_aes_128_xts 913
|
2761
|
+
|
2762
|
+
#define SN_aes_256_xts "AES-256-XTS"
|
2763
|
+
#define LN_aes_256_xts "aes-256-xts"
|
2764
|
+
#define NID_aes_256_xts 914
|
2765
|
+
|
2766
|
+
#define SN_des_cfb1 "DES-CFB1"
|
2767
|
+
#define LN_des_cfb1 "des-cfb1"
|
2768
|
+
#define NID_des_cfb1 656
|
2769
|
+
|
2770
|
+
#define SN_des_cfb8 "DES-CFB8"
|
2771
|
+
#define LN_des_cfb8 "des-cfb8"
|
2772
|
+
#define NID_des_cfb8 657
|
2773
|
+
|
2774
|
+
#define SN_des_ede3_cfb1 "DES-EDE3-CFB1"
|
2775
|
+
#define LN_des_ede3_cfb1 "des-ede3-cfb1"
|
2776
|
+
#define NID_des_ede3_cfb1 658
|
2777
|
+
|
2778
|
+
#define SN_des_ede3_cfb8 "DES-EDE3-CFB8"
|
2779
|
+
#define LN_des_ede3_cfb8 "des-ede3-cfb8"
|
2780
|
+
#define NID_des_ede3_cfb8 659
|
2781
|
+
|
2782
|
+
#define OBJ_nist_hashalgs OBJ_nistAlgorithms,2L
|
2783
|
+
|
2784
|
+
#define SN_sha256 "SHA256"
|
2785
|
+
#define LN_sha256 "sha256"
|
2786
|
+
#define NID_sha256 672
|
2787
|
+
#define OBJ_sha256 OBJ_nist_hashalgs,1L
|
2788
|
+
|
2789
|
+
#define SN_sha384 "SHA384"
|
2790
|
+
#define LN_sha384 "sha384"
|
2791
|
+
#define NID_sha384 673
|
2792
|
+
#define OBJ_sha384 OBJ_nist_hashalgs,2L
|
2793
|
+
|
2794
|
+
#define SN_sha512 "SHA512"
|
2795
|
+
#define LN_sha512 "sha512"
|
2796
|
+
#define NID_sha512 674
|
2797
|
+
#define OBJ_sha512 OBJ_nist_hashalgs,3L
|
2798
|
+
|
2799
|
+
#define SN_sha224 "SHA224"
|
2800
|
+
#define LN_sha224 "sha224"
|
2801
|
+
#define NID_sha224 675
|
2802
|
+
#define OBJ_sha224 OBJ_nist_hashalgs,4L
|
2803
|
+
|
2804
|
+
#define OBJ_dsa_with_sha2 OBJ_nistAlgorithms,3L
|
2805
|
+
|
2806
|
+
#define SN_dsa_with_SHA224 "dsa_with_SHA224"
|
2807
|
+
#define NID_dsa_with_SHA224 802
|
2808
|
+
#define OBJ_dsa_with_SHA224 OBJ_dsa_with_sha2,1L
|
2809
|
+
|
2810
|
+
#define SN_dsa_with_SHA256 "dsa_with_SHA256"
|
2811
|
+
#define NID_dsa_with_SHA256 803
|
2812
|
+
#define OBJ_dsa_with_SHA256 OBJ_dsa_with_sha2,2L
|
2813
|
+
|
2814
|
+
#define SN_hold_instruction_code "holdInstructionCode"
|
2815
|
+
#define LN_hold_instruction_code "Hold Instruction Code"
|
2816
|
+
#define NID_hold_instruction_code 430
|
2817
|
+
#define OBJ_hold_instruction_code OBJ_id_ce,23L
|
2818
|
+
|
2819
|
+
#define OBJ_holdInstruction OBJ_X9_57,2L
|
2820
|
+
|
2821
|
+
#define SN_hold_instruction_none "holdInstructionNone"
|
2822
|
+
#define LN_hold_instruction_none "Hold Instruction None"
|
2823
|
+
#define NID_hold_instruction_none 431
|
2824
|
+
#define OBJ_hold_instruction_none OBJ_holdInstruction,1L
|
2825
|
+
|
2826
|
+
#define SN_hold_instruction_call_issuer "holdInstructionCallIssuer"
|
2827
|
+
#define LN_hold_instruction_call_issuer "Hold Instruction Call Issuer"
|
2828
|
+
#define NID_hold_instruction_call_issuer 432
|
2829
|
+
#define OBJ_hold_instruction_call_issuer OBJ_holdInstruction,2L
|
2830
|
+
|
2831
|
+
#define SN_hold_instruction_reject "holdInstructionReject"
|
2832
|
+
#define LN_hold_instruction_reject "Hold Instruction Reject"
|
2833
|
+
#define NID_hold_instruction_reject 433
|
2834
|
+
#define OBJ_hold_instruction_reject OBJ_holdInstruction,3L
|
2835
|
+
|
2836
|
+
#define SN_data "data"
|
2837
|
+
#define NID_data 434
|
2838
|
+
#define OBJ_data OBJ_itu_t,9L
|
2839
|
+
|
2840
|
+
#define SN_pss "pss"
|
2841
|
+
#define NID_pss 435
|
2842
|
+
#define OBJ_pss OBJ_data,2342L
|
2843
|
+
|
2844
|
+
#define SN_ucl "ucl"
|
2845
|
+
#define NID_ucl 436
|
2846
|
+
#define OBJ_ucl OBJ_pss,19200300L
|
2847
|
+
|
2848
|
+
#define SN_pilot "pilot"
|
2849
|
+
#define NID_pilot 437
|
2850
|
+
#define OBJ_pilot OBJ_ucl,100L
|
2851
|
+
|
2852
|
+
#define LN_pilotAttributeType "pilotAttributeType"
|
2853
|
+
#define NID_pilotAttributeType 438
|
2854
|
+
#define OBJ_pilotAttributeType OBJ_pilot,1L
|
2855
|
+
|
2856
|
+
#define LN_pilotAttributeSyntax "pilotAttributeSyntax"
|
2857
|
+
#define NID_pilotAttributeSyntax 439
|
2858
|
+
#define OBJ_pilotAttributeSyntax OBJ_pilot,3L
|
2859
|
+
|
2860
|
+
#define LN_pilotObjectClass "pilotObjectClass"
|
2861
|
+
#define NID_pilotObjectClass 440
|
2862
|
+
#define OBJ_pilotObjectClass OBJ_pilot,4L
|
2863
|
+
|
2864
|
+
#define LN_pilotGroups "pilotGroups"
|
2865
|
+
#define NID_pilotGroups 441
|
2866
|
+
#define OBJ_pilotGroups OBJ_pilot,10L
|
2867
|
+
|
2868
|
+
#define LN_iA5StringSyntax "iA5StringSyntax"
|
2869
|
+
#define NID_iA5StringSyntax 442
|
2870
|
+
#define OBJ_iA5StringSyntax OBJ_pilotAttributeSyntax,4L
|
2871
|
+
|
2872
|
+
#define LN_caseIgnoreIA5StringSyntax "caseIgnoreIA5StringSyntax"
|
2873
|
+
#define NID_caseIgnoreIA5StringSyntax 443
|
2874
|
+
#define OBJ_caseIgnoreIA5StringSyntax OBJ_pilotAttributeSyntax,5L
|
2875
|
+
|
2876
|
+
#define LN_pilotObject "pilotObject"
|
2877
|
+
#define NID_pilotObject 444
|
2878
|
+
#define OBJ_pilotObject OBJ_pilotObjectClass,3L
|
2879
|
+
|
2880
|
+
#define LN_pilotPerson "pilotPerson"
|
2881
|
+
#define NID_pilotPerson 445
|
2882
|
+
#define OBJ_pilotPerson OBJ_pilotObjectClass,4L
|
2883
|
+
|
2884
|
+
#define SN_account "account"
|
2885
|
+
#define NID_account 446
|
2886
|
+
#define OBJ_account OBJ_pilotObjectClass,5L
|
2887
|
+
|
2888
|
+
#define SN_document "document"
|
2889
|
+
#define NID_document 447
|
2890
|
+
#define OBJ_document OBJ_pilotObjectClass,6L
|
2891
|
+
|
2892
|
+
#define SN_room "room"
|
2893
|
+
#define NID_room 448
|
2894
|
+
#define OBJ_room OBJ_pilotObjectClass,7L
|
2895
|
+
|
2896
|
+
#define LN_documentSeries "documentSeries"
|
2897
|
+
#define NID_documentSeries 449
|
2898
|
+
#define OBJ_documentSeries OBJ_pilotObjectClass,9L
|
2899
|
+
|
2900
|
+
#define SN_Domain "domain"
|
2901
|
+
#define LN_Domain "Domain"
|
2902
|
+
#define NID_Domain 392
|
2903
|
+
#define OBJ_Domain OBJ_pilotObjectClass,13L
|
2904
|
+
|
2905
|
+
#define LN_rFC822localPart "rFC822localPart"
|
2906
|
+
#define NID_rFC822localPart 450
|
2907
|
+
#define OBJ_rFC822localPart OBJ_pilotObjectClass,14L
|
2908
|
+
|
2909
|
+
#define LN_dNSDomain "dNSDomain"
|
2910
|
+
#define NID_dNSDomain 451
|
2911
|
+
#define OBJ_dNSDomain OBJ_pilotObjectClass,15L
|
2912
|
+
|
2913
|
+
#define LN_domainRelatedObject "domainRelatedObject"
|
2914
|
+
#define NID_domainRelatedObject 452
|
2915
|
+
#define OBJ_domainRelatedObject OBJ_pilotObjectClass,17L
|
2916
|
+
|
2917
|
+
#define LN_friendlyCountry "friendlyCountry"
|
2918
|
+
#define NID_friendlyCountry 453
|
2919
|
+
#define OBJ_friendlyCountry OBJ_pilotObjectClass,18L
|
2920
|
+
|
2921
|
+
#define LN_simpleSecurityObject "simpleSecurityObject"
|
2922
|
+
#define NID_simpleSecurityObject 454
|
2923
|
+
#define OBJ_simpleSecurityObject OBJ_pilotObjectClass,19L
|
2924
|
+
|
2925
|
+
#define LN_pilotOrganization "pilotOrganization"
|
2926
|
+
#define NID_pilotOrganization 455
|
2927
|
+
#define OBJ_pilotOrganization OBJ_pilotObjectClass,20L
|
2928
|
+
|
2929
|
+
#define LN_pilotDSA "pilotDSA"
|
2930
|
+
#define NID_pilotDSA 456
|
2931
|
+
#define OBJ_pilotDSA OBJ_pilotObjectClass,21L
|
2932
|
+
|
2933
|
+
#define LN_qualityLabelledData "qualityLabelledData"
|
2934
|
+
#define NID_qualityLabelledData 457
|
2935
|
+
#define OBJ_qualityLabelledData OBJ_pilotObjectClass,22L
|
2936
|
+
|
2937
|
+
#define SN_userId "UID"
|
2938
|
+
#define LN_userId "userId"
|
2939
|
+
#define NID_userId 458
|
2940
|
+
#define OBJ_userId OBJ_pilotAttributeType,1L
|
2941
|
+
|
2942
|
+
#define LN_textEncodedORAddress "textEncodedORAddress"
|
2943
|
+
#define NID_textEncodedORAddress 459
|
2944
|
+
#define OBJ_textEncodedORAddress OBJ_pilotAttributeType,2L
|
2945
|
+
|
2946
|
+
#define SN_rfc822Mailbox "mail"
|
2947
|
+
#define LN_rfc822Mailbox "rfc822Mailbox"
|
2948
|
+
#define NID_rfc822Mailbox 460
|
2949
|
+
#define OBJ_rfc822Mailbox OBJ_pilotAttributeType,3L
|
2950
|
+
|
2951
|
+
#define SN_info "info"
|
2952
|
+
#define NID_info 461
|
2953
|
+
#define OBJ_info OBJ_pilotAttributeType,4L
|
2954
|
+
|
2955
|
+
#define LN_favouriteDrink "favouriteDrink"
|
2956
|
+
#define NID_favouriteDrink 462
|
2957
|
+
#define OBJ_favouriteDrink OBJ_pilotAttributeType,5L
|
2958
|
+
|
2959
|
+
#define LN_roomNumber "roomNumber"
|
2960
|
+
#define NID_roomNumber 463
|
2961
|
+
#define OBJ_roomNumber OBJ_pilotAttributeType,6L
|
2962
|
+
|
2963
|
+
#define SN_photo "photo"
|
2964
|
+
#define NID_photo 464
|
2965
|
+
#define OBJ_photo OBJ_pilotAttributeType,7L
|
2966
|
+
|
2967
|
+
#define LN_userClass "userClass"
|
2968
|
+
#define NID_userClass 465
|
2969
|
+
#define OBJ_userClass OBJ_pilotAttributeType,8L
|
2970
|
+
|
2971
|
+
#define SN_host "host"
|
2972
|
+
#define NID_host 466
|
2973
|
+
#define OBJ_host OBJ_pilotAttributeType,9L
|
2974
|
+
|
2975
|
+
#define SN_manager "manager"
|
2976
|
+
#define NID_manager 467
|
2977
|
+
#define OBJ_manager OBJ_pilotAttributeType,10L
|
2978
|
+
|
2979
|
+
#define LN_documentIdentifier "documentIdentifier"
|
2980
|
+
#define NID_documentIdentifier 468
|
2981
|
+
#define OBJ_documentIdentifier OBJ_pilotAttributeType,11L
|
2982
|
+
|
2983
|
+
#define LN_documentTitle "documentTitle"
|
2984
|
+
#define NID_documentTitle 469
|
2985
|
+
#define OBJ_documentTitle OBJ_pilotAttributeType,12L
|
2986
|
+
|
2987
|
+
#define LN_documentVersion "documentVersion"
|
2988
|
+
#define NID_documentVersion 470
|
2989
|
+
#define OBJ_documentVersion OBJ_pilotAttributeType,13L
|
2990
|
+
|
2991
|
+
#define LN_documentAuthor "documentAuthor"
|
2992
|
+
#define NID_documentAuthor 471
|
2993
|
+
#define OBJ_documentAuthor OBJ_pilotAttributeType,14L
|
2994
|
+
|
2995
|
+
#define LN_documentLocation "documentLocation"
|
2996
|
+
#define NID_documentLocation 472
|
2997
|
+
#define OBJ_documentLocation OBJ_pilotAttributeType,15L
|
2998
|
+
|
2999
|
+
#define LN_homeTelephoneNumber "homeTelephoneNumber"
|
3000
|
+
#define NID_homeTelephoneNumber 473
|
3001
|
+
#define OBJ_homeTelephoneNumber OBJ_pilotAttributeType,20L
|
3002
|
+
|
3003
|
+
#define SN_secretary "secretary"
|
3004
|
+
#define NID_secretary 474
|
3005
|
+
#define OBJ_secretary OBJ_pilotAttributeType,21L
|
3006
|
+
|
3007
|
+
#define LN_otherMailbox "otherMailbox"
|
3008
|
+
#define NID_otherMailbox 475
|
3009
|
+
#define OBJ_otherMailbox OBJ_pilotAttributeType,22L
|
3010
|
+
|
3011
|
+
#define LN_lastModifiedTime "lastModifiedTime"
|
3012
|
+
#define NID_lastModifiedTime 476
|
3013
|
+
#define OBJ_lastModifiedTime OBJ_pilotAttributeType,23L
|
3014
|
+
|
3015
|
+
#define LN_lastModifiedBy "lastModifiedBy"
|
3016
|
+
#define NID_lastModifiedBy 477
|
3017
|
+
#define OBJ_lastModifiedBy OBJ_pilotAttributeType,24L
|
3018
|
+
|
3019
|
+
#define SN_domainComponent "DC"
|
3020
|
+
#define LN_domainComponent "domainComponent"
|
3021
|
+
#define NID_domainComponent 391
|
3022
|
+
#define OBJ_domainComponent OBJ_pilotAttributeType,25L
|
3023
|
+
|
3024
|
+
#define LN_aRecord "aRecord"
|
3025
|
+
#define NID_aRecord 478
|
3026
|
+
#define OBJ_aRecord OBJ_pilotAttributeType,26L
|
3027
|
+
|
3028
|
+
#define LN_pilotAttributeType27 "pilotAttributeType27"
|
3029
|
+
#define NID_pilotAttributeType27 479
|
3030
|
+
#define OBJ_pilotAttributeType27 OBJ_pilotAttributeType,27L
|
3031
|
+
|
3032
|
+
#define LN_mXRecord "mXRecord"
|
3033
|
+
#define NID_mXRecord 480
|
3034
|
+
#define OBJ_mXRecord OBJ_pilotAttributeType,28L
|
3035
|
+
|
3036
|
+
#define LN_nSRecord "nSRecord"
|
3037
|
+
#define NID_nSRecord 481
|
3038
|
+
#define OBJ_nSRecord OBJ_pilotAttributeType,29L
|
3039
|
+
|
3040
|
+
#define LN_sOARecord "sOARecord"
|
3041
|
+
#define NID_sOARecord 482
|
3042
|
+
#define OBJ_sOARecord OBJ_pilotAttributeType,30L
|
3043
|
+
|
3044
|
+
#define LN_cNAMERecord "cNAMERecord"
|
3045
|
+
#define NID_cNAMERecord 483
|
3046
|
+
#define OBJ_cNAMERecord OBJ_pilotAttributeType,31L
|
3047
|
+
|
3048
|
+
#define LN_associatedDomain "associatedDomain"
|
3049
|
+
#define NID_associatedDomain 484
|
3050
|
+
#define OBJ_associatedDomain OBJ_pilotAttributeType,37L
|
3051
|
+
|
3052
|
+
#define LN_associatedName "associatedName"
|
3053
|
+
#define NID_associatedName 485
|
3054
|
+
#define OBJ_associatedName OBJ_pilotAttributeType,38L
|
3055
|
+
|
3056
|
+
#define LN_homePostalAddress "homePostalAddress"
|
3057
|
+
#define NID_homePostalAddress 486
|
3058
|
+
#define OBJ_homePostalAddress OBJ_pilotAttributeType,39L
|
3059
|
+
|
3060
|
+
#define LN_personalTitle "personalTitle"
|
3061
|
+
#define NID_personalTitle 487
|
3062
|
+
#define OBJ_personalTitle OBJ_pilotAttributeType,40L
|
3063
|
+
|
3064
|
+
#define LN_mobileTelephoneNumber "mobileTelephoneNumber"
|
3065
|
+
#define NID_mobileTelephoneNumber 488
|
3066
|
+
#define OBJ_mobileTelephoneNumber OBJ_pilotAttributeType,41L
|
3067
|
+
|
3068
|
+
#define LN_pagerTelephoneNumber "pagerTelephoneNumber"
|
3069
|
+
#define NID_pagerTelephoneNumber 489
|
3070
|
+
#define OBJ_pagerTelephoneNumber OBJ_pilotAttributeType,42L
|
3071
|
+
|
3072
|
+
#define LN_friendlyCountryName "friendlyCountryName"
|
3073
|
+
#define NID_friendlyCountryName 490
|
3074
|
+
#define OBJ_friendlyCountryName OBJ_pilotAttributeType,43L
|
3075
|
+
|
3076
|
+
#define LN_organizationalStatus "organizationalStatus"
|
3077
|
+
#define NID_organizationalStatus 491
|
3078
|
+
#define OBJ_organizationalStatus OBJ_pilotAttributeType,45L
|
3079
|
+
|
3080
|
+
#define LN_janetMailbox "janetMailbox"
|
3081
|
+
#define NID_janetMailbox 492
|
3082
|
+
#define OBJ_janetMailbox OBJ_pilotAttributeType,46L
|
3083
|
+
|
3084
|
+
#define LN_mailPreferenceOption "mailPreferenceOption"
|
3085
|
+
#define NID_mailPreferenceOption 493
|
3086
|
+
#define OBJ_mailPreferenceOption OBJ_pilotAttributeType,47L
|
3087
|
+
|
3088
|
+
#define LN_buildingName "buildingName"
|
3089
|
+
#define NID_buildingName 494
|
3090
|
+
#define OBJ_buildingName OBJ_pilotAttributeType,48L
|
3091
|
+
|
3092
|
+
#define LN_dSAQuality "dSAQuality"
|
3093
|
+
#define NID_dSAQuality 495
|
3094
|
+
#define OBJ_dSAQuality OBJ_pilotAttributeType,49L
|
3095
|
+
|
3096
|
+
#define LN_singleLevelQuality "singleLevelQuality"
|
3097
|
+
#define NID_singleLevelQuality 496
|
3098
|
+
#define OBJ_singleLevelQuality OBJ_pilotAttributeType,50L
|
3099
|
+
|
3100
|
+
#define LN_subtreeMinimumQuality "subtreeMinimumQuality"
|
3101
|
+
#define NID_subtreeMinimumQuality 497
|
3102
|
+
#define OBJ_subtreeMinimumQuality OBJ_pilotAttributeType,51L
|
3103
|
+
|
3104
|
+
#define LN_subtreeMaximumQuality "subtreeMaximumQuality"
|
3105
|
+
#define NID_subtreeMaximumQuality 498
|
3106
|
+
#define OBJ_subtreeMaximumQuality OBJ_pilotAttributeType,52L
|
3107
|
+
|
3108
|
+
#define LN_personalSignature "personalSignature"
|
3109
|
+
#define NID_personalSignature 499
|
3110
|
+
#define OBJ_personalSignature OBJ_pilotAttributeType,53L
|
3111
|
+
|
3112
|
+
#define LN_dITRedirect "dITRedirect"
|
3113
|
+
#define NID_dITRedirect 500
|
3114
|
+
#define OBJ_dITRedirect OBJ_pilotAttributeType,54L
|
3115
|
+
|
3116
|
+
#define SN_audio "audio"
|
3117
|
+
#define NID_audio 501
|
3118
|
+
#define OBJ_audio OBJ_pilotAttributeType,55L
|
3119
|
+
|
3120
|
+
#define LN_documentPublisher "documentPublisher"
|
3121
|
+
#define NID_documentPublisher 502
|
3122
|
+
#define OBJ_documentPublisher OBJ_pilotAttributeType,56L
|
3123
|
+
|
3124
|
+
#define SN_id_set "id-set"
|
3125
|
+
#define LN_id_set "Secure Electronic Transactions"
|
3126
|
+
#define NID_id_set 512
|
3127
|
+
#define OBJ_id_set OBJ_international_organizations,42L
|
3128
|
+
|
3129
|
+
#define SN_set_ctype "set-ctype"
|
3130
|
+
#define LN_set_ctype "content types"
|
3131
|
+
#define NID_set_ctype 513
|
3132
|
+
#define OBJ_set_ctype OBJ_id_set,0L
|
3133
|
+
|
3134
|
+
#define SN_set_msgExt "set-msgExt"
|
3135
|
+
#define LN_set_msgExt "message extensions"
|
3136
|
+
#define NID_set_msgExt 514
|
3137
|
+
#define OBJ_set_msgExt OBJ_id_set,1L
|
3138
|
+
|
3139
|
+
#define SN_set_attr "set-attr"
|
3140
|
+
#define NID_set_attr 515
|
3141
|
+
#define OBJ_set_attr OBJ_id_set,3L
|
3142
|
+
|
3143
|
+
#define SN_set_policy "set-policy"
|
3144
|
+
#define NID_set_policy 516
|
3145
|
+
#define OBJ_set_policy OBJ_id_set,5L
|
3146
|
+
|
3147
|
+
#define SN_set_certExt "set-certExt"
|
3148
|
+
#define LN_set_certExt "certificate extensions"
|
3149
|
+
#define NID_set_certExt 517
|
3150
|
+
#define OBJ_set_certExt OBJ_id_set,7L
|
3151
|
+
|
3152
|
+
#define SN_set_brand "set-brand"
|
3153
|
+
#define NID_set_brand 518
|
3154
|
+
#define OBJ_set_brand OBJ_id_set,8L
|
3155
|
+
|
3156
|
+
#define SN_setct_PANData "setct-PANData"
|
3157
|
+
#define NID_setct_PANData 519
|
3158
|
+
#define OBJ_setct_PANData OBJ_set_ctype,0L
|
3159
|
+
|
3160
|
+
#define SN_setct_PANToken "setct-PANToken"
|
3161
|
+
#define NID_setct_PANToken 520
|
3162
|
+
#define OBJ_setct_PANToken OBJ_set_ctype,1L
|
3163
|
+
|
3164
|
+
#define SN_setct_PANOnly "setct-PANOnly"
|
3165
|
+
#define NID_setct_PANOnly 521
|
3166
|
+
#define OBJ_setct_PANOnly OBJ_set_ctype,2L
|
3167
|
+
|
3168
|
+
#define SN_setct_OIData "setct-OIData"
|
3169
|
+
#define NID_setct_OIData 522
|
3170
|
+
#define OBJ_setct_OIData OBJ_set_ctype,3L
|
3171
|
+
|
3172
|
+
#define SN_setct_PI "setct-PI"
|
3173
|
+
#define NID_setct_PI 523
|
3174
|
+
#define OBJ_setct_PI OBJ_set_ctype,4L
|
3175
|
+
|
3176
|
+
#define SN_setct_PIData "setct-PIData"
|
3177
|
+
#define NID_setct_PIData 524
|
3178
|
+
#define OBJ_setct_PIData OBJ_set_ctype,5L
|
3179
|
+
|
3180
|
+
#define SN_setct_PIDataUnsigned "setct-PIDataUnsigned"
|
3181
|
+
#define NID_setct_PIDataUnsigned 525
|
3182
|
+
#define OBJ_setct_PIDataUnsigned OBJ_set_ctype,6L
|
3183
|
+
|
3184
|
+
#define SN_setct_HODInput "setct-HODInput"
|
3185
|
+
#define NID_setct_HODInput 526
|
3186
|
+
#define OBJ_setct_HODInput OBJ_set_ctype,7L
|
3187
|
+
|
3188
|
+
#define SN_setct_AuthResBaggage "setct-AuthResBaggage"
|
3189
|
+
#define NID_setct_AuthResBaggage 527
|
3190
|
+
#define OBJ_setct_AuthResBaggage OBJ_set_ctype,8L
|
3191
|
+
|
3192
|
+
#define SN_setct_AuthRevReqBaggage "setct-AuthRevReqBaggage"
|
3193
|
+
#define NID_setct_AuthRevReqBaggage 528
|
3194
|
+
#define OBJ_setct_AuthRevReqBaggage OBJ_set_ctype,9L
|
3195
|
+
|
3196
|
+
#define SN_setct_AuthRevResBaggage "setct-AuthRevResBaggage"
|
3197
|
+
#define NID_setct_AuthRevResBaggage 529
|
3198
|
+
#define OBJ_setct_AuthRevResBaggage OBJ_set_ctype,10L
|
3199
|
+
|
3200
|
+
#define SN_setct_CapTokenSeq "setct-CapTokenSeq"
|
3201
|
+
#define NID_setct_CapTokenSeq 530
|
3202
|
+
#define OBJ_setct_CapTokenSeq OBJ_set_ctype,11L
|
3203
|
+
|
3204
|
+
#define SN_setct_PInitResData "setct-PInitResData"
|
3205
|
+
#define NID_setct_PInitResData 531
|
3206
|
+
#define OBJ_setct_PInitResData OBJ_set_ctype,12L
|
3207
|
+
|
3208
|
+
#define SN_setct_PI_TBS "setct-PI-TBS"
|
3209
|
+
#define NID_setct_PI_TBS 532
|
3210
|
+
#define OBJ_setct_PI_TBS OBJ_set_ctype,13L
|
3211
|
+
|
3212
|
+
#define SN_setct_PResData "setct-PResData"
|
3213
|
+
#define NID_setct_PResData 533
|
3214
|
+
#define OBJ_setct_PResData OBJ_set_ctype,14L
|
3215
|
+
|
3216
|
+
#define SN_setct_AuthReqTBS "setct-AuthReqTBS"
|
3217
|
+
#define NID_setct_AuthReqTBS 534
|
3218
|
+
#define OBJ_setct_AuthReqTBS OBJ_set_ctype,16L
|
3219
|
+
|
3220
|
+
#define SN_setct_AuthResTBS "setct-AuthResTBS"
|
3221
|
+
#define NID_setct_AuthResTBS 535
|
3222
|
+
#define OBJ_setct_AuthResTBS OBJ_set_ctype,17L
|
3223
|
+
|
3224
|
+
#define SN_setct_AuthResTBSX "setct-AuthResTBSX"
|
3225
|
+
#define NID_setct_AuthResTBSX 536
|
3226
|
+
#define OBJ_setct_AuthResTBSX OBJ_set_ctype,18L
|
3227
|
+
|
3228
|
+
#define SN_setct_AuthTokenTBS "setct-AuthTokenTBS"
|
3229
|
+
#define NID_setct_AuthTokenTBS 537
|
3230
|
+
#define OBJ_setct_AuthTokenTBS OBJ_set_ctype,19L
|
3231
|
+
|
3232
|
+
#define SN_setct_CapTokenData "setct-CapTokenData"
|
3233
|
+
#define NID_setct_CapTokenData 538
|
3234
|
+
#define OBJ_setct_CapTokenData OBJ_set_ctype,20L
|
3235
|
+
|
3236
|
+
#define SN_setct_CapTokenTBS "setct-CapTokenTBS"
|
3237
|
+
#define NID_setct_CapTokenTBS 539
|
3238
|
+
#define OBJ_setct_CapTokenTBS OBJ_set_ctype,21L
|
3239
|
+
|
3240
|
+
#define SN_setct_AcqCardCodeMsg "setct-AcqCardCodeMsg"
|
3241
|
+
#define NID_setct_AcqCardCodeMsg 540
|
3242
|
+
#define OBJ_setct_AcqCardCodeMsg OBJ_set_ctype,22L
|
3243
|
+
|
3244
|
+
#define SN_setct_AuthRevReqTBS "setct-AuthRevReqTBS"
|
3245
|
+
#define NID_setct_AuthRevReqTBS 541
|
3246
|
+
#define OBJ_setct_AuthRevReqTBS OBJ_set_ctype,23L
|
3247
|
+
|
3248
|
+
#define SN_setct_AuthRevResData "setct-AuthRevResData"
|
3249
|
+
#define NID_setct_AuthRevResData 542
|
3250
|
+
#define OBJ_setct_AuthRevResData OBJ_set_ctype,24L
|
3251
|
+
|
3252
|
+
#define SN_setct_AuthRevResTBS "setct-AuthRevResTBS"
|
3253
|
+
#define NID_setct_AuthRevResTBS 543
|
3254
|
+
#define OBJ_setct_AuthRevResTBS OBJ_set_ctype,25L
|
3255
|
+
|
3256
|
+
#define SN_setct_CapReqTBS "setct-CapReqTBS"
|
3257
|
+
#define NID_setct_CapReqTBS 544
|
3258
|
+
#define OBJ_setct_CapReqTBS OBJ_set_ctype,26L
|
3259
|
+
|
3260
|
+
#define SN_setct_CapReqTBSX "setct-CapReqTBSX"
|
3261
|
+
#define NID_setct_CapReqTBSX 545
|
3262
|
+
#define OBJ_setct_CapReqTBSX OBJ_set_ctype,27L
|
3263
|
+
|
3264
|
+
#define SN_setct_CapResData "setct-CapResData"
|
3265
|
+
#define NID_setct_CapResData 546
|
3266
|
+
#define OBJ_setct_CapResData OBJ_set_ctype,28L
|
3267
|
+
|
3268
|
+
#define SN_setct_CapRevReqTBS "setct-CapRevReqTBS"
|
3269
|
+
#define NID_setct_CapRevReqTBS 547
|
3270
|
+
#define OBJ_setct_CapRevReqTBS OBJ_set_ctype,29L
|
3271
|
+
|
3272
|
+
#define SN_setct_CapRevReqTBSX "setct-CapRevReqTBSX"
|
3273
|
+
#define NID_setct_CapRevReqTBSX 548
|
3274
|
+
#define OBJ_setct_CapRevReqTBSX OBJ_set_ctype,30L
|
3275
|
+
|
3276
|
+
#define SN_setct_CapRevResData "setct-CapRevResData"
|
3277
|
+
#define NID_setct_CapRevResData 549
|
3278
|
+
#define OBJ_setct_CapRevResData OBJ_set_ctype,31L
|
3279
|
+
|
3280
|
+
#define SN_setct_CredReqTBS "setct-CredReqTBS"
|
3281
|
+
#define NID_setct_CredReqTBS 550
|
3282
|
+
#define OBJ_setct_CredReqTBS OBJ_set_ctype,32L
|
3283
|
+
|
3284
|
+
#define SN_setct_CredReqTBSX "setct-CredReqTBSX"
|
3285
|
+
#define NID_setct_CredReqTBSX 551
|
3286
|
+
#define OBJ_setct_CredReqTBSX OBJ_set_ctype,33L
|
3287
|
+
|
3288
|
+
#define SN_setct_CredResData "setct-CredResData"
|
3289
|
+
#define NID_setct_CredResData 552
|
3290
|
+
#define OBJ_setct_CredResData OBJ_set_ctype,34L
|
3291
|
+
|
3292
|
+
#define SN_setct_CredRevReqTBS "setct-CredRevReqTBS"
|
3293
|
+
#define NID_setct_CredRevReqTBS 553
|
3294
|
+
#define OBJ_setct_CredRevReqTBS OBJ_set_ctype,35L
|
3295
|
+
|
3296
|
+
#define SN_setct_CredRevReqTBSX "setct-CredRevReqTBSX"
|
3297
|
+
#define NID_setct_CredRevReqTBSX 554
|
3298
|
+
#define OBJ_setct_CredRevReqTBSX OBJ_set_ctype,36L
|
3299
|
+
|
3300
|
+
#define SN_setct_CredRevResData "setct-CredRevResData"
|
3301
|
+
#define NID_setct_CredRevResData 555
|
3302
|
+
#define OBJ_setct_CredRevResData OBJ_set_ctype,37L
|
3303
|
+
|
3304
|
+
#define SN_setct_PCertReqData "setct-PCertReqData"
|
3305
|
+
#define NID_setct_PCertReqData 556
|
3306
|
+
#define OBJ_setct_PCertReqData OBJ_set_ctype,38L
|
3307
|
+
|
3308
|
+
#define SN_setct_PCertResTBS "setct-PCertResTBS"
|
3309
|
+
#define NID_setct_PCertResTBS 557
|
3310
|
+
#define OBJ_setct_PCertResTBS OBJ_set_ctype,39L
|
3311
|
+
|
3312
|
+
#define SN_setct_BatchAdminReqData "setct-BatchAdminReqData"
|
3313
|
+
#define NID_setct_BatchAdminReqData 558
|
3314
|
+
#define OBJ_setct_BatchAdminReqData OBJ_set_ctype,40L
|
3315
|
+
|
3316
|
+
#define SN_setct_BatchAdminResData "setct-BatchAdminResData"
|
3317
|
+
#define NID_setct_BatchAdminResData 559
|
3318
|
+
#define OBJ_setct_BatchAdminResData OBJ_set_ctype,41L
|
3319
|
+
|
3320
|
+
#define SN_setct_CardCInitResTBS "setct-CardCInitResTBS"
|
3321
|
+
#define NID_setct_CardCInitResTBS 560
|
3322
|
+
#define OBJ_setct_CardCInitResTBS OBJ_set_ctype,42L
|
3323
|
+
|
3324
|
+
#define SN_setct_MeAqCInitResTBS "setct-MeAqCInitResTBS"
|
3325
|
+
#define NID_setct_MeAqCInitResTBS 561
|
3326
|
+
#define OBJ_setct_MeAqCInitResTBS OBJ_set_ctype,43L
|
3327
|
+
|
3328
|
+
#define SN_setct_RegFormResTBS "setct-RegFormResTBS"
|
3329
|
+
#define NID_setct_RegFormResTBS 562
|
3330
|
+
#define OBJ_setct_RegFormResTBS OBJ_set_ctype,44L
|
3331
|
+
|
3332
|
+
#define SN_setct_CertReqData "setct-CertReqData"
|
3333
|
+
#define NID_setct_CertReqData 563
|
3334
|
+
#define OBJ_setct_CertReqData OBJ_set_ctype,45L
|
3335
|
+
|
3336
|
+
#define SN_setct_CertReqTBS "setct-CertReqTBS"
|
3337
|
+
#define NID_setct_CertReqTBS 564
|
3338
|
+
#define OBJ_setct_CertReqTBS OBJ_set_ctype,46L
|
3339
|
+
|
3340
|
+
#define SN_setct_CertResData "setct-CertResData"
|
3341
|
+
#define NID_setct_CertResData 565
|
3342
|
+
#define OBJ_setct_CertResData OBJ_set_ctype,47L
|
3343
|
+
|
3344
|
+
#define SN_setct_CertInqReqTBS "setct-CertInqReqTBS"
|
3345
|
+
#define NID_setct_CertInqReqTBS 566
|
3346
|
+
#define OBJ_setct_CertInqReqTBS OBJ_set_ctype,48L
|
3347
|
+
|
3348
|
+
#define SN_setct_ErrorTBS "setct-ErrorTBS"
|
3349
|
+
#define NID_setct_ErrorTBS 567
|
3350
|
+
#define OBJ_setct_ErrorTBS OBJ_set_ctype,49L
|
3351
|
+
|
3352
|
+
#define SN_setct_PIDualSignedTBE "setct-PIDualSignedTBE"
|
3353
|
+
#define NID_setct_PIDualSignedTBE 568
|
3354
|
+
#define OBJ_setct_PIDualSignedTBE OBJ_set_ctype,50L
|
3355
|
+
|
3356
|
+
#define SN_setct_PIUnsignedTBE "setct-PIUnsignedTBE"
|
3357
|
+
#define NID_setct_PIUnsignedTBE 569
|
3358
|
+
#define OBJ_setct_PIUnsignedTBE OBJ_set_ctype,51L
|
3359
|
+
|
3360
|
+
#define SN_setct_AuthReqTBE "setct-AuthReqTBE"
|
3361
|
+
#define NID_setct_AuthReqTBE 570
|
3362
|
+
#define OBJ_setct_AuthReqTBE OBJ_set_ctype,52L
|
3363
|
+
|
3364
|
+
#define SN_setct_AuthResTBE "setct-AuthResTBE"
|
3365
|
+
#define NID_setct_AuthResTBE 571
|
3366
|
+
#define OBJ_setct_AuthResTBE OBJ_set_ctype,53L
|
3367
|
+
|
3368
|
+
#define SN_setct_AuthResTBEX "setct-AuthResTBEX"
|
3369
|
+
#define NID_setct_AuthResTBEX 572
|
3370
|
+
#define OBJ_setct_AuthResTBEX OBJ_set_ctype,54L
|
3371
|
+
|
3372
|
+
#define SN_setct_AuthTokenTBE "setct-AuthTokenTBE"
|
3373
|
+
#define NID_setct_AuthTokenTBE 573
|
3374
|
+
#define OBJ_setct_AuthTokenTBE OBJ_set_ctype,55L
|
3375
|
+
|
3376
|
+
#define SN_setct_CapTokenTBE "setct-CapTokenTBE"
|
3377
|
+
#define NID_setct_CapTokenTBE 574
|
3378
|
+
#define OBJ_setct_CapTokenTBE OBJ_set_ctype,56L
|
3379
|
+
|
3380
|
+
#define SN_setct_CapTokenTBEX "setct-CapTokenTBEX"
|
3381
|
+
#define NID_setct_CapTokenTBEX 575
|
3382
|
+
#define OBJ_setct_CapTokenTBEX OBJ_set_ctype,57L
|
3383
|
+
|
3384
|
+
#define SN_setct_AcqCardCodeMsgTBE "setct-AcqCardCodeMsgTBE"
|
3385
|
+
#define NID_setct_AcqCardCodeMsgTBE 576
|
3386
|
+
#define OBJ_setct_AcqCardCodeMsgTBE OBJ_set_ctype,58L
|
3387
|
+
|
3388
|
+
#define SN_setct_AuthRevReqTBE "setct-AuthRevReqTBE"
|
3389
|
+
#define NID_setct_AuthRevReqTBE 577
|
3390
|
+
#define OBJ_setct_AuthRevReqTBE OBJ_set_ctype,59L
|
3391
|
+
|
3392
|
+
#define SN_setct_AuthRevResTBE "setct-AuthRevResTBE"
|
3393
|
+
#define NID_setct_AuthRevResTBE 578
|
3394
|
+
#define OBJ_setct_AuthRevResTBE OBJ_set_ctype,60L
|
3395
|
+
|
3396
|
+
#define SN_setct_AuthRevResTBEB "setct-AuthRevResTBEB"
|
3397
|
+
#define NID_setct_AuthRevResTBEB 579
|
3398
|
+
#define OBJ_setct_AuthRevResTBEB OBJ_set_ctype,61L
|
3399
|
+
|
3400
|
+
#define SN_setct_CapReqTBE "setct-CapReqTBE"
|
3401
|
+
#define NID_setct_CapReqTBE 580
|
3402
|
+
#define OBJ_setct_CapReqTBE OBJ_set_ctype,62L
|
3403
|
+
|
3404
|
+
#define SN_setct_CapReqTBEX "setct-CapReqTBEX"
|
3405
|
+
#define NID_setct_CapReqTBEX 581
|
3406
|
+
#define OBJ_setct_CapReqTBEX OBJ_set_ctype,63L
|
3407
|
+
|
3408
|
+
#define SN_setct_CapResTBE "setct-CapResTBE"
|
3409
|
+
#define NID_setct_CapResTBE 582
|
3410
|
+
#define OBJ_setct_CapResTBE OBJ_set_ctype,64L
|
3411
|
+
|
3412
|
+
#define SN_setct_CapRevReqTBE "setct-CapRevReqTBE"
|
3413
|
+
#define NID_setct_CapRevReqTBE 583
|
3414
|
+
#define OBJ_setct_CapRevReqTBE OBJ_set_ctype,65L
|
3415
|
+
|
3416
|
+
#define SN_setct_CapRevReqTBEX "setct-CapRevReqTBEX"
|
3417
|
+
#define NID_setct_CapRevReqTBEX 584
|
3418
|
+
#define OBJ_setct_CapRevReqTBEX OBJ_set_ctype,66L
|
3419
|
+
|
3420
|
+
#define SN_setct_CapRevResTBE "setct-CapRevResTBE"
|
3421
|
+
#define NID_setct_CapRevResTBE 585
|
3422
|
+
#define OBJ_setct_CapRevResTBE OBJ_set_ctype,67L
|
3423
|
+
|
3424
|
+
#define SN_setct_CredReqTBE "setct-CredReqTBE"
|
3425
|
+
#define NID_setct_CredReqTBE 586
|
3426
|
+
#define OBJ_setct_CredReqTBE OBJ_set_ctype,68L
|
3427
|
+
|
3428
|
+
#define SN_setct_CredReqTBEX "setct-CredReqTBEX"
|
3429
|
+
#define NID_setct_CredReqTBEX 587
|
3430
|
+
#define OBJ_setct_CredReqTBEX OBJ_set_ctype,69L
|
3431
|
+
|
3432
|
+
#define SN_setct_CredResTBE "setct-CredResTBE"
|
3433
|
+
#define NID_setct_CredResTBE 588
|
3434
|
+
#define OBJ_setct_CredResTBE OBJ_set_ctype,70L
|
3435
|
+
|
3436
|
+
#define SN_setct_CredRevReqTBE "setct-CredRevReqTBE"
|
3437
|
+
#define NID_setct_CredRevReqTBE 589
|
3438
|
+
#define OBJ_setct_CredRevReqTBE OBJ_set_ctype,71L
|
3439
|
+
|
3440
|
+
#define SN_setct_CredRevReqTBEX "setct-CredRevReqTBEX"
|
3441
|
+
#define NID_setct_CredRevReqTBEX 590
|
3442
|
+
#define OBJ_setct_CredRevReqTBEX OBJ_set_ctype,72L
|
3443
|
+
|
3444
|
+
#define SN_setct_CredRevResTBE "setct-CredRevResTBE"
|
3445
|
+
#define NID_setct_CredRevResTBE 591
|
3446
|
+
#define OBJ_setct_CredRevResTBE OBJ_set_ctype,73L
|
3447
|
+
|
3448
|
+
#define SN_setct_BatchAdminReqTBE "setct-BatchAdminReqTBE"
|
3449
|
+
#define NID_setct_BatchAdminReqTBE 592
|
3450
|
+
#define OBJ_setct_BatchAdminReqTBE OBJ_set_ctype,74L
|
3451
|
+
|
3452
|
+
#define SN_setct_BatchAdminResTBE "setct-BatchAdminResTBE"
|
3453
|
+
#define NID_setct_BatchAdminResTBE 593
|
3454
|
+
#define OBJ_setct_BatchAdminResTBE OBJ_set_ctype,75L
|
3455
|
+
|
3456
|
+
#define SN_setct_RegFormReqTBE "setct-RegFormReqTBE"
|
3457
|
+
#define NID_setct_RegFormReqTBE 594
|
3458
|
+
#define OBJ_setct_RegFormReqTBE OBJ_set_ctype,76L
|
3459
|
+
|
3460
|
+
#define SN_setct_CertReqTBE "setct-CertReqTBE"
|
3461
|
+
#define NID_setct_CertReqTBE 595
|
3462
|
+
#define OBJ_setct_CertReqTBE OBJ_set_ctype,77L
|
3463
|
+
|
3464
|
+
#define SN_setct_CertReqTBEX "setct-CertReqTBEX"
|
3465
|
+
#define NID_setct_CertReqTBEX 596
|
3466
|
+
#define OBJ_setct_CertReqTBEX OBJ_set_ctype,78L
|
3467
|
+
|
3468
|
+
#define SN_setct_CertResTBE "setct-CertResTBE"
|
3469
|
+
#define NID_setct_CertResTBE 597
|
3470
|
+
#define OBJ_setct_CertResTBE OBJ_set_ctype,79L
|
3471
|
+
|
3472
|
+
#define SN_setct_CRLNotificationTBS "setct-CRLNotificationTBS"
|
3473
|
+
#define NID_setct_CRLNotificationTBS 598
|
3474
|
+
#define OBJ_setct_CRLNotificationTBS OBJ_set_ctype,80L
|
3475
|
+
|
3476
|
+
#define SN_setct_CRLNotificationResTBS "setct-CRLNotificationResTBS"
|
3477
|
+
#define NID_setct_CRLNotificationResTBS 599
|
3478
|
+
#define OBJ_setct_CRLNotificationResTBS OBJ_set_ctype,81L
|
3479
|
+
|
3480
|
+
#define SN_setct_BCIDistributionTBS "setct-BCIDistributionTBS"
|
3481
|
+
#define NID_setct_BCIDistributionTBS 600
|
3482
|
+
#define OBJ_setct_BCIDistributionTBS OBJ_set_ctype,82L
|
3483
|
+
|
3484
|
+
#define SN_setext_genCrypt "setext-genCrypt"
|
3485
|
+
#define LN_setext_genCrypt "generic cryptogram"
|
3486
|
+
#define NID_setext_genCrypt 601
|
3487
|
+
#define OBJ_setext_genCrypt OBJ_set_msgExt,1L
|
3488
|
+
|
3489
|
+
#define SN_setext_miAuth "setext-miAuth"
|
3490
|
+
#define LN_setext_miAuth "merchant initiated auth"
|
3491
|
+
#define NID_setext_miAuth 602
|
3492
|
+
#define OBJ_setext_miAuth OBJ_set_msgExt,3L
|
3493
|
+
|
3494
|
+
#define SN_setext_pinSecure "setext-pinSecure"
|
3495
|
+
#define NID_setext_pinSecure 603
|
3496
|
+
#define OBJ_setext_pinSecure OBJ_set_msgExt,4L
|
3497
|
+
|
3498
|
+
#define SN_setext_pinAny "setext-pinAny"
|
3499
|
+
#define NID_setext_pinAny 604
|
3500
|
+
#define OBJ_setext_pinAny OBJ_set_msgExt,5L
|
3501
|
+
|
3502
|
+
#define SN_setext_track2 "setext-track2"
|
3503
|
+
#define NID_setext_track2 605
|
3504
|
+
#define OBJ_setext_track2 OBJ_set_msgExt,7L
|
3505
|
+
|
3506
|
+
#define SN_setext_cv "setext-cv"
|
3507
|
+
#define LN_setext_cv "additional verification"
|
3508
|
+
#define NID_setext_cv 606
|
3509
|
+
#define OBJ_setext_cv OBJ_set_msgExt,8L
|
3510
|
+
|
3511
|
+
#define SN_set_policy_root "set-policy-root"
|
3512
|
+
#define NID_set_policy_root 607
|
3513
|
+
#define OBJ_set_policy_root OBJ_set_policy,0L
|
3514
|
+
|
3515
|
+
#define SN_setCext_hashedRoot "setCext-hashedRoot"
|
3516
|
+
#define NID_setCext_hashedRoot 608
|
3517
|
+
#define OBJ_setCext_hashedRoot OBJ_set_certExt,0L
|
3518
|
+
|
3519
|
+
#define SN_setCext_certType "setCext-certType"
|
3520
|
+
#define NID_setCext_certType 609
|
3521
|
+
#define OBJ_setCext_certType OBJ_set_certExt,1L
|
3522
|
+
|
3523
|
+
#define SN_setCext_merchData "setCext-merchData"
|
3524
|
+
#define NID_setCext_merchData 610
|
3525
|
+
#define OBJ_setCext_merchData OBJ_set_certExt,2L
|
3526
|
+
|
3527
|
+
#define SN_setCext_cCertRequired "setCext-cCertRequired"
|
3528
|
+
#define NID_setCext_cCertRequired 611
|
3529
|
+
#define OBJ_setCext_cCertRequired OBJ_set_certExt,3L
|
3530
|
+
|
3531
|
+
#define SN_setCext_tunneling "setCext-tunneling"
|
3532
|
+
#define NID_setCext_tunneling 612
|
3533
|
+
#define OBJ_setCext_tunneling OBJ_set_certExt,4L
|
3534
|
+
|
3535
|
+
#define SN_setCext_setExt "setCext-setExt"
|
3536
|
+
#define NID_setCext_setExt 613
|
3537
|
+
#define OBJ_setCext_setExt OBJ_set_certExt,5L
|
3538
|
+
|
3539
|
+
#define SN_setCext_setQualf "setCext-setQualf"
|
3540
|
+
#define NID_setCext_setQualf 614
|
3541
|
+
#define OBJ_setCext_setQualf OBJ_set_certExt,6L
|
3542
|
+
|
3543
|
+
#define SN_setCext_PGWYcapabilities "setCext-PGWYcapabilities"
|
3544
|
+
#define NID_setCext_PGWYcapabilities 615
|
3545
|
+
#define OBJ_setCext_PGWYcapabilities OBJ_set_certExt,7L
|
3546
|
+
|
3547
|
+
#define SN_setCext_TokenIdentifier "setCext-TokenIdentifier"
|
3548
|
+
#define NID_setCext_TokenIdentifier 616
|
3549
|
+
#define OBJ_setCext_TokenIdentifier OBJ_set_certExt,8L
|
3550
|
+
|
3551
|
+
#define SN_setCext_Track2Data "setCext-Track2Data"
|
3552
|
+
#define NID_setCext_Track2Data 617
|
3553
|
+
#define OBJ_setCext_Track2Data OBJ_set_certExt,9L
|
3554
|
+
|
3555
|
+
#define SN_setCext_TokenType "setCext-TokenType"
|
3556
|
+
#define NID_setCext_TokenType 618
|
3557
|
+
#define OBJ_setCext_TokenType OBJ_set_certExt,10L
|
3558
|
+
|
3559
|
+
#define SN_setCext_IssuerCapabilities "setCext-IssuerCapabilities"
|
3560
|
+
#define NID_setCext_IssuerCapabilities 619
|
3561
|
+
#define OBJ_setCext_IssuerCapabilities OBJ_set_certExt,11L
|
3562
|
+
|
3563
|
+
#define SN_setAttr_Cert "setAttr-Cert"
|
3564
|
+
#define NID_setAttr_Cert 620
|
3565
|
+
#define OBJ_setAttr_Cert OBJ_set_attr,0L
|
3566
|
+
|
3567
|
+
#define SN_setAttr_PGWYcap "setAttr-PGWYcap"
|
3568
|
+
#define LN_setAttr_PGWYcap "payment gateway capabilities"
|
3569
|
+
#define NID_setAttr_PGWYcap 621
|
3570
|
+
#define OBJ_setAttr_PGWYcap OBJ_set_attr,1L
|
3571
|
+
|
3572
|
+
#define SN_setAttr_TokenType "setAttr-TokenType"
|
3573
|
+
#define NID_setAttr_TokenType 622
|
3574
|
+
#define OBJ_setAttr_TokenType OBJ_set_attr,2L
|
3575
|
+
|
3576
|
+
#define SN_setAttr_IssCap "setAttr-IssCap"
|
3577
|
+
#define LN_setAttr_IssCap "issuer capabilities"
|
3578
|
+
#define NID_setAttr_IssCap 623
|
3579
|
+
#define OBJ_setAttr_IssCap OBJ_set_attr,3L
|
3580
|
+
|
3581
|
+
#define SN_set_rootKeyThumb "set-rootKeyThumb"
|
3582
|
+
#define NID_set_rootKeyThumb 624
|
3583
|
+
#define OBJ_set_rootKeyThumb OBJ_setAttr_Cert,0L
|
3584
|
+
|
3585
|
+
#define SN_set_addPolicy "set-addPolicy"
|
3586
|
+
#define NID_set_addPolicy 625
|
3587
|
+
#define OBJ_set_addPolicy OBJ_setAttr_Cert,1L
|
3588
|
+
|
3589
|
+
#define SN_setAttr_Token_EMV "setAttr-Token-EMV"
|
3590
|
+
#define NID_setAttr_Token_EMV 626
|
3591
|
+
#define OBJ_setAttr_Token_EMV OBJ_setAttr_TokenType,1L
|
3592
|
+
|
3593
|
+
#define SN_setAttr_Token_B0Prime "setAttr-Token-B0Prime"
|
3594
|
+
#define NID_setAttr_Token_B0Prime 627
|
3595
|
+
#define OBJ_setAttr_Token_B0Prime OBJ_setAttr_TokenType,2L
|
3596
|
+
|
3597
|
+
#define SN_setAttr_IssCap_CVM "setAttr-IssCap-CVM"
|
3598
|
+
#define NID_setAttr_IssCap_CVM 628
|
3599
|
+
#define OBJ_setAttr_IssCap_CVM OBJ_setAttr_IssCap,3L
|
3600
|
+
|
3601
|
+
#define SN_setAttr_IssCap_T2 "setAttr-IssCap-T2"
|
3602
|
+
#define NID_setAttr_IssCap_T2 629
|
3603
|
+
#define OBJ_setAttr_IssCap_T2 OBJ_setAttr_IssCap,4L
|
3604
|
+
|
3605
|
+
#define SN_setAttr_IssCap_Sig "setAttr-IssCap-Sig"
|
3606
|
+
#define NID_setAttr_IssCap_Sig 630
|
3607
|
+
#define OBJ_setAttr_IssCap_Sig OBJ_setAttr_IssCap,5L
|
3608
|
+
|
3609
|
+
#define SN_setAttr_GenCryptgrm "setAttr-GenCryptgrm"
|
3610
|
+
#define LN_setAttr_GenCryptgrm "generate cryptogram"
|
3611
|
+
#define NID_setAttr_GenCryptgrm 631
|
3612
|
+
#define OBJ_setAttr_GenCryptgrm OBJ_setAttr_IssCap_CVM,1L
|
3613
|
+
|
3614
|
+
#define SN_setAttr_T2Enc "setAttr-T2Enc"
|
3615
|
+
#define LN_setAttr_T2Enc "encrypted track 2"
|
3616
|
+
#define NID_setAttr_T2Enc 632
|
3617
|
+
#define OBJ_setAttr_T2Enc OBJ_setAttr_IssCap_T2,1L
|
3618
|
+
|
3619
|
+
#define SN_setAttr_T2cleartxt "setAttr-T2cleartxt"
|
3620
|
+
#define LN_setAttr_T2cleartxt "cleartext track 2"
|
3621
|
+
#define NID_setAttr_T2cleartxt 633
|
3622
|
+
#define OBJ_setAttr_T2cleartxt OBJ_setAttr_IssCap_T2,2L
|
3623
|
+
|
3624
|
+
#define SN_setAttr_TokICCsig "setAttr-TokICCsig"
|
3625
|
+
#define LN_setAttr_TokICCsig "ICC or token signature"
|
3626
|
+
#define NID_setAttr_TokICCsig 634
|
3627
|
+
#define OBJ_setAttr_TokICCsig OBJ_setAttr_IssCap_Sig,1L
|
3628
|
+
|
3629
|
+
#define SN_setAttr_SecDevSig "setAttr-SecDevSig"
|
3630
|
+
#define LN_setAttr_SecDevSig "secure device signature"
|
3631
|
+
#define NID_setAttr_SecDevSig 635
|
3632
|
+
#define OBJ_setAttr_SecDevSig OBJ_setAttr_IssCap_Sig,2L
|
3633
|
+
|
3634
|
+
#define SN_set_brand_IATA_ATA "set-brand-IATA-ATA"
|
3635
|
+
#define NID_set_brand_IATA_ATA 636
|
3636
|
+
#define OBJ_set_brand_IATA_ATA OBJ_set_brand,1L
|
3637
|
+
|
3638
|
+
#define SN_set_brand_Diners "set-brand-Diners"
|
3639
|
+
#define NID_set_brand_Diners 637
|
3640
|
+
#define OBJ_set_brand_Diners OBJ_set_brand,30L
|
3641
|
+
|
3642
|
+
#define SN_set_brand_AmericanExpress "set-brand-AmericanExpress"
|
3643
|
+
#define NID_set_brand_AmericanExpress 638
|
3644
|
+
#define OBJ_set_brand_AmericanExpress OBJ_set_brand,34L
|
3645
|
+
|
3646
|
+
#define SN_set_brand_JCB "set-brand-JCB"
|
3647
|
+
#define NID_set_brand_JCB 639
|
3648
|
+
#define OBJ_set_brand_JCB OBJ_set_brand,35L
|
3649
|
+
|
3650
|
+
#define SN_set_brand_Visa "set-brand-Visa"
|
3651
|
+
#define NID_set_brand_Visa 640
|
3652
|
+
#define OBJ_set_brand_Visa OBJ_set_brand,4L
|
3653
|
+
|
3654
|
+
#define SN_set_brand_MasterCard "set-brand-MasterCard"
|
3655
|
+
#define NID_set_brand_MasterCard 641
|
3656
|
+
#define OBJ_set_brand_MasterCard OBJ_set_brand,5L
|
3657
|
+
|
3658
|
+
#define SN_set_brand_Novus "set-brand-Novus"
|
3659
|
+
#define NID_set_brand_Novus 642
|
3660
|
+
#define OBJ_set_brand_Novus OBJ_set_brand,6011L
|
3661
|
+
|
3662
|
+
#define SN_des_cdmf "DES-CDMF"
|
3663
|
+
#define LN_des_cdmf "des-cdmf"
|
3664
|
+
#define NID_des_cdmf 643
|
3665
|
+
#define OBJ_des_cdmf OBJ_rsadsi,3L,10L
|
3666
|
+
|
3667
|
+
#define SN_rsaOAEPEncryptionSET "rsaOAEPEncryptionSET"
|
3668
|
+
#define NID_rsaOAEPEncryptionSET 644
|
3669
|
+
#define OBJ_rsaOAEPEncryptionSET OBJ_rsadsi,1L,1L,6L
|
3670
|
+
|
3671
|
+
#define SN_ipsec3 "Oakley-EC2N-3"
|
3672
|
+
#define LN_ipsec3 "ipsec3"
|
3673
|
+
#define NID_ipsec3 749
|
3674
|
+
|
3675
|
+
#define SN_ipsec4 "Oakley-EC2N-4"
|
3676
|
+
#define LN_ipsec4 "ipsec4"
|
3677
|
+
#define NID_ipsec4 750
|
3678
|
+
|
3679
|
+
#define SN_whirlpool "whirlpool"
|
3680
|
+
#define NID_whirlpool 804
|
3681
|
+
#define OBJ_whirlpool OBJ_iso,0L,10118L,3L,0L,55L
|
3682
|
+
|
3683
|
+
#define SN_cryptopro "cryptopro"
|
3684
|
+
#define NID_cryptopro 805
|
3685
|
+
#define OBJ_cryptopro OBJ_member_body,643L,2L,2L
|
3686
|
+
|
3687
|
+
#define SN_cryptocom "cryptocom"
|
3688
|
+
#define NID_cryptocom 806
|
3689
|
+
#define OBJ_cryptocom OBJ_member_body,643L,2L,9L
|
3690
|
+
|
3691
|
+
#define SN_id_GostR3411_94_with_GostR3410_2001 "id-GostR3411-94-with-GostR3410-2001"
|
3692
|
+
#define LN_id_GostR3411_94_with_GostR3410_2001 "GOST R 34.11-94 with GOST R 34.10-2001"
|
3693
|
+
#define NID_id_GostR3411_94_with_GostR3410_2001 807
|
3694
|
+
#define OBJ_id_GostR3411_94_with_GostR3410_2001 OBJ_cryptopro,3L
|
3695
|
+
|
3696
|
+
#define SN_id_GostR3411_94_with_GostR3410_94 "id-GostR3411-94-with-GostR3410-94"
|
3697
|
+
#define LN_id_GostR3411_94_with_GostR3410_94 "GOST R 34.11-94 with GOST R 34.10-94"
|
3698
|
+
#define NID_id_GostR3411_94_with_GostR3410_94 808
|
3699
|
+
#define OBJ_id_GostR3411_94_with_GostR3410_94 OBJ_cryptopro,4L
|
3700
|
+
|
3701
|
+
#define SN_id_GostR3411_94 "md_gost94"
|
3702
|
+
#define LN_id_GostR3411_94 "GOST R 34.11-94"
|
3703
|
+
#define NID_id_GostR3411_94 809
|
3704
|
+
#define OBJ_id_GostR3411_94 OBJ_cryptopro,9L
|
3705
|
+
|
3706
|
+
#define SN_id_HMACGostR3411_94 "id-HMACGostR3411-94"
|
3707
|
+
#define LN_id_HMACGostR3411_94 "HMAC GOST 34.11-94"
|
3708
|
+
#define NID_id_HMACGostR3411_94 810
|
3709
|
+
#define OBJ_id_HMACGostR3411_94 OBJ_cryptopro,10L
|
3710
|
+
|
3711
|
+
#define SN_id_GostR3410_2001 "gost2001"
|
3712
|
+
#define LN_id_GostR3410_2001 "GOST R 34.10-2001"
|
3713
|
+
#define NID_id_GostR3410_2001 811
|
3714
|
+
#define OBJ_id_GostR3410_2001 OBJ_cryptopro,19L
|
3715
|
+
|
3716
|
+
#define SN_id_GostR3410_94 "gost94"
|
3717
|
+
#define LN_id_GostR3410_94 "GOST R 34.10-94"
|
3718
|
+
#define NID_id_GostR3410_94 812
|
3719
|
+
#define OBJ_id_GostR3410_94 OBJ_cryptopro,20L
|
3720
|
+
|
3721
|
+
#define SN_id_Gost28147_89 "gost89"
|
3722
|
+
#define LN_id_Gost28147_89 "GOST 28147-89"
|
3723
|
+
#define NID_id_Gost28147_89 813
|
3724
|
+
#define OBJ_id_Gost28147_89 OBJ_cryptopro,21L
|
3725
|
+
|
3726
|
+
#define SN_gost89_cnt "gost89-cnt"
|
3727
|
+
#define NID_gost89_cnt 814
|
3728
|
+
|
3729
|
+
#define SN_id_Gost28147_89_MAC "gost-mac"
|
3730
|
+
#define LN_id_Gost28147_89_MAC "GOST 28147-89 MAC"
|
3731
|
+
#define NID_id_Gost28147_89_MAC 815
|
3732
|
+
#define OBJ_id_Gost28147_89_MAC OBJ_cryptopro,22L
|
3733
|
+
|
3734
|
+
#define SN_id_GostR3411_94_prf "prf-gostr3411-94"
|
3735
|
+
#define LN_id_GostR3411_94_prf "GOST R 34.11-94 PRF"
|
3736
|
+
#define NID_id_GostR3411_94_prf 816
|
3737
|
+
#define OBJ_id_GostR3411_94_prf OBJ_cryptopro,23L
|
3738
|
+
|
3739
|
+
#define SN_id_GostR3410_2001DH "id-GostR3410-2001DH"
|
3740
|
+
#define LN_id_GostR3410_2001DH "GOST R 34.10-2001 DH"
|
3741
|
+
#define NID_id_GostR3410_2001DH 817
|
3742
|
+
#define OBJ_id_GostR3410_2001DH OBJ_cryptopro,98L
|
3743
|
+
|
3744
|
+
#define SN_id_GostR3410_94DH "id-GostR3410-94DH"
|
3745
|
+
#define LN_id_GostR3410_94DH "GOST R 34.10-94 DH"
|
3746
|
+
#define NID_id_GostR3410_94DH 818
|
3747
|
+
#define OBJ_id_GostR3410_94DH OBJ_cryptopro,99L
|
3748
|
+
|
3749
|
+
#define SN_id_Gost28147_89_CryptoPro_KeyMeshing "id-Gost28147-89-CryptoPro-KeyMeshing"
|
3750
|
+
#define NID_id_Gost28147_89_CryptoPro_KeyMeshing 819
|
3751
|
+
#define OBJ_id_Gost28147_89_CryptoPro_KeyMeshing OBJ_cryptopro,14L,1L
|
3752
|
+
|
3753
|
+
#define SN_id_Gost28147_89_None_KeyMeshing "id-Gost28147-89-None-KeyMeshing"
|
3754
|
+
#define NID_id_Gost28147_89_None_KeyMeshing 820
|
3755
|
+
#define OBJ_id_Gost28147_89_None_KeyMeshing OBJ_cryptopro,14L,0L
|
3756
|
+
|
3757
|
+
#define SN_id_GostR3411_94_TestParamSet "id-GostR3411-94-TestParamSet"
|
3758
|
+
#define NID_id_GostR3411_94_TestParamSet 821
|
3759
|
+
#define OBJ_id_GostR3411_94_TestParamSet OBJ_cryptopro,30L,0L
|
3760
|
+
|
3761
|
+
#define SN_id_GostR3411_94_CryptoProParamSet "id-GostR3411-94-CryptoProParamSet"
|
3762
|
+
#define NID_id_GostR3411_94_CryptoProParamSet 822
|
3763
|
+
#define OBJ_id_GostR3411_94_CryptoProParamSet OBJ_cryptopro,30L,1L
|
3764
|
+
|
3765
|
+
#define SN_id_Gost28147_89_TestParamSet "id-Gost28147-89-TestParamSet"
|
3766
|
+
#define NID_id_Gost28147_89_TestParamSet 823
|
3767
|
+
#define OBJ_id_Gost28147_89_TestParamSet OBJ_cryptopro,31L,0L
|
3768
|
+
|
3769
|
+
#define SN_id_Gost28147_89_CryptoPro_A_ParamSet "id-Gost28147-89-CryptoPro-A-ParamSet"
|
3770
|
+
#define NID_id_Gost28147_89_CryptoPro_A_ParamSet 824
|
3771
|
+
#define OBJ_id_Gost28147_89_CryptoPro_A_ParamSet OBJ_cryptopro,31L,1L
|
3772
|
+
|
3773
|
+
#define SN_id_Gost28147_89_CryptoPro_B_ParamSet "id-Gost28147-89-CryptoPro-B-ParamSet"
|
3774
|
+
#define NID_id_Gost28147_89_CryptoPro_B_ParamSet 825
|
3775
|
+
#define OBJ_id_Gost28147_89_CryptoPro_B_ParamSet OBJ_cryptopro,31L,2L
|
3776
|
+
|
3777
|
+
#define SN_id_Gost28147_89_CryptoPro_C_ParamSet "id-Gost28147-89-CryptoPro-C-ParamSet"
|
3778
|
+
#define NID_id_Gost28147_89_CryptoPro_C_ParamSet 826
|
3779
|
+
#define OBJ_id_Gost28147_89_CryptoPro_C_ParamSet OBJ_cryptopro,31L,3L
|
3780
|
+
|
3781
|
+
#define SN_id_Gost28147_89_CryptoPro_D_ParamSet "id-Gost28147-89-CryptoPro-D-ParamSet"
|
3782
|
+
#define NID_id_Gost28147_89_CryptoPro_D_ParamSet 827
|
3783
|
+
#define OBJ_id_Gost28147_89_CryptoPro_D_ParamSet OBJ_cryptopro,31L,4L
|
3784
|
+
|
3785
|
+
#define SN_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet"
|
3786
|
+
#define NID_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 828
|
3787
|
+
#define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet OBJ_cryptopro,31L,5L
|
3788
|
+
|
3789
|
+
#define SN_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet"
|
3790
|
+
#define NID_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 829
|
3791
|
+
#define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet OBJ_cryptopro,31L,6L
|
3792
|
+
|
3793
|
+
#define SN_id_Gost28147_89_CryptoPro_RIC_1_ParamSet "id-Gost28147-89-CryptoPro-RIC-1-ParamSet"
|
3794
|
+
#define NID_id_Gost28147_89_CryptoPro_RIC_1_ParamSet 830
|
3795
|
+
#define OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet OBJ_cryptopro,31L,7L
|
3796
|
+
|
3797
|
+
#define SN_id_GostR3410_94_TestParamSet "id-GostR3410-94-TestParamSet"
|
3798
|
+
#define NID_id_GostR3410_94_TestParamSet 831
|
3799
|
+
#define OBJ_id_GostR3410_94_TestParamSet OBJ_cryptopro,32L,0L
|
3800
|
+
|
3801
|
+
#define SN_id_GostR3410_94_CryptoPro_A_ParamSet "id-GostR3410-94-CryptoPro-A-ParamSet"
|
3802
|
+
#define NID_id_GostR3410_94_CryptoPro_A_ParamSet 832
|
3803
|
+
#define OBJ_id_GostR3410_94_CryptoPro_A_ParamSet OBJ_cryptopro,32L,2L
|
3804
|
+
|
3805
|
+
#define SN_id_GostR3410_94_CryptoPro_B_ParamSet "id-GostR3410-94-CryptoPro-B-ParamSet"
|
3806
|
+
#define NID_id_GostR3410_94_CryptoPro_B_ParamSet 833
|
3807
|
+
#define OBJ_id_GostR3410_94_CryptoPro_B_ParamSet OBJ_cryptopro,32L,3L
|
3808
|
+
|
3809
|
+
#define SN_id_GostR3410_94_CryptoPro_C_ParamSet "id-GostR3410-94-CryptoPro-C-ParamSet"
|
3810
|
+
#define NID_id_GostR3410_94_CryptoPro_C_ParamSet 834
|
3811
|
+
#define OBJ_id_GostR3410_94_CryptoPro_C_ParamSet OBJ_cryptopro,32L,4L
|
3812
|
+
|
3813
|
+
#define SN_id_GostR3410_94_CryptoPro_D_ParamSet "id-GostR3410-94-CryptoPro-D-ParamSet"
|
3814
|
+
#define NID_id_GostR3410_94_CryptoPro_D_ParamSet 835
|
3815
|
+
#define OBJ_id_GostR3410_94_CryptoPro_D_ParamSet OBJ_cryptopro,32L,5L
|
3816
|
+
|
3817
|
+
#define SN_id_GostR3410_94_CryptoPro_XchA_ParamSet "id-GostR3410-94-CryptoPro-XchA-ParamSet"
|
3818
|
+
#define NID_id_GostR3410_94_CryptoPro_XchA_ParamSet 836
|
3819
|
+
#define OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet OBJ_cryptopro,33L,1L
|
3820
|
+
|
3821
|
+
#define SN_id_GostR3410_94_CryptoPro_XchB_ParamSet "id-GostR3410-94-CryptoPro-XchB-ParamSet"
|
3822
|
+
#define NID_id_GostR3410_94_CryptoPro_XchB_ParamSet 837
|
3823
|
+
#define OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet OBJ_cryptopro,33L,2L
|
3824
|
+
|
3825
|
+
#define SN_id_GostR3410_94_CryptoPro_XchC_ParamSet "id-GostR3410-94-CryptoPro-XchC-ParamSet"
|
3826
|
+
#define NID_id_GostR3410_94_CryptoPro_XchC_ParamSet 838
|
3827
|
+
#define OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet OBJ_cryptopro,33L,3L
|
3828
|
+
|
3829
|
+
#define SN_id_GostR3410_2001_TestParamSet "id-GostR3410-2001-TestParamSet"
|
3830
|
+
#define NID_id_GostR3410_2001_TestParamSet 839
|
3831
|
+
#define OBJ_id_GostR3410_2001_TestParamSet OBJ_cryptopro,35L,0L
|
3832
|
+
|
3833
|
+
#define SN_id_GostR3410_2001_CryptoPro_A_ParamSet "id-GostR3410-2001-CryptoPro-A-ParamSet"
|
3834
|
+
#define NID_id_GostR3410_2001_CryptoPro_A_ParamSet 840
|
3835
|
+
#define OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet OBJ_cryptopro,35L,1L
|
3836
|
+
|
3837
|
+
#define SN_id_GostR3410_2001_CryptoPro_B_ParamSet "id-GostR3410-2001-CryptoPro-B-ParamSet"
|
3838
|
+
#define NID_id_GostR3410_2001_CryptoPro_B_ParamSet 841
|
3839
|
+
#define OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet OBJ_cryptopro,35L,2L
|
3840
|
+
|
3841
|
+
#define SN_id_GostR3410_2001_CryptoPro_C_ParamSet "id-GostR3410-2001-CryptoPro-C-ParamSet"
|
3842
|
+
#define NID_id_GostR3410_2001_CryptoPro_C_ParamSet 842
|
3843
|
+
#define OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet OBJ_cryptopro,35L,3L
|
3844
|
+
|
3845
|
+
#define SN_id_GostR3410_2001_CryptoPro_XchA_ParamSet "id-GostR3410-2001-CryptoPro-XchA-ParamSet"
|
3846
|
+
#define NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet 843
|
3847
|
+
#define OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet OBJ_cryptopro,36L,0L
|
3848
|
+
|
3849
|
+
#define SN_id_GostR3410_2001_CryptoPro_XchB_ParamSet "id-GostR3410-2001-CryptoPro-XchB-ParamSet"
|
3850
|
+
#define NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet 844
|
3851
|
+
#define OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet OBJ_cryptopro,36L,1L
|
3852
|
+
|
3853
|
+
#define SN_id_GostR3410_94_a "id-GostR3410-94-a"
|
3854
|
+
#define NID_id_GostR3410_94_a 845
|
3855
|
+
#define OBJ_id_GostR3410_94_a OBJ_id_GostR3410_94,1L
|
3856
|
+
|
3857
|
+
#define SN_id_GostR3410_94_aBis "id-GostR3410-94-aBis"
|
3858
|
+
#define NID_id_GostR3410_94_aBis 846
|
3859
|
+
#define OBJ_id_GostR3410_94_aBis OBJ_id_GostR3410_94,2L
|
3860
|
+
|
3861
|
+
#define SN_id_GostR3410_94_b "id-GostR3410-94-b"
|
3862
|
+
#define NID_id_GostR3410_94_b 847
|
3863
|
+
#define OBJ_id_GostR3410_94_b OBJ_id_GostR3410_94,3L
|
3864
|
+
|
3865
|
+
#define SN_id_GostR3410_94_bBis "id-GostR3410-94-bBis"
|
3866
|
+
#define NID_id_GostR3410_94_bBis 848
|
3867
|
+
#define OBJ_id_GostR3410_94_bBis OBJ_id_GostR3410_94,4L
|
3868
|
+
|
3869
|
+
#define SN_id_Gost28147_89_cc "id-Gost28147-89-cc"
|
3870
|
+
#define LN_id_Gost28147_89_cc "GOST 28147-89 Cryptocom ParamSet"
|
3871
|
+
#define NID_id_Gost28147_89_cc 849
|
3872
|
+
#define OBJ_id_Gost28147_89_cc OBJ_cryptocom,1L,6L,1L
|
3873
|
+
|
3874
|
+
#define SN_id_GostR3410_94_cc "gost94cc"
|
3875
|
+
#define LN_id_GostR3410_94_cc "GOST 34.10-94 Cryptocom"
|
3876
|
+
#define NID_id_GostR3410_94_cc 850
|
3877
|
+
#define OBJ_id_GostR3410_94_cc OBJ_cryptocom,1L,5L,3L
|
3878
|
+
|
3879
|
+
#define SN_id_GostR3410_2001_cc "gost2001cc"
|
3880
|
+
#define LN_id_GostR3410_2001_cc "GOST 34.10-2001 Cryptocom"
|
3881
|
+
#define NID_id_GostR3410_2001_cc 851
|
3882
|
+
#define OBJ_id_GostR3410_2001_cc OBJ_cryptocom,1L,5L,4L
|
3883
|
+
|
3884
|
+
#define SN_id_GostR3411_94_with_GostR3410_94_cc "id-GostR3411-94-with-GostR3410-94-cc"
|
3885
|
+
#define LN_id_GostR3411_94_with_GostR3410_94_cc "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom"
|
3886
|
+
#define NID_id_GostR3411_94_with_GostR3410_94_cc 852
|
3887
|
+
#define OBJ_id_GostR3411_94_with_GostR3410_94_cc OBJ_cryptocom,1L,3L,3L
|
3888
|
+
|
3889
|
+
#define SN_id_GostR3411_94_with_GostR3410_2001_cc "id-GostR3411-94-with-GostR3410-2001-cc"
|
3890
|
+
#define LN_id_GostR3411_94_with_GostR3410_2001_cc "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom"
|
3891
|
+
#define NID_id_GostR3411_94_with_GostR3410_2001_cc 853
|
3892
|
+
#define OBJ_id_GostR3411_94_with_GostR3410_2001_cc OBJ_cryptocom,1L,3L,4L
|
3893
|
+
|
3894
|
+
#define SN_id_GostR3410_2001_ParamSet_cc "id-GostR3410-2001-ParamSet-cc"
|
3895
|
+
#define LN_id_GostR3410_2001_ParamSet_cc "GOST R 3410-2001 Parameter Set Cryptocom"
|
3896
|
+
#define NID_id_GostR3410_2001_ParamSet_cc 854
|
3897
|
+
#define OBJ_id_GostR3410_2001_ParamSet_cc OBJ_cryptocom,1L,8L,1L
|
3898
|
+
|
3899
|
+
#define SN_camellia_128_cbc "CAMELLIA-128-CBC"
|
3900
|
+
#define LN_camellia_128_cbc "camellia-128-cbc"
|
3901
|
+
#define NID_camellia_128_cbc 751
|
3902
|
+
#define OBJ_camellia_128_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,2L
|
3903
|
+
|
3904
|
+
#define SN_camellia_192_cbc "CAMELLIA-192-CBC"
|
3905
|
+
#define LN_camellia_192_cbc "camellia-192-cbc"
|
3906
|
+
#define NID_camellia_192_cbc 752
|
3907
|
+
#define OBJ_camellia_192_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,3L
|
3908
|
+
|
3909
|
+
#define SN_camellia_256_cbc "CAMELLIA-256-CBC"
|
3910
|
+
#define LN_camellia_256_cbc "camellia-256-cbc"
|
3911
|
+
#define NID_camellia_256_cbc 753
|
3912
|
+
#define OBJ_camellia_256_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,4L
|
3913
|
+
|
3914
|
+
#define SN_id_camellia128_wrap "id-camellia128-wrap"
|
3915
|
+
#define NID_id_camellia128_wrap 907
|
3916
|
+
#define OBJ_id_camellia128_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,2L
|
3917
|
+
|
3918
|
+
#define SN_id_camellia192_wrap "id-camellia192-wrap"
|
3919
|
+
#define NID_id_camellia192_wrap 908
|
3920
|
+
#define OBJ_id_camellia192_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,3L
|
3921
|
+
|
3922
|
+
#define SN_id_camellia256_wrap "id-camellia256-wrap"
|
3923
|
+
#define NID_id_camellia256_wrap 909
|
3924
|
+
#define OBJ_id_camellia256_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,4L
|
3925
|
+
|
3926
|
+
#define OBJ_ntt_ds 0L,3L,4401L,5L
|
3927
|
+
|
3928
|
+
#define OBJ_camellia OBJ_ntt_ds,3L,1L,9L
|
3929
|
+
|
3930
|
+
#define SN_camellia_128_ecb "CAMELLIA-128-ECB"
|
3931
|
+
#define LN_camellia_128_ecb "camellia-128-ecb"
|
3932
|
+
#define NID_camellia_128_ecb 754
|
3933
|
+
#define OBJ_camellia_128_ecb OBJ_camellia,1L
|
3934
|
+
|
3935
|
+
#define SN_camellia_128_ofb128 "CAMELLIA-128-OFB"
|
3936
|
+
#define LN_camellia_128_ofb128 "camellia-128-ofb"
|
3937
|
+
#define NID_camellia_128_ofb128 766
|
3938
|
+
#define OBJ_camellia_128_ofb128 OBJ_camellia,3L
|
3939
|
+
|
3940
|
+
#define SN_camellia_128_cfb128 "CAMELLIA-128-CFB"
|
3941
|
+
#define LN_camellia_128_cfb128 "camellia-128-cfb"
|
3942
|
+
#define NID_camellia_128_cfb128 757
|
3943
|
+
#define OBJ_camellia_128_cfb128 OBJ_camellia,4L
|
3944
|
+
|
3945
|
+
#define SN_camellia_192_ecb "CAMELLIA-192-ECB"
|
3946
|
+
#define LN_camellia_192_ecb "camellia-192-ecb"
|
3947
|
+
#define NID_camellia_192_ecb 755
|
3948
|
+
#define OBJ_camellia_192_ecb OBJ_camellia,21L
|
3949
|
+
|
3950
|
+
#define SN_camellia_192_ofb128 "CAMELLIA-192-OFB"
|
3951
|
+
#define LN_camellia_192_ofb128 "camellia-192-ofb"
|
3952
|
+
#define NID_camellia_192_ofb128 767
|
3953
|
+
#define OBJ_camellia_192_ofb128 OBJ_camellia,23L
|
3954
|
+
|
3955
|
+
#define SN_camellia_192_cfb128 "CAMELLIA-192-CFB"
|
3956
|
+
#define LN_camellia_192_cfb128 "camellia-192-cfb"
|
3957
|
+
#define NID_camellia_192_cfb128 758
|
3958
|
+
#define OBJ_camellia_192_cfb128 OBJ_camellia,24L
|
3959
|
+
|
3960
|
+
#define SN_camellia_256_ecb "CAMELLIA-256-ECB"
|
3961
|
+
#define LN_camellia_256_ecb "camellia-256-ecb"
|
3962
|
+
#define NID_camellia_256_ecb 756
|
3963
|
+
#define OBJ_camellia_256_ecb OBJ_camellia,41L
|
3964
|
+
|
3965
|
+
#define SN_camellia_256_ofb128 "CAMELLIA-256-OFB"
|
3966
|
+
#define LN_camellia_256_ofb128 "camellia-256-ofb"
|
3967
|
+
#define NID_camellia_256_ofb128 768
|
3968
|
+
#define OBJ_camellia_256_ofb128 OBJ_camellia,43L
|
3969
|
+
|
3970
|
+
#define SN_camellia_256_cfb128 "CAMELLIA-256-CFB"
|
3971
|
+
#define LN_camellia_256_cfb128 "camellia-256-cfb"
|
3972
|
+
#define NID_camellia_256_cfb128 759
|
3973
|
+
#define OBJ_camellia_256_cfb128 OBJ_camellia,44L
|
3974
|
+
|
3975
|
+
#define SN_camellia_128_cfb1 "CAMELLIA-128-CFB1"
|
3976
|
+
#define LN_camellia_128_cfb1 "camellia-128-cfb1"
|
3977
|
+
#define NID_camellia_128_cfb1 760
|
3978
|
+
|
3979
|
+
#define SN_camellia_192_cfb1 "CAMELLIA-192-CFB1"
|
3980
|
+
#define LN_camellia_192_cfb1 "camellia-192-cfb1"
|
3981
|
+
#define NID_camellia_192_cfb1 761
|
3982
|
+
|
3983
|
+
#define SN_camellia_256_cfb1 "CAMELLIA-256-CFB1"
|
3984
|
+
#define LN_camellia_256_cfb1 "camellia-256-cfb1"
|
3985
|
+
#define NID_camellia_256_cfb1 762
|
3986
|
+
|
3987
|
+
#define SN_camellia_128_cfb8 "CAMELLIA-128-CFB8"
|
3988
|
+
#define LN_camellia_128_cfb8 "camellia-128-cfb8"
|
3989
|
+
#define NID_camellia_128_cfb8 763
|
3990
|
+
|
3991
|
+
#define SN_camellia_192_cfb8 "CAMELLIA-192-CFB8"
|
3992
|
+
#define LN_camellia_192_cfb8 "camellia-192-cfb8"
|
3993
|
+
#define NID_camellia_192_cfb8 764
|
3994
|
+
|
3995
|
+
#define SN_camellia_256_cfb8 "CAMELLIA-256-CFB8"
|
3996
|
+
#define LN_camellia_256_cfb8 "camellia-256-cfb8"
|
3997
|
+
#define NID_camellia_256_cfb8 765
|
3998
|
+
|
3999
|
+
#define SN_kisa "KISA"
|
4000
|
+
#define LN_kisa "kisa"
|
4001
|
+
#define NID_kisa 773
|
4002
|
+
#define OBJ_kisa OBJ_member_body,410L,200004L
|
4003
|
+
|
4004
|
+
#define SN_seed_ecb "SEED-ECB"
|
4005
|
+
#define LN_seed_ecb "seed-ecb"
|
4006
|
+
#define NID_seed_ecb 776
|
4007
|
+
#define OBJ_seed_ecb OBJ_kisa,1L,3L
|
4008
|
+
|
4009
|
+
#define SN_seed_cbc "SEED-CBC"
|
4010
|
+
#define LN_seed_cbc "seed-cbc"
|
4011
|
+
#define NID_seed_cbc 777
|
4012
|
+
#define OBJ_seed_cbc OBJ_kisa,1L,4L
|
4013
|
+
|
4014
|
+
#define SN_seed_cfb128 "SEED-CFB"
|
4015
|
+
#define LN_seed_cfb128 "seed-cfb"
|
4016
|
+
#define NID_seed_cfb128 779
|
4017
|
+
#define OBJ_seed_cfb128 OBJ_kisa,1L,5L
|
4018
|
+
|
4019
|
+
#define SN_seed_ofb128 "SEED-OFB"
|
4020
|
+
#define LN_seed_ofb128 "seed-ofb"
|
4021
|
+
#define NID_seed_ofb128 778
|
4022
|
+
#define OBJ_seed_ofb128 OBJ_kisa,1L,6L
|
4023
|
+
|
4024
|
+
#define SN_hmac "HMAC"
|
4025
|
+
#define LN_hmac "hmac"
|
4026
|
+
#define NID_hmac 855
|
4027
|
+
|
4028
|
+
#define SN_cmac "CMAC"
|
4029
|
+
#define LN_cmac "cmac"
|
4030
|
+
#define NID_cmac 894
|
4031
|
+
|
4032
|
+
#define SN_rc4_hmac_md5 "RC4-HMAC-MD5"
|
4033
|
+
#define LN_rc4_hmac_md5 "rc4-hmac-md5"
|
4034
|
+
#define NID_rc4_hmac_md5 915
|
4035
|
+
|
4036
|
+
#define SN_aes_128_cbc_hmac_sha1 "AES-128-CBC-HMAC-SHA1"
|
4037
|
+
#define LN_aes_128_cbc_hmac_sha1 "aes-128-cbc-hmac-sha1"
|
4038
|
+
#define NID_aes_128_cbc_hmac_sha1 916
|
4039
|
+
|
4040
|
+
#define SN_aes_192_cbc_hmac_sha1 "AES-192-CBC-HMAC-SHA1"
|
4041
|
+
#define LN_aes_192_cbc_hmac_sha1 "aes-192-cbc-hmac-sha1"
|
4042
|
+
#define NID_aes_192_cbc_hmac_sha1 917
|
4043
|
+
|
4044
|
+
#define SN_aes_256_cbc_hmac_sha1 "AES-256-CBC-HMAC-SHA1"
|
4045
|
+
#define LN_aes_256_cbc_hmac_sha1 "aes-256-cbc-hmac-sha1"
|
4046
|
+
#define NID_aes_256_cbc_hmac_sha1 918
|
4047
|
+
|
4048
|
+
#define SN_dhpublicnumber "dhpublicnumber"
|
4049
|
+
#define LN_dhpublicnumber "X9.42 DH"
|
4050
|
+
#define NID_dhpublicnumber 920
|
4051
|
+
#define OBJ_dhpublicnumber OBJ_ISO_US,10046L,2L,1L
|
4052
|
+
|
4053
|
+
#define SN_brainpoolP160r1 "brainpoolP160r1"
|
4054
|
+
#define NID_brainpoolP160r1 921
|
4055
|
+
#define OBJ_brainpoolP160r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,1L
|
4056
|
+
|
4057
|
+
#define SN_brainpoolP160t1 "brainpoolP160t1"
|
4058
|
+
#define NID_brainpoolP160t1 922
|
4059
|
+
#define OBJ_brainpoolP160t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,2L
|
4060
|
+
|
4061
|
+
#define SN_brainpoolP192r1 "brainpoolP192r1"
|
4062
|
+
#define NID_brainpoolP192r1 923
|
4063
|
+
#define OBJ_brainpoolP192r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,3L
|
4064
|
+
|
4065
|
+
#define SN_brainpoolP192t1 "brainpoolP192t1"
|
4066
|
+
#define NID_brainpoolP192t1 924
|
4067
|
+
#define OBJ_brainpoolP192t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,4L
|
4068
|
+
|
4069
|
+
#define SN_brainpoolP224r1 "brainpoolP224r1"
|
4070
|
+
#define NID_brainpoolP224r1 925
|
4071
|
+
#define OBJ_brainpoolP224r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,5L
|
4072
|
+
|
4073
|
+
#define SN_brainpoolP224t1 "brainpoolP224t1"
|
4074
|
+
#define NID_brainpoolP224t1 926
|
4075
|
+
#define OBJ_brainpoolP224t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,6L
|
4076
|
+
|
4077
|
+
#define SN_brainpoolP256r1 "brainpoolP256r1"
|
4078
|
+
#define NID_brainpoolP256r1 927
|
4079
|
+
#define OBJ_brainpoolP256r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,7L
|
4080
|
+
|
4081
|
+
#define SN_brainpoolP256t1 "brainpoolP256t1"
|
4082
|
+
#define NID_brainpoolP256t1 928
|
4083
|
+
#define OBJ_brainpoolP256t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,8L
|
4084
|
+
|
4085
|
+
#define SN_brainpoolP320r1 "brainpoolP320r1"
|
4086
|
+
#define NID_brainpoolP320r1 929
|
4087
|
+
#define OBJ_brainpoolP320r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,9L
|
4088
|
+
|
4089
|
+
#define SN_brainpoolP320t1 "brainpoolP320t1"
|
4090
|
+
#define NID_brainpoolP320t1 930
|
4091
|
+
#define OBJ_brainpoolP320t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,10L
|
4092
|
+
|
4093
|
+
#define SN_brainpoolP384r1 "brainpoolP384r1"
|
4094
|
+
#define NID_brainpoolP384r1 931
|
4095
|
+
#define OBJ_brainpoolP384r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,11L
|
4096
|
+
|
4097
|
+
#define SN_brainpoolP384t1 "brainpoolP384t1"
|
4098
|
+
#define NID_brainpoolP384t1 932
|
4099
|
+
#define OBJ_brainpoolP384t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,12L
|
4100
|
+
|
4101
|
+
#define SN_brainpoolP512r1 "brainpoolP512r1"
|
4102
|
+
#define NID_brainpoolP512r1 933
|
4103
|
+
#define OBJ_brainpoolP512r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,13L
|
4104
|
+
|
4105
|
+
#define SN_brainpoolP512t1 "brainpoolP512t1"
|
4106
|
+
#define NID_brainpoolP512t1 934
|
4107
|
+
#define OBJ_brainpoolP512t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,14L
|
4108
|
+
|
4109
|
+
#define OBJ_x9_63_scheme 1L,3L,133L,16L,840L,63L,0L
|
4110
|
+
|
4111
|
+
#define OBJ_secg_scheme OBJ_certicom_arc,1L
|
4112
|
+
|
4113
|
+
#define SN_dhSinglePass_stdDH_sha1kdf_scheme "dhSinglePass-stdDH-sha1kdf-scheme"
|
4114
|
+
#define NID_dhSinglePass_stdDH_sha1kdf_scheme 936
|
4115
|
+
#define OBJ_dhSinglePass_stdDH_sha1kdf_scheme OBJ_x9_63_scheme,2L
|
4116
|
+
|
4117
|
+
#define SN_dhSinglePass_stdDH_sha224kdf_scheme "dhSinglePass-stdDH-sha224kdf-scheme"
|
4118
|
+
#define NID_dhSinglePass_stdDH_sha224kdf_scheme 937
|
4119
|
+
#define OBJ_dhSinglePass_stdDH_sha224kdf_scheme OBJ_secg_scheme,11L,0L
|
4120
|
+
|
4121
|
+
#define SN_dhSinglePass_stdDH_sha256kdf_scheme "dhSinglePass-stdDH-sha256kdf-scheme"
|
4122
|
+
#define NID_dhSinglePass_stdDH_sha256kdf_scheme 938
|
4123
|
+
#define OBJ_dhSinglePass_stdDH_sha256kdf_scheme OBJ_secg_scheme,11L,1L
|
4124
|
+
|
4125
|
+
#define SN_dhSinglePass_stdDH_sha384kdf_scheme "dhSinglePass-stdDH-sha384kdf-scheme"
|
4126
|
+
#define NID_dhSinglePass_stdDH_sha384kdf_scheme 939
|
4127
|
+
#define OBJ_dhSinglePass_stdDH_sha384kdf_scheme OBJ_secg_scheme,11L,2L
|
4128
|
+
|
4129
|
+
#define SN_dhSinglePass_stdDH_sha512kdf_scheme "dhSinglePass-stdDH-sha512kdf-scheme"
|
4130
|
+
#define NID_dhSinglePass_stdDH_sha512kdf_scheme 940
|
4131
|
+
#define OBJ_dhSinglePass_stdDH_sha512kdf_scheme OBJ_secg_scheme,11L,3L
|
4132
|
+
|
4133
|
+
#define SN_dhSinglePass_cofactorDH_sha1kdf_scheme "dhSinglePass-cofactorDH-sha1kdf-scheme"
|
4134
|
+
#define NID_dhSinglePass_cofactorDH_sha1kdf_scheme 941
|
4135
|
+
#define OBJ_dhSinglePass_cofactorDH_sha1kdf_scheme OBJ_x9_63_scheme,3L
|
4136
|
+
|
4137
|
+
#define SN_dhSinglePass_cofactorDH_sha224kdf_scheme "dhSinglePass-cofactorDH-sha224kdf-scheme"
|
4138
|
+
#define NID_dhSinglePass_cofactorDH_sha224kdf_scheme 942
|
4139
|
+
#define OBJ_dhSinglePass_cofactorDH_sha224kdf_scheme OBJ_secg_scheme,14L,0L
|
4140
|
+
|
4141
|
+
#define SN_dhSinglePass_cofactorDH_sha256kdf_scheme "dhSinglePass-cofactorDH-sha256kdf-scheme"
|
4142
|
+
#define NID_dhSinglePass_cofactorDH_sha256kdf_scheme 943
|
4143
|
+
#define OBJ_dhSinglePass_cofactorDH_sha256kdf_scheme OBJ_secg_scheme,14L,1L
|
4144
|
+
|
4145
|
+
#define SN_dhSinglePass_cofactorDH_sha384kdf_scheme "dhSinglePass-cofactorDH-sha384kdf-scheme"
|
4146
|
+
#define NID_dhSinglePass_cofactorDH_sha384kdf_scheme 944
|
4147
|
+
#define OBJ_dhSinglePass_cofactorDH_sha384kdf_scheme OBJ_secg_scheme,14L,2L
|
4148
|
+
|
4149
|
+
#define SN_dhSinglePass_cofactorDH_sha512kdf_scheme "dhSinglePass-cofactorDH-sha512kdf-scheme"
|
4150
|
+
#define NID_dhSinglePass_cofactorDH_sha512kdf_scheme 945
|
4151
|
+
#define OBJ_dhSinglePass_cofactorDH_sha512kdf_scheme OBJ_secg_scheme,14L,3L
|
4152
|
+
|
4153
|
+
#define SN_dh_std_kdf "dh-std-kdf"
|
4154
|
+
#define NID_dh_std_kdf 946
|
4155
|
+
|
4156
|
+
#define SN_dh_cofactor_kdf "dh-cofactor-kdf"
|
4157
|
+
#define NID_dh_cofactor_kdf 947
|
4158
|
+
|
4159
|
+
#define SN_X25519 "X25519"
|
4160
|
+
#define NID_X25519 948
|
4161
|
+
|
4162
|
+
#define SN_cecpq1 "cecpq1"
|
4163
|
+
#define NID_cecpq1 949
|
4164
|
+
|
4165
|
+
|
4166
|
+
#endif /* OPENSSL_HEADER_NID_H */
|