grpc 1.0.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (705) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +3696 -867
  3. data/etc/roots.pem +39 -111
  4. data/include/grpc/byte_buffer.h +64 -1
  5. data/include/grpc/census.h +40 -96
  6. data/include/grpc/compression.h +2 -1
  7. data/include/grpc/grpc.h +42 -7
  8. data/include/grpc/grpc_posix.h +8 -5
  9. data/include/grpc/impl/codegen/atm.h +3 -0
  10. data/include/grpc/impl/codegen/atm_gcc_atomic.h +2 -0
  11. data/include/grpc/impl/codegen/atm_gcc_sync.h +8 -0
  12. data/include/grpc/impl/codegen/atm_windows.h +4 -0
  13. data/include/grpc/impl/codegen/byte_buffer_reader.h +4 -4
  14. data/include/grpc/impl/codegen/compression_types.h +1 -1
  15. data/include/grpc/impl/codegen/connectivity_state.h +2 -0
  16. data/include/grpc/impl/codegen/exec_ctx_fwd.h +41 -0
  17. data/include/grpc/impl/codegen/gpr_slice.h +84 -0
  18. data/include/grpc/impl/codegen/{alloc.h → gpr_types.h} +30 -29
  19. data/include/grpc/impl/codegen/grpc_types.h +91 -9
  20. data/include/grpc/impl/codegen/port_platform.h +25 -92
  21. data/include/grpc/impl/codegen/slice.h +54 -97
  22. data/include/grpc/impl/codegen/sync.h +0 -253
  23. data/include/grpc/module.modulemap +0 -2
  24. data/include/grpc/slice.h +132 -0
  25. data/include/grpc/{impl/codegen/slice_buffer.h → slice_buffer.h} +22 -39
  26. data/include/grpc/support/alloc.h +40 -1
  27. data/include/grpc/support/log.h +80 -1
  28. data/include/grpc/support/log_windows.h +2 -0
  29. data/include/grpc/support/string_util.h +1 -1
  30. data/include/grpc/support/sync.h +252 -0
  31. data/include/grpc/support/time.h +67 -1
  32. data/src/boringssl/err_data.c +639 -627
  33. data/src/core/ext/census/base_resources.c +71 -0
  34. data/src/core/ext/census/base_resources.h +39 -0
  35. data/src/core/ext/census/gen/census.pb.c +26 -29
  36. data/src/core/ext/census/gen/census.pb.h +68 -67
  37. data/src/core/ext/census/gen/trace_context.pb.c +81 -0
  38. data/src/core/ext/census/gen/trace_context.pb.h +99 -0
  39. data/src/core/ext/census/grpc_filter.c +22 -16
  40. data/src/core/ext/census/grpc_plugin.c +2 -1
  41. data/src/core/ext/census/initialize.c +16 -4
  42. data/src/core/ext/census/mlog.h +1 -1
  43. data/src/core/ext/census/placeholders.c +0 -45
  44. data/src/core/ext/census/resource.c +312 -0
  45. data/src/core/ext/census/resource.h +63 -0
  46. data/src/core/ext/census/trace_context.c +86 -0
  47. data/src/core/ext/census/trace_context.h +68 -0
  48. data/src/core/ext/census/tracing.c +8 -2
  49. data/src/core/ext/{client_config → client_channel}/channel_connectivity.c +8 -4
  50. data/src/core/ext/client_channel/client_channel.c +1218 -0
  51. data/src/core/ext/{client_config → client_channel}/client_channel.h +8 -11
  52. data/src/core/ext/{client_config → client_channel}/client_channel_factory.c +33 -3
  53. data/src/core/ext/{client_config → client_channel}/client_channel_factory.h +15 -8
  54. data/src/core/ext/{client_config/client_config_plugin.c → client_channel/client_channel_plugin.c} +16 -15
  55. data/src/core/ext/{client_config → client_channel}/connector.c +1 -1
  56. data/src/core/ext/{client_config → client_channel}/connector.h +5 -8
  57. data/{include/grpc/support/slice_buffer.h → src/core/ext/client_channel/default_initial_connect_string.c} +4 -5
  58. data/src/core/ext/client_channel/http_connect_handshaker.c +399 -0
  59. data/src/core/ext/client_channel/http_connect_handshaker.h +52 -0
  60. data/src/core/ext/{client_config → client_channel}/initial_connect_string.c +6 -7
  61. data/src/core/ext/{client_config → client_channel}/initial_connect_string.h +10 -10
  62. data/src/core/ext/{client_config → client_channel}/lb_policy.c +11 -11
  63. data/src/core/ext/{client_config → client_channel}/lb_policy.h +68 -27
  64. data/src/core/ext/client_channel/lb_policy_factory.c +163 -0
  65. data/src/core/ext/{client_config → client_channel}/lb_policy_factory.h +64 -9
  66. data/src/core/ext/{client_config → client_channel}/lb_policy_registry.c +6 -4
  67. data/src/core/ext/{client_config → client_channel}/lb_policy_registry.h +4 -4
  68. data/src/core/ext/{client_config → client_channel}/parse_address.c +21 -14
  69. data/src/core/ext/{client_config → client_channel}/parse_address.h +8 -10
  70. data/src/core/ext/{client_config → client_channel}/resolver.c +3 -4
  71. data/src/core/ext/{client_config → client_channel}/resolver.h +11 -15
  72. data/src/core/ext/{client_config → client_channel}/resolver_factory.c +4 -3
  73. data/src/core/ext/{client_config → client_channel}/resolver_factory.h +13 -11
  74. data/src/core/ext/{client_config → client_channel}/resolver_registry.c +54 -34
  75. data/src/core/ext/{client_config → client_channel}/resolver_registry.h +21 -8
  76. data/src/core/ext/{client_config → client_channel}/subchannel.c +208 -119
  77. data/src/core/ext/{client_config → client_channel}/subchannel.h +21 -11
  78. data/src/core/ext/{client_config → client_channel}/subchannel_index.c +6 -17
  79. data/src/core/ext/{client_config → client_channel}/subchannel_index.h +7 -7
  80. data/src/core/ext/{client_config → client_channel}/uri_parser.c +21 -28
  81. data/src/core/ext/{client_config → client_channel}/uri_parser.h +3 -3
  82. data/src/core/ext/lb_policy/grpclb/grpclb.c +1406 -0
  83. data/src/core/ext/lb_policy/grpclb/grpclb.h +44 -0
  84. data/src/core/ext/lb_policy/grpclb/load_balancer_api.c +117 -37
  85. data/src/core/ext/lb_policy/grpclb/load_balancer_api.h +31 -12
  86. data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +6 -36
  87. data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +22 -42
  88. data/src/core/ext/lb_policy/pick_first/pick_first.c +64 -46
  89. data/src/core/ext/lb_policy/round_robin/round_robin.c +324 -160
  90. data/src/core/ext/load_reporting/load_reporting.c +7 -56
  91. data/src/core/ext/load_reporting/load_reporting.h +41 -28
  92. data/src/core/ext/load_reporting/load_reporting_filter.c +132 -42
  93. data/src/core/ext/load_reporting/load_reporting_filter.h +1 -0
  94. data/src/core/ext/resolver/dns/native/dns_resolver.c +88 -80
  95. data/src/core/ext/resolver/sockaddr/sockaddr_resolver.c +57 -102
  96. data/src/core/ext/transport/chttp2/alpn/alpn.c +1 -1
  97. data/src/core/ext/transport/chttp2/client/chttp2_connector.c +253 -0
  98. data/src/core/{lib/iomgr/ev_poll_and_epoll_posix.h → ext/transport/chttp2/client/chttp2_connector.h} +5 -5
  99. data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +31 -160
  100. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +5 -5
  101. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c +44 -243
  102. data/src/core/ext/transport/chttp2/server/chttp2_server.c +342 -0
  103. data/src/core/ext/transport/chttp2/server/chttp2_server.h +47 -0
  104. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.c +11 -124
  105. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c +20 -9
  106. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c +28 -236
  107. data/src/core/ext/transport/chttp2/transport/bin_decoder.c +31 -27
  108. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +5 -4
  109. data/src/core/ext/transport/chttp2/transport/bin_encoder.c +25 -22
  110. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +8 -7
  111. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.c +0 -3
  112. data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +1345 -1521
  113. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -1
  114. data/src/core/ext/transport/chttp2/transport/frame.h +3 -5
  115. data/src/core/ext/transport/chttp2/transport/frame_data.c +50 -47
  116. data/src/core/ext/transport/chttp2/transport/frame_data.h +8 -9
  117. data/src/core/ext/transport/chttp2/transport/frame_goaway.c +19 -21
  118. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +9 -8
  119. data/src/core/ext/transport/chttp2/transport/frame_ping.c +13 -12
  120. data/src/core/ext/transport/chttp2/transport/frame_ping.h +6 -6
  121. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +31 -19
  122. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +8 -7
  123. data/src/core/ext/transport/chttp2/transport/frame_settings.c +22 -25
  124. data/src/core/ext/transport/chttp2/transport/frame_settings.h +9 -8
  125. data/src/core/ext/transport/chttp2/transport/frame_window_update.c +26 -18
  126. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +5 -6
  127. data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +68 -58
  128. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +8 -5
  129. data/src/core/ext/transport/chttp2/transport/hpack_parser.c +327 -214
  130. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +14 -9
  131. data/src/core/ext/transport/chttp2/transport/hpack_table.c +24 -19
  132. data/src/core/ext/transport/chttp2/transport/hpack_table.h +9 -6
  133. data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +2 -2
  134. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +1 -1
  135. data/src/core/ext/transport/chttp2/transport/internal.h +284 -436
  136. data/src/core/ext/transport/chttp2/transport/parsing.c +355 -590
  137. data/src/core/ext/transport/chttp2/transport/stream_lists.c +36 -309
  138. data/src/core/ext/transport/chttp2/transport/stream_map.c +13 -34
  139. data/src/core/ext/transport/chttp2/transport/stream_map.h +3 -4
  140. data/src/core/ext/transport/chttp2/transport/writing.c +174 -286
  141. data/src/core/lib/channel/channel_args.c +70 -13
  142. data/src/core/lib/channel/channel_args.h +28 -2
  143. data/src/core/lib/channel/channel_stack.c +77 -28
  144. data/src/core/lib/channel/channel_stack.h +61 -23
  145. data/src/core/lib/channel/channel_stack_builder.c +33 -25
  146. data/src/core/lib/channel/channel_stack_builder.h +17 -8
  147. data/src/core/lib/channel/compress_filter.c +52 -36
  148. data/src/core/lib/channel/connected_channel.c +20 -12
  149. data/src/core/lib/channel/connected_channel.h +2 -1
  150. data/src/core/lib/channel/context.h +13 -1
  151. data/src/core/lib/channel/deadline_filter.c +344 -0
  152. data/src/core/lib/channel/deadline_filter.h +99 -0
  153. data/src/core/lib/channel/handshaker.c +240 -0
  154. data/src/core/lib/channel/handshaker.h +164 -0
  155. data/src/core/lib/{security/credentials/google_default/credentials_windows.c → channel/handshaker_factory.c} +16 -23
  156. data/src/core/lib/channel/handshaker_factory.h +66 -0
  157. data/src/core/lib/channel/handshaker_registry.c +113 -0
  158. data/src/core/{ext/client_config/client_config.h → lib/channel/handshaker_registry.h} +26 -16
  159. data/src/core/lib/channel/http_client_filter.c +248 -46
  160. data/src/core/lib/channel/http_client_filter.h +3 -0
  161. data/src/core/lib/channel/http_server_filter.c +136 -24
  162. data/src/core/lib/channel/message_size_filter.c +261 -0
  163. data/src/core/lib/channel/message_size_filter.h +39 -0
  164. data/src/core/lib/compression/message_compress.c +43 -37
  165. data/src/core/lib/compression/message_compress.h +7 -5
  166. data/src/core/lib/http/format_request.c +26 -11
  167. data/src/core/lib/http/format_request.h +7 -5
  168. data/src/core/lib/http/httpcli.c +45 -27
  169. data/src/core/lib/http/httpcli.h +4 -4
  170. data/src/core/lib/http/httpcli_security_connector.c +56 -46
  171. data/src/core/lib/http/parser.c +17 -14
  172. data/src/core/lib/http/parser.h +4 -2
  173. data/src/core/lib/iomgr/closure.c +49 -7
  174. data/src/core/lib/iomgr/closure.h +56 -14
  175. data/src/core/lib/iomgr/combiner.c +422 -0
  176. data/src/core/lib/iomgr/combiner.h +64 -0
  177. data/src/core/lib/iomgr/endpoint.c +8 -2
  178. data/src/core/lib/iomgr/endpoint.h +17 -7
  179. data/src/core/lib/iomgr/endpoint_pair.h +3 -2
  180. data/src/core/lib/iomgr/endpoint_pair_posix.c +9 -8
  181. data/src/core/{ext/client_config/lb_policy_factory.c → lib/iomgr/endpoint_pair_uv.c} +18 -13
  182. data/src/core/lib/iomgr/endpoint_pair_windows.c +7 -6
  183. data/src/core/lib/iomgr/error.c +72 -6
  184. data/src/core/lib/iomgr/error.h +30 -3
  185. data/src/core/lib/iomgr/ev_epoll_linux.c +500 -382
  186. data/src/core/lib/iomgr/ev_epoll_linux.h +3 -2
  187. data/src/core/lib/iomgr/ev_poll_posix.c +317 -30
  188. data/src/core/lib/iomgr/ev_poll_posix.h +1 -0
  189. data/src/core/lib/iomgr/ev_posix.c +26 -5
  190. data/src/core/lib/iomgr/ev_posix.h +12 -1
  191. data/src/core/lib/iomgr/exec_ctx.c +27 -94
  192. data/src/core/lib/iomgr/exec_ctx.h +19 -22
  193. data/src/core/lib/iomgr/executor.c +29 -8
  194. data/src/core/lib/iomgr/executor.h +2 -4
  195. data/src/core/lib/iomgr/iocp_windows.c +3 -4
  196. data/src/core/lib/iomgr/iomgr.c +14 -10
  197. data/src/core/lib/iomgr/iomgr.h +6 -2
  198. data/src/core/lib/iomgr/iomgr_posix.c +2 -2
  199. data/src/core/lib/iomgr/iomgr_uv.c +49 -0
  200. data/src/core/lib/iomgr/iomgr_windows.c +2 -2
  201. data/src/core/lib/iomgr/load_file.c +3 -3
  202. data/src/core/lib/iomgr/load_file.h +2 -2
  203. data/src/core/lib/iomgr/network_status_tracker.c +1 -1
  204. data/src/core/lib/iomgr/pollset_set_uv.c +62 -0
  205. data/src/core/lib/iomgr/pollset_set_windows.c +3 -3
  206. data/src/core/lib/iomgr/pollset_uv.c +142 -0
  207. data/src/core/lib/iomgr/pollset_uv.h +42 -0
  208. data/src/core/lib/iomgr/pollset_windows.c +5 -6
  209. data/src/core/lib/iomgr/port.h +129 -0
  210. data/src/core/lib/iomgr/resolve_address.h +2 -1
  211. data/src/core/lib/iomgr/resolve_address_posix.c +14 -13
  212. data/src/core/lib/iomgr/resolve_address_uv.c +233 -0
  213. data/src/core/lib/iomgr/resolve_address_windows.c +14 -12
  214. data/src/core/lib/iomgr/resource_quota.c +832 -0
  215. data/src/core/lib/iomgr/resource_quota.h +159 -0
  216. data/src/core/lib/iomgr/sockaddr.h +10 -2
  217. data/src/core/lib/iomgr/sockaddr_utils.c +63 -36
  218. data/src/core/lib/iomgr/sockaddr_utils.h +14 -14
  219. data/src/core/lib/iomgr/socket_mutator.c +98 -0
  220. data/src/core/lib/iomgr/socket_mutator.h +80 -0
  221. data/src/core/lib/iomgr/socket_utils.h +42 -0
  222. data/src/core/lib/iomgr/socket_utils_common_posix.c +28 -13
  223. data/src/core/lib/iomgr/socket_utils_linux.c +11 -5
  224. data/src/core/lib/iomgr/socket_utils_posix.c +10 -7
  225. data/src/core/lib/iomgr/socket_utils_posix.h +11 -4
  226. data/src/core/lib/iomgr/socket_utils_uv.c +49 -0
  227. data/src/core/lib/iomgr/socket_utils_windows.c +52 -0
  228. data/src/core/lib/iomgr/socket_windows.c +14 -6
  229. data/src/core/lib/iomgr/socket_windows.h +1 -0
  230. data/src/core/lib/iomgr/tcp_client.h +8 -2
  231. data/src/core/lib/iomgr/tcp_client_posix.c +131 -82
  232. data/src/core/lib/iomgr/tcp_client_posix.h +45 -0
  233. data/src/core/lib/iomgr/tcp_client_uv.c +190 -0
  234. data/src/core/lib/iomgr/tcp_client_windows.c +54 -30
  235. data/src/core/lib/iomgr/tcp_posix.c +135 -56
  236. data/src/core/lib/iomgr/tcp_posix.h +2 -2
  237. data/src/core/lib/iomgr/tcp_server.h +14 -6
  238. data/src/core/lib/iomgr/tcp_server_posix.c +154 -118
  239. data/src/core/lib/iomgr/tcp_server_uv.c +388 -0
  240. data/src/core/lib/iomgr/tcp_server_windows.c +127 -100
  241. data/src/core/lib/iomgr/tcp_uv.c +367 -0
  242. data/src/core/lib/iomgr/tcp_uv.h +59 -0
  243. data/src/core/lib/iomgr/tcp_windows.c +65 -48
  244. data/src/core/lib/iomgr/tcp_windows.h +3 -1
  245. data/src/core/lib/iomgr/timer.h +21 -21
  246. data/src/core/lib/iomgr/{timer.c → timer_generic.c} +15 -10
  247. data/src/core/lib/iomgr/timer_generic.h +49 -0
  248. data/src/core/lib/iomgr/timer_heap.c +6 -0
  249. data/src/core/lib/iomgr/timer_uv.c +99 -0
  250. data/src/core/lib/iomgr/timer_uv.h +47 -0
  251. data/src/core/lib/iomgr/udp_server.c +116 -98
  252. data/src/core/lib/iomgr/udp_server.h +5 -3
  253. data/src/core/lib/iomgr/unix_sockets_posix.c +14 -6
  254. data/src/core/lib/iomgr/unix_sockets_posix.h +6 -5
  255. data/src/core/lib/iomgr/unix_sockets_posix_noop.c +4 -4
  256. data/src/core/lib/iomgr/wakeup_fd_cv.c +118 -0
  257. data/src/core/lib/iomgr/wakeup_fd_cv.h +80 -0
  258. data/src/core/lib/iomgr/wakeup_fd_eventfd.c +3 -3
  259. data/src/core/lib/iomgr/wakeup_fd_nospecial.c +3 -3
  260. data/src/core/lib/iomgr/wakeup_fd_pipe.c +12 -6
  261. data/src/core/lib/iomgr/wakeup_fd_posix.c +34 -5
  262. data/src/core/lib/iomgr/wakeup_fd_posix.h +5 -0
  263. data/src/core/lib/iomgr/workqueue.h +12 -20
  264. data/src/core/{ext/client_config/client_config.c → lib/iomgr/workqueue_uv.c} +24 -33
  265. data/{include/grpc/support/slice.h → src/core/lib/iomgr/workqueue_uv.h} +4 -6
  266. data/src/core/lib/iomgr/workqueue_windows.c +9 -8
  267. data/src/core/lib/json/json.c +3 -3
  268. data/src/core/lib/json/json.h +11 -11
  269. data/src/core/lib/json/json_reader.c +9 -5
  270. data/src/core/lib/profiling/basic_timers.c +10 -1
  271. data/src/core/lib/profiling/timers.h +2 -0
  272. data/src/core/lib/security/context/security_context.c +13 -3
  273. data/src/core/lib/security/context/security_context.h +20 -0
  274. data/src/core/lib/security/credentials/composite/composite_credentials.c +28 -14
  275. data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -2
  276. data/src/core/lib/security/credentials/credentials.c +48 -19
  277. data/src/core/lib/security/credentials/credentials.h +36 -19
  278. data/src/core/lib/security/credentials/credentials_metadata.c +11 -8
  279. data/src/core/lib/security/credentials/fake/fake_credentials.c +15 -11
  280. data/src/core/lib/security/credentials/google_default/{credentials_posix.c → credentials_generic.c} +7 -14
  281. data/src/core/lib/security/credentials/google_default/google_default_credentials.c +33 -21
  282. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +14 -0
  283. data/src/core/lib/security/credentials/iam/iam_credentials.c +3 -2
  284. data/src/core/lib/security/credentials/jwt/json_token.c +1 -0
  285. data/src/core/lib/security/credentials/jwt/json_token.h +1 -1
  286. data/src/core/lib/security/credentials/jwt/jwt_credentials.c +54 -19
  287. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -1
  288. data/src/core/lib/security/credentials/jwt/jwt_verifier.c +129 -79
  289. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +9 -6
  290. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +63 -28
  291. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
  292. data/src/core/lib/security/credentials/plugin/plugin_credentials.c +32 -11
  293. data/src/core/lib/security/credentials/ssl/ssl_credentials.c +13 -9
  294. data/src/core/lib/security/transport/client_auth_filter.c +33 -27
  295. data/src/core/lib/security/transport/secure_endpoint.c +93 -68
  296. data/src/core/lib/security/transport/secure_endpoint.h +2 -2
  297. data/src/core/lib/security/transport/security_connector.c +133 -168
  298. data/src/core/lib/security/transport/security_connector.h +31 -46
  299. data/src/core/lib/security/transport/security_handshaker.c +501 -0
  300. data/src/core/lib/security/transport/{handshake.h → security_handshaker.h} +10 -10
  301. data/src/core/lib/security/transport/server_auth_filter.c +50 -38
  302. data/src/core/lib/security/util/b64.c +11 -8
  303. data/src/core/lib/security/util/b64.h +5 -4
  304. data/src/core/lib/slice/percent_encoding.c +182 -0
  305. data/src/core/lib/slice/percent_encoding.h +78 -0
  306. data/src/core/lib/{support → slice}/slice.c +81 -50
  307. data/src/core/lib/{support → slice}/slice_buffer.c +78 -60
  308. data/src/core/lib/slice/slice_internal.h +49 -0
  309. data/src/core/lib/slice/slice_string_helpers.c +90 -0
  310. data/src/core/lib/{iomgr/workqueue_posix.h → slice/slice_string_helpers.h} +18 -18
  311. data/src/core/lib/support/backoff.c +24 -13
  312. data/src/core/lib/support/backoff.h +5 -2
  313. data/src/core/lib/support/env.h +0 -2
  314. data/src/core/lib/support/log.c +5 -4
  315. data/src/core/lib/support/log_linux.c +0 -1
  316. data/src/core/lib/support/log_posix.c +1 -1
  317. data/src/core/lib/support/mpscq.c +83 -0
  318. data/src/core/lib/support/mpscq.h +65 -0
  319. data/src/core/lib/support/string.c +58 -49
  320. data/src/core/lib/support/string.h +11 -8
  321. data/src/core/lib/support/subprocess_posix.c +5 -2
  322. data/src/core/lib/support/thd.c +1 -1
  323. data/src/core/lib/support/time.c +43 -79
  324. data/src/core/lib/support/time_posix.c +1 -1
  325. data/src/core/lib/support/tmpfile.h +0 -2
  326. data/src/core/lib/surface/alarm.c +4 -1
  327. data/src/core/lib/surface/byte_buffer.c +17 -11
  328. data/src/core/lib/surface/byte_buffer_reader.c +23 -15
  329. data/src/core/lib/surface/call.c +294 -276
  330. data/src/core/lib/surface/call.h +24 -9
  331. data/src/core/lib/surface/call_log_batch.c +5 -3
  332. data/src/core/lib/surface/channel.c +127 -111
  333. data/src/core/lib/surface/channel.h +14 -5
  334. data/src/core/lib/surface/channel_init.c +1 -1
  335. data/src/core/lib/surface/channel_init.h +10 -1
  336. data/src/core/lib/surface/channel_ping.c +7 -6
  337. data/src/core/lib/surface/completion_queue.c +154 -18
  338. data/src/core/lib/surface/completion_queue.h +5 -0
  339. data/src/core/lib/surface/init.c +40 -6
  340. data/src/core/lib/surface/init.h +1 -0
  341. data/src/core/lib/surface/init_secure.c +5 -2
  342. data/src/core/lib/surface/lame_client.c +28 -18
  343. data/src/core/lib/surface/server.c +134 -87
  344. data/src/core/lib/surface/server.h +8 -0
  345. data/src/core/lib/surface/validate_metadata.c +1 -1
  346. data/src/core/lib/surface/version.c +3 -1
  347. data/src/core/lib/transport/byte_stream.c +7 -4
  348. data/src/core/lib/transport/byte_stream.h +6 -10
  349. data/src/core/lib/transport/connectivity_state.c +21 -12
  350. data/src/core/lib/transport/connectivity_state.h +4 -1
  351. data/src/core/lib/transport/mdstr_hash_table.c +118 -0
  352. data/src/core/lib/transport/mdstr_hash_table.h +77 -0
  353. data/src/core/lib/transport/metadata.c +83 -60
  354. data/src/core/lib/transport/metadata.h +41 -23
  355. data/src/core/lib/transport/metadata_batch.c +17 -11
  356. data/src/core/lib/transport/metadata_batch.h +20 -6
  357. data/src/core/lib/transport/pid_controller.c +57 -0
  358. data/src/core/lib/transport/pid_controller.h +64 -0
  359. data/src/core/lib/transport/service_config.c +251 -0
  360. data/src/core/lib/transport/service_config.h +71 -0
  361. data/src/core/lib/transport/static_metadata.c +18 -16
  362. data/src/core/lib/transport/static_metadata.h +113 -107
  363. data/src/core/{ext/transport/chttp2 → lib}/transport/timeout_encoding.c +3 -3
  364. data/src/core/{ext/transport/chttp2 → lib}/transport/timeout_encoding.h +7 -7
  365. data/src/core/lib/transport/transport.c +84 -23
  366. data/src/core/lib/transport/transport.h +53 -8
  367. data/src/core/lib/transport/transport_impl.h +3 -0
  368. data/src/core/lib/transport/transport_op_string.c +92 -20
  369. data/src/core/lib/tsi/ssl_transport_security.c +3 -1
  370. data/src/core/plugin_registry/grpc_plugin_registry.c +8 -4
  371. data/src/ruby/ext/grpc/extconf.rb +0 -1
  372. data/src/ruby/ext/grpc/rb_byte_buffer.c +8 -7
  373. data/src/ruby/ext/grpc/rb_call.c +15 -5
  374. data/src/ruby/ext/grpc/rb_channel.c +1 -1
  375. data/src/ruby/ext/grpc/rb_compression_options.c +466 -0
  376. data/src/{core/ext/client_config/default_initial_connect_string.c → ruby/ext/grpc/rb_compression_options.h} +10 -5
  377. data/src/ruby/ext/grpc/rb_grpc.c +3 -1
  378. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +198 -190
  379. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +306 -294
  380. data/src/ruby/ext/grpc/rb_server.c +18 -12
  381. data/src/ruby/lib/grpc/errors.rb +154 -2
  382. data/src/ruby/lib/grpc/generic/active_call.rb +144 -63
  383. data/src/ruby/lib/grpc/generic/bidi_call.rb +18 -2
  384. data/src/ruby/lib/grpc/generic/client_stub.rb +7 -5
  385. data/src/ruby/lib/grpc/generic/rpc_desc.rb +39 -13
  386. data/src/ruby/lib/grpc/generic/rpc_server.rb +51 -24
  387. data/src/ruby/lib/grpc/generic/service.rb +3 -2
  388. data/src/ruby/lib/grpc/version.rb +1 -1
  389. data/src/ruby/pb/grpc/health/checker.rb +3 -1
  390. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +7 -0
  391. data/src/ruby/pb/test/client.rb +307 -7
  392. data/src/ruby/pb/test/server.rb +26 -1
  393. data/src/ruby/spec/compression_options_spec.rb +164 -0
  394. data/src/ruby/spec/error_sanity_spec.rb +64 -0
  395. data/src/ruby/spec/generic/active_call_spec.rb +290 -12
  396. data/src/ruby/spec/generic/client_stub_spec.rb +91 -41
  397. data/src/ruby/spec/generic/rpc_desc_spec.rb +36 -16
  398. data/src/ruby/spec/generic/rpc_server_pool_spec.rb +22 -28
  399. data/src/ruby/spec/generic/rpc_server_spec.rb +6 -6
  400. data/src/ruby/spec/pb/health/checker_spec.rb +27 -19
  401. data/src/ruby/spec/spec_helper.rb +2 -0
  402. data/third_party/boringssl/crypto/aes/aes.c +12 -12
  403. data/third_party/boringssl/crypto/aes/mode_wrappers.c +6 -2
  404. data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +28 -13
  405. data/third_party/boringssl/crypto/asn1/a_gentm.c +2 -0
  406. data/third_party/boringssl/crypto/asn1/a_object.c +7 -3
  407. data/third_party/boringssl/crypto/asn1/a_strnid.c +1 -0
  408. data/third_party/boringssl/crypto/asn1/a_time.c +0 -11
  409. data/third_party/boringssl/crypto/asn1/a_type.c +0 -2
  410. data/third_party/boringssl/crypto/asn1/a_utctm.c +1 -30
  411. data/third_party/boringssl/crypto/asn1/asn1_lib.c +56 -76
  412. data/third_party/boringssl/crypto/asn1/asn1_locl.h +0 -10
  413. data/third_party/boringssl/crypto/asn1/asn1_par.c +0 -322
  414. data/third_party/boringssl/crypto/asn1/f_enum.c +1 -108
  415. data/third_party/boringssl/crypto/asn1/f_int.c +1 -106
  416. data/third_party/boringssl/crypto/asn1/f_string.c +1 -106
  417. data/third_party/boringssl/crypto/asn1/tasn_dec.c +10 -14
  418. data/third_party/boringssl/crypto/asn1/tasn_enc.c +17 -11
  419. data/third_party/boringssl/crypto/asn1/tasn_typ.c +29 -42
  420. data/third_party/boringssl/crypto/asn1/tasn_utl.c +1 -1
  421. data/third_party/boringssl/crypto/base64/base64.c +249 -285
  422. data/third_party/boringssl/crypto/bio/bio.c +13 -23
  423. data/third_party/boringssl/crypto/bio/bio_mem.c +3 -2
  424. data/third_party/boringssl/crypto/bio/connect.c +12 -3
  425. data/third_party/boringssl/crypto/bio/fd.c +22 -15
  426. data/third_party/boringssl/crypto/bio/file.c +2 -38
  427. data/third_party/boringssl/crypto/bio/hexdump.c +1 -2
  428. data/third_party/boringssl/crypto/bio/internal.h +3 -0
  429. data/third_party/boringssl/crypto/bio/pair.c +1 -1
  430. data/third_party/boringssl/crypto/bio/socket.c +10 -2
  431. data/third_party/boringssl/crypto/bio/socket_helper.c +2 -2
  432. data/third_party/boringssl/crypto/bn/asm/x86_64-gcc.c +0 -8
  433. data/third_party/boringssl/crypto/bn/bn.c +38 -0
  434. data/third_party/boringssl/crypto/bn/cmp.c +25 -0
  435. data/third_party/boringssl/crypto/bn/convert.c +73 -76
  436. data/third_party/boringssl/crypto/bn/div.c +136 -70
  437. data/third_party/boringssl/crypto/bn/exponentiation.c +86 -381
  438. data/third_party/boringssl/crypto/bn/gcd.c +213 -296
  439. data/third_party/boringssl/crypto/bn/generic.c +0 -80
  440. data/third_party/boringssl/crypto/bn/internal.h +15 -3
  441. data/third_party/boringssl/crypto/bn/montgomery.c +57 -207
  442. data/third_party/boringssl/crypto/bn/montgomery_inv.c +160 -0
  443. data/third_party/boringssl/crypto/bn/mul.c +2 -1
  444. data/third_party/boringssl/crypto/bn/prime.c +24 -8
  445. data/third_party/boringssl/crypto/bn/random.c +47 -33
  446. data/third_party/boringssl/crypto/bn/sqrt.c +4 -5
  447. data/third_party/boringssl/crypto/buf/buf.c +25 -21
  448. data/third_party/boringssl/crypto/bytestring/ber.c +1 -0
  449. data/third_party/boringssl/crypto/bytestring/cbb.c +50 -22
  450. data/third_party/boringssl/crypto/bytestring/cbs.c +28 -4
  451. data/third_party/boringssl/crypto/chacha/{chacha_generic.c → chacha.c} +56 -29
  452. data/third_party/boringssl/crypto/cipher/aead.c +11 -22
  453. data/third_party/boringssl/crypto/cipher/cipher.c +2 -2
  454. data/third_party/boringssl/crypto/cipher/e_aes.c +53 -103
  455. data/third_party/boringssl/crypto/cipher/e_chacha20poly1305.c +2 -8
  456. data/third_party/boringssl/crypto/cipher/e_des.c +3 -5
  457. data/third_party/boringssl/crypto/cipher/e_null.c +1 -1
  458. data/third_party/boringssl/crypto/cipher/e_rc2.c +1 -1
  459. data/third_party/boringssl/crypto/cipher/e_rc4.c +1 -1
  460. data/third_party/boringssl/crypto/cipher/e_ssl3.c +3 -63
  461. data/third_party/boringssl/crypto/cipher/e_tls.c +12 -83
  462. data/third_party/boringssl/crypto/cipher/internal.h +8 -10
  463. data/third_party/boringssl/crypto/cipher/tls_cbc.c +69 -40
  464. data/third_party/boringssl/crypto/conf/conf.c +2 -1
  465. data/third_party/boringssl/crypto/cpu-aarch64-linux.c +61 -0
  466. data/third_party/boringssl/crypto/cpu-arm-linux.c +360 -0
  467. data/third_party/boringssl/crypto/cpu-arm.c +0 -161
  468. data/third_party/boringssl/crypto/cpu-intel.c +5 -3
  469. data/third_party/boringssl/{ssl/test/scoped_types.h → crypto/cpu-ppc64le.c} +21 -9
  470. data/third_party/boringssl/crypto/crypto.c +29 -7
  471. data/third_party/boringssl/crypto/curve25519/curve25519.c +284 -242
  472. data/third_party/boringssl/crypto/curve25519/internal.h +64 -0
  473. data/third_party/boringssl/crypto/curve25519/spake25519.c +464 -0
  474. data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +21 -0
  475. data/third_party/boringssl/crypto/dh/check.c +22 -6
  476. data/third_party/boringssl/crypto/dh/dh.c +45 -21
  477. data/third_party/boringssl/crypto/dh/dh_asn1.c +96 -20
  478. data/third_party/boringssl/crypto/dh/params.c +30 -78
  479. data/third_party/boringssl/crypto/digest/digest.c +3 -3
  480. data/third_party/boringssl/crypto/dsa/dsa.c +59 -29
  481. data/third_party/boringssl/crypto/dsa/dsa_asn1.c +4 -0
  482. data/third_party/boringssl/crypto/ec/ec.c +84 -140
  483. data/third_party/boringssl/crypto/ec/ec_asn1.c +82 -52
  484. data/third_party/boringssl/crypto/ec/ec_key.c +15 -15
  485. data/third_party/boringssl/crypto/ec/ec_montgomery.c +87 -50
  486. data/third_party/boringssl/crypto/ec/internal.h +12 -36
  487. data/third_party/boringssl/crypto/ec/oct.c +11 -11
  488. data/third_party/boringssl/crypto/ec/p224-64.c +59 -116
  489. data/third_party/boringssl/crypto/ec/p256-64.c +88 -163
  490. data/third_party/boringssl/crypto/ec/p256-x86_64.c +46 -58
  491. data/third_party/boringssl/crypto/ec/simple.c +81 -201
  492. data/third_party/boringssl/crypto/ec/util-64.c +0 -74
  493. data/third_party/boringssl/crypto/ecdh/ecdh.c +7 -1
  494. data/third_party/boringssl/crypto/ecdsa/ecdsa.c +28 -46
  495. data/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c +1 -0
  496. data/third_party/boringssl/crypto/engine/engine.c +1 -1
  497. data/third_party/boringssl/crypto/err/err.c +3 -3
  498. data/third_party/boringssl/crypto/evp/evp.c +14 -59
  499. data/third_party/boringssl/crypto/evp/evp_asn1.c +144 -87
  500. data/third_party/boringssl/crypto/evp/evp_ctx.c +7 -7
  501. data/third_party/boringssl/crypto/evp/internal.h +4 -46
  502. data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +8 -157
  503. data/third_party/boringssl/crypto/evp/p_ec.c +1 -1
  504. data/third_party/boringssl/crypto/evp/p_ec_asn1.c +22 -170
  505. data/third_party/boringssl/crypto/evp/p_rsa.c +1 -1
  506. data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +10 -548
  507. data/third_party/boringssl/crypto/evp/print.c +520 -0
  508. data/third_party/boringssl/crypto/ex_data.c +4 -6
  509. data/third_party/boringssl/crypto/hkdf/hkdf.c +38 -17
  510. data/third_party/boringssl/crypto/hmac/hmac.c +6 -6
  511. data/third_party/boringssl/crypto/internal.h +57 -77
  512. data/third_party/boringssl/crypto/lhash/lhash.c +6 -10
  513. data/third_party/boringssl/crypto/md4/md4.c +9 -0
  514. data/third_party/boringssl/crypto/mem.c +19 -19
  515. data/third_party/boringssl/crypto/modes/cfb.c +5 -6
  516. data/third_party/boringssl/crypto/modes/ctr.c +10 -18
  517. data/third_party/boringssl/crypto/modes/gcm.c +100 -66
  518. data/third_party/boringssl/crypto/modes/internal.h +15 -27
  519. data/third_party/boringssl/crypto/modes/ofb.c +9 -22
  520. data/third_party/boringssl/crypto/newhope/error_correction.c +131 -0
  521. data/third_party/boringssl/crypto/newhope/internal.h +71 -0
  522. data/third_party/boringssl/crypto/newhope/newhope.c +174 -0
  523. data/third_party/boringssl/crypto/newhope/ntt.c +148 -0
  524. data/third_party/boringssl/crypto/newhope/poly.c +183 -0
  525. data/third_party/boringssl/crypto/newhope/precomp.c +306 -0
  526. data/third_party/boringssl/crypto/newhope/reduce.c +42 -0
  527. data/third_party/boringssl/crypto/obj/obj.c +111 -135
  528. data/third_party/boringssl/crypto/obj/obj_dat.h +4 -10
  529. data/third_party/boringssl/crypto/pem/pem_lib.c +6 -43
  530. data/third_party/boringssl/crypto/pem/pem_pkey.c +10 -19
  531. data/third_party/boringssl/crypto/pkcs8/p5_pbe.c +1 -0
  532. data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +2 -1
  533. data/third_party/boringssl/crypto/pkcs8/p8_pkey.c +2 -2
  534. data/third_party/boringssl/crypto/pkcs8/pkcs8.c +95 -87
  535. data/third_party/boringssl/crypto/{test/test_util.h → poly1305/internal.h} +15 -10
  536. data/third_party/boringssl/crypto/poly1305/poly1305.c +8 -15
  537. data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +1 -0
  538. data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +3 -3
  539. data/third_party/boringssl/crypto/rand/deterministic.c +47 -0
  540. data/third_party/boringssl/crypto/rand/rand.c +4 -1
  541. data/third_party/boringssl/crypto/rand/urandom.c +5 -7
  542. data/third_party/boringssl/crypto/rand/windows.c +5 -8
  543. data/third_party/boringssl/crypto/rc4/rc4.c +24 -209
  544. data/third_party/boringssl/crypto/refcount_lock.c +2 -2
  545. data/third_party/boringssl/crypto/rsa/blinding.c +74 -232
  546. data/third_party/boringssl/crypto/rsa/internal.h +5 -13
  547. data/third_party/boringssl/crypto/rsa/padding.c +64 -63
  548. data/third_party/boringssl/crypto/rsa/rsa.c +50 -28
  549. data/third_party/boringssl/crypto/rsa/rsa_asn1.c +8 -16
  550. data/third_party/boringssl/crypto/rsa/rsa_impl.c +134 -122
  551. data/third_party/boringssl/crypto/sha/sha256.c +2 -2
  552. data/third_party/boringssl/crypto/sha/sha512.c +7 -7
  553. data/third_party/boringssl/crypto/stack/stack.c +13 -22
  554. data/third_party/boringssl/crypto/thread.c +21 -12
  555. data/third_party/boringssl/crypto/thread_none.c +6 -2
  556. data/third_party/boringssl/crypto/thread_pthread.c +16 -7
  557. data/third_party/boringssl/crypto/thread_win.c +38 -85
  558. data/third_party/boringssl/crypto/x509/a_sign.c +3 -3
  559. data/third_party/boringssl/crypto/x509/a_strex.c +1 -1
  560. data/third_party/boringssl/crypto/x509/a_verify.c +2 -2
  561. data/third_party/boringssl/crypto/{evp → x509}/algorithm.c +37 -53
  562. data/third_party/boringssl/crypto/x509/asn1_gen.c +1 -2
  563. data/third_party/boringssl/crypto/x509/by_dir.c +6 -6
  564. data/third_party/boringssl/crypto/x509/internal.h +66 -0
  565. data/third_party/boringssl/crypto/x509/rsa_pss.c +385 -0
  566. data/third_party/boringssl/crypto/x509/t_x509.c +10 -12
  567. data/third_party/boringssl/crypto/x509/x509.c +5 -0
  568. data/third_party/boringssl/crypto/x509/x509_att.c +9 -3
  569. data/third_party/boringssl/crypto/x509/x509_lu.c +34 -44
  570. data/third_party/boringssl/crypto/x509/x509_obj.c +19 -2
  571. data/third_party/boringssl/crypto/x509/x509_r2x.c +9 -5
  572. data/third_party/boringssl/crypto/x509/x509_set.c +5 -0
  573. data/third_party/boringssl/crypto/x509/x509_txt.c +5 -0
  574. data/third_party/boringssl/crypto/x509/x509_vfy.c +63 -32
  575. data/third_party/boringssl/crypto/x509/x509_vpm.c +29 -18
  576. data/third_party/boringssl/crypto/x509/x509cset.c +2 -1
  577. data/third_party/boringssl/crypto/x509/x_crl.c +2 -2
  578. data/third_party/boringssl/crypto/x509/x_name.c +14 -17
  579. data/third_party/boringssl/crypto/x509/x_pubkey.c +10 -7
  580. data/third_party/boringssl/crypto/x509/x_x509.c +67 -6
  581. data/third_party/boringssl/crypto/x509v3/pcy_cache.c +2 -2
  582. data/third_party/boringssl/crypto/x509v3/pcy_tree.c +2 -1
  583. data/third_party/boringssl/crypto/x509v3/v3_conf.c +4 -3
  584. data/third_party/boringssl/crypto/x509v3/v3_cpols.c +5 -0
  585. data/third_party/boringssl/crypto/x509v3/v3_prn.c +0 -3
  586. data/third_party/boringssl/crypto/x509v3/v3_purp.c +2 -2
  587. data/third_party/boringssl/crypto/x509v3/v3_utl.c +2 -1
  588. data/third_party/boringssl/include/openssl/aead.h +72 -73
  589. data/third_party/boringssl/include/openssl/arm_arch.h +0 -6
  590. data/third_party/boringssl/include/openssl/asn1.h +103 -235
  591. data/third_party/boringssl/include/openssl/asn1_mac.h +17 -74
  592. data/third_party/boringssl/include/openssl/asn1t.h +1 -11
  593. data/third_party/boringssl/include/openssl/base.h +145 -3
  594. data/third_party/boringssl/include/openssl/base64.h +20 -17
  595. data/third_party/boringssl/include/openssl/bio.h +59 -34
  596. data/third_party/boringssl/include/openssl/bn.h +118 -51
  597. data/third_party/boringssl/include/openssl/buf.h +15 -0
  598. data/third_party/boringssl/include/openssl/bytestring.h +52 -4
  599. data/third_party/boringssl/include/openssl/chacha.h +2 -2
  600. data/third_party/boringssl/include/openssl/cipher.h +18 -1
  601. data/third_party/boringssl/include/openssl/cmac.h +11 -0
  602. data/third_party/boringssl/include/openssl/conf.h +13 -2
  603. data/third_party/boringssl/include/openssl/cpu.h +20 -23
  604. data/third_party/boringssl/include/openssl/crypto.h +22 -1
  605. data/third_party/boringssl/include/openssl/curve25519.h +96 -4
  606. data/third_party/boringssl/include/openssl/dh.h +71 -16
  607. data/third_party/boringssl/include/openssl/digest.h +38 -11
  608. data/third_party/boringssl/include/openssl/dsa.h +40 -4
  609. data/third_party/boringssl/include/openssl/ec.h +44 -18
  610. data/third_party/boringssl/include/openssl/ec_key.h +27 -6
  611. data/third_party/boringssl/include/openssl/ecdsa.h +11 -0
  612. data/third_party/boringssl/include/openssl/engine.h +11 -0
  613. data/third_party/boringssl/include/openssl/evp.h +52 -88
  614. data/third_party/boringssl/include/openssl/hkdf.h +24 -4
  615. data/third_party/boringssl/include/openssl/hmac.h +20 -6
  616. data/third_party/boringssl/include/openssl/md4.h +4 -0
  617. data/third_party/boringssl/include/openssl/mem.h +19 -0
  618. data/third_party/boringssl/include/openssl/newhope.h +158 -0
  619. data/third_party/boringssl/include/openssl/nid.h +4166 -0
  620. data/third_party/boringssl/include/openssl/obj.h +31 -3
  621. data/third_party/boringssl/include/openssl/obj_mac.h +17 -4143
  622. data/third_party/boringssl/include/openssl/{opensslfeatures.h → opensslconf.h} +3 -3
  623. data/third_party/boringssl/include/openssl/pem.h +5 -0
  624. data/third_party/boringssl/include/openssl/pkcs8.h +12 -0
  625. data/third_party/boringssl/include/openssl/rand.h +6 -0
  626. data/third_party/boringssl/include/openssl/rc4.h +6 -0
  627. data/third_party/boringssl/{crypto/dh/internal.h → include/openssl/ripemd.h} +38 -11
  628. data/third_party/boringssl/include/openssl/rsa.h +127 -65
  629. data/third_party/boringssl/include/openssl/sha.h +14 -10
  630. data/third_party/boringssl/include/openssl/ssl.h +561 -275
  631. data/third_party/boringssl/include/openssl/ssl3.h +18 -25
  632. data/third_party/boringssl/include/openssl/stack.h +2 -4
  633. data/third_party/boringssl/include/openssl/stack_macros.h +321 -353
  634. data/third_party/boringssl/include/openssl/thread.h +31 -13
  635. data/third_party/boringssl/include/openssl/time_support.h +1 -0
  636. data/third_party/boringssl/include/openssl/tls1.h +37 -33
  637. data/third_party/boringssl/include/openssl/x509.h +69 -26
  638. data/third_party/boringssl/include/openssl/x509_vfy.h +12 -10
  639. data/third_party/boringssl/include/openssl/x509v3.h +23 -2
  640. data/third_party/boringssl/ssl/custom_extensions.c +3 -5
  641. data/third_party/boringssl/ssl/d1_both.c +463 -499
  642. data/third_party/boringssl/ssl/d1_lib.c +38 -109
  643. data/third_party/boringssl/ssl/d1_pkt.c +173 -334
  644. data/third_party/boringssl/ssl/d1_srtp.c +20 -18
  645. data/third_party/boringssl/ssl/{d1_meth.c → dtls_method.c} +88 -15
  646. data/third_party/boringssl/ssl/dtls_record.c +27 -26
  647. data/third_party/boringssl/ssl/{s3_clnt.c → handshake_client.c} +816 -904
  648. data/third_party/boringssl/ssl/handshake_server.c +1932 -0
  649. data/third_party/boringssl/ssl/internal.h +712 -439
  650. data/third_party/boringssl/ssl/s3_both.c +445 -257
  651. data/third_party/boringssl/ssl/s3_enc.c +53 -36
  652. data/third_party/boringssl/ssl/s3_lib.c +23 -268
  653. data/third_party/boringssl/ssl/s3_pkt.c +168 -364
  654. data/third_party/boringssl/ssl/ssl_aead_ctx.c +46 -17
  655. data/third_party/boringssl/ssl/ssl_asn1.c +56 -26
  656. data/third_party/boringssl/ssl/ssl_buffer.c +16 -24
  657. data/third_party/boringssl/ssl/ssl_cert.c +324 -49
  658. data/third_party/boringssl/ssl/ssl_cipher.c +205 -150
  659. data/third_party/boringssl/ssl/ssl_ecdh.c +287 -51
  660. data/third_party/boringssl/ssl/ssl_file.c +21 -68
  661. data/third_party/boringssl/ssl/ssl_lib.c +881 -510
  662. data/third_party/boringssl/ssl/ssl_rsa.c +404 -34
  663. data/third_party/boringssl/ssl/ssl_session.c +324 -103
  664. data/third_party/boringssl/ssl/ssl_stat.c +6 -88
  665. data/third_party/boringssl/ssl/t1_enc.c +23 -39
  666. data/third_party/boringssl/ssl/t1_lib.c +1120 -622
  667. data/third_party/boringssl/ssl/tls13_both.c +440 -0
  668. data/third_party/boringssl/ssl/tls13_client.c +682 -0
  669. data/third_party/boringssl/ssl/tls13_enc.c +391 -0
  670. data/third_party/boringssl/ssl/tls13_server.c +672 -0
  671. data/third_party/boringssl/ssl/{s3_meth.c → tls_method.c} +100 -21
  672. data/third_party/boringssl/ssl/tls_record.c +159 -77
  673. data/third_party/nanopb/pb.h +60 -28
  674. data/third_party/nanopb/pb_decode.c +120 -92
  675. data/third_party/nanopb/pb_decode.h +3 -3
  676. data/third_party/nanopb/pb_encode.c +73 -67
  677. data/third_party/nanopb/pb_encode.h +4 -4
  678. metadata +155 -89
  679. data/include/grpc/impl/codegen/byte_buffer.h +0 -122
  680. data/include/grpc/impl/codegen/log.h +0 -118
  681. data/include/grpc/impl/codegen/time.h +0 -130
  682. data/src/core/ext/client_config/client_channel.c +0 -593
  683. data/src/core/ext/client_config/subchannel_call_holder.c +0 -272
  684. data/src/core/ext/client_config/subchannel_call_holder.h +0 -99
  685. data/src/core/lib/iomgr/ev_poll_and_epoll_posix.c +0 -2046
  686. data/src/core/lib/iomgr/workqueue_posix.c +0 -151
  687. data/src/core/lib/security/transport/handshake.c +0 -368
  688. data/third_party/boringssl/crypto/asn1/a_bytes.c +0 -308
  689. data/third_party/boringssl/crypto/asn1/bio_asn1.c +0 -477
  690. data/third_party/boringssl/crypto/asn1/bio_ndef.c +0 -251
  691. data/third_party/boringssl/crypto/asn1/t_pkey.c +0 -110
  692. data/third_party/boringssl/crypto/asn1/tasn_prn.c +0 -596
  693. data/third_party/boringssl/crypto/chacha/chacha_vec.c +0 -328
  694. data/third_party/boringssl/crypto/directory.h +0 -66
  695. data/third_party/boringssl/crypto/directory_posix.c +0 -108
  696. data/third_party/boringssl/crypto/directory_win.c +0 -144
  697. data/third_party/boringssl/crypto/test/scoped_types.h +0 -140
  698. data/third_party/boringssl/include/openssl/pqueue.h +0 -146
  699. data/third_party/boringssl/ssl/d1_clnt.c +0 -561
  700. data/third_party/boringssl/ssl/d1_srvr.c +0 -476
  701. data/third_party/boringssl/ssl/pqueue/pqueue.c +0 -197
  702. data/third_party/boringssl/ssl/s3_srvr.c +0 -2272
  703. data/third_party/boringssl/ssl/test/async_bio.h +0 -45
  704. data/third_party/boringssl/ssl/test/packeted_bio.h +0 -44
  705. data/third_party/boringssl/ssl/test/test_config.h +0 -110
@@ -17,14 +17,17 @@
17
17
 
18
18
  #include <openssl/base.h>
19
19
 
20
- #ifdef __cplusplus
20
+ #if defined(__cplusplus)
21
21
  extern "C" {
22
22
  #endif
23
23
 
24
24
 
25
- /* Computes HKDF (as specified by RFC 5869) of initial keying material |secret|
26
- * with |salt| and |info| using |digest|, and outputs |out_len| bytes to
27
- * |out_key|. It returns one on success and zero on error.
25
+ /* HKDF. */
26
+
27
+
28
+ /* HKDF computes HKDF (as specified by RFC 5869) of initial keying material
29
+ * |secret| with |salt| and |info| using |digest|, and outputs |out_len| bytes
30
+ * to |out_key|. It returns one on success and zero on error.
28
31
  *
29
32
  * HKDF is an Extract-and-Expand algorithm. It does not do any key stretching,
30
33
  * and as such, is not suited to be used alone to generate a key from a
@@ -34,6 +37,23 @@ OPENSSL_EXPORT int HKDF(uint8_t *out_key, size_t out_len, const EVP_MD *digest,
34
37
  const uint8_t *salt, size_t salt_len,
35
38
  const uint8_t *info, size_t info_len);
36
39
 
40
+ /* HKDF_extract computes a HKDF PRK (as specified by RFC 5869) from initial
41
+ * keying material |secret| and salt |salt| using |digest|, and outputs
42
+ * |out_len| bytes to |out_key|. The maximum output size is |EVP_MAX_MD_SIZE|.
43
+ * It returns one on success and zero on error. */
44
+ OPENSSL_EXPORT int HKDF_extract(uint8_t *out_key, size_t *out_len,
45
+ const EVP_MD *digest, const uint8_t *secret,
46
+ size_t secret_len, const uint8_t *salt,
47
+ size_t salt_len);
48
+
49
+ /* HKDF_expand computes a HKDF OKM (as specified by RFC 5869) of length
50
+ * |out_len| from the PRK |prk| and info |info| using |digest|, and outputs
51
+ * the result to |out_key|. It returns one on success and zero on error. */
52
+ OPENSSL_EXPORT int HKDF_expand(uint8_t *out_key, size_t out_len,
53
+ const EVP_MD *digest, const uint8_t *prk,
54
+ size_t prk_len, const uint8_t *info,
55
+ size_t info_len);
56
+
37
57
 
38
58
  #if defined(__cplusplus)
39
59
  } /* extern C */
@@ -74,8 +74,9 @@ extern "C" {
74
74
 
75
75
  /* HMAC calculates the HMAC of |data_len| bytes of |data|, using the given key
76
76
  * and hash function, and writes the result to |out|. On entry, |out| must
77
- * contain |EVP_MAX_MD_SIZE| bytes of space. The actual length of the result is
78
- * written to |*out_len|. It returns |out| or NULL on error. */
77
+ * contain at least |EVP_MD_size| bytes of space. The actual length of the
78
+ * result is written to |*out_len|. An output size of |EVP_MAX_MD_SIZE| will
79
+ * always be large enough. It returns |out| or NULL on error. */
79
80
  OPENSSL_EXPORT uint8_t *HMAC(const EVP_MD *evp_md, const void *key,
80
81
  size_t key_len, const uint8_t *data,
81
82
  size_t data_len, uint8_t *out,
@@ -112,8 +113,9 @@ OPENSSL_EXPORT int HMAC_Update(HMAC_CTX *ctx, const uint8_t *data,
112
113
 
113
114
  /* HMAC_Final completes the HMAC operation in |ctx| and writes the result to
114
115
  * |out| and the sets |*out_len| to the length of the result. On entry, |out|
115
- * must contain at least |EVP_MAX_MD_SIZE| bytes of space. It returns one on
116
- * success or zero on error. */
116
+ * must contain at least |HMAC_size| bytes of space. An output size of
117
+ * |EVP_MAX_MD_SIZE| will always be large enough. It returns one on success or
118
+ * zero on error. */
117
119
  OPENSSL_EXPORT int HMAC_Final(HMAC_CTX *ctx, uint8_t *out,
118
120
  unsigned int *out_len);
119
121
 
@@ -143,8 +145,6 @@ OPENSSL_EXPORT int HMAC_CTX_copy(HMAC_CTX *dest, const HMAC_CTX *src);
143
145
 
144
146
  /* Private functions */
145
147
 
146
- #define HMAC_MAX_MD_CBLOCK 128 /* largest known is SHA512 */
147
-
148
148
  struct hmac_ctx_st {
149
149
  const EVP_MD *md;
150
150
  EVP_MD_CTX md_ctx;
@@ -155,6 +155,20 @@ struct hmac_ctx_st {
155
155
 
156
156
  #if defined(__cplusplus)
157
157
  } /* extern C */
158
+
159
+ #if !defined(BORINGSSL_NO_CXX)
160
+ extern "C++" {
161
+
162
+ namespace bssl {
163
+
164
+ using ScopedHMAC_CTX =
165
+ internal::StackAllocated<HMAC_CTX, void, HMAC_CTX_init, HMAC_CTX_cleanup>;
166
+
167
+ } // namespace bssl
168
+
169
+ } // extern C++
170
+ #endif
171
+
158
172
  #endif
159
173
 
160
174
  #endif /* OPENSSL_HEADER_HMAC_H */
@@ -83,6 +83,10 @@ OPENSSL_EXPORT int MD4_Update(MD4_CTX *md4, const void *data, size_t len);
83
83
  * returns one. */
84
84
  OPENSSL_EXPORT int MD4_Final(uint8_t *md, MD4_CTX *md4);
85
85
 
86
+ /* MD4 writes the digest of |len| bytes from |data| to |out| and returns |out|.
87
+ * There must be at least |MD4_DIGEST_LENGTH| bytes of space in |out|. */
88
+ OPENSSL_EXPORT uint8_t *MD4(const uint8_t *data, size_t len, uint8_t *out);
89
+
86
90
  /* MD4_Transform is a low-level function that performs a single, MD4 block
87
91
  * transformation using the state from |md4| and 64 bytes from |block|. */
88
92
  OPENSSL_EXPORT void MD4_Transform(MD4_CTX *md4, const uint8_t *block);
@@ -124,8 +124,27 @@ OPENSSL_EXPORT int BIO_vsnprintf(char *buf, size_t n, const char *format,
124
124
  OPENSSL_PRINTF_FORMAT_FUNC(3, 0);
125
125
 
126
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
+
127
134
  #if defined(__cplusplus)
128
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
+
129
148
  #endif
130
149
 
131
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 */