[openssl-commits] [openssl] master update

Matt Caswell matt at openssl.org
Thu Apr 21 16:04:50 UTC 2016


The branch master has been updated
       via  5951e840d9295bed554c267f51d7977b8f76b4bb (commit)
      from  5d94e5b65adc7d773068b8eb4b5525d35930f1ae (commit)


- Log -----------------------------------------------------------------
commit 5951e840d9295bed554c267f51d7977b8f76b4bb
Author: Matt Caswell <matt at openssl.org>
Date:   Wed Apr 20 16:38:29 2016 +0100

    Fix no-ocsp on Windows (and probably VMS)
    
    The ocsp.h file did not have appropriate guards causing link failures on
    Windows.
    
    GH Issue 900
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 apps/opt.c             |   1 +
 include/openssl/ocsp.h | 143 ++++++++++---------
 ssl/t1_lib.c           |   2 +
 util/libcrypto.num     | 372 ++++++++++++++++++++++++-------------------------
 4 files changed, 266 insertions(+), 252 deletions(-)

diff --git a/apps/opt.c b/apps/opt.c
index 63d3215..c8c01a7 100644
--- a/apps/opt.c
+++ b/apps/opt.c
@@ -59,6 +59,7 @@
 #include <ctype.h>
 #include <limits.h>
 #include <openssl/bio.h>
+#include <openssl/x509v3.h>
 
 #define MAX_OPT_HELP_WIDTH 30
 const char OPT_HELP_STR[] = "--";
diff --git a/include/openssl/ocsp.h b/include/openssl/ocsp.h
index 546e9bc..2744062 100644
--- a/include/openssl/ocsp.h
+++ b/include/openssl/ocsp.h
@@ -66,10 +66,41 @@
 #ifndef HEADER_OCSP_H
 # define HEADER_OCSP_H
 
-# include <openssl/ossl_typ.h>
-# include <openssl/x509.h>
-# include <openssl/x509v3.h>
-# include <openssl/safestack.h>
+#include <openssl/opensslconf.h>
+
+/*
+ * These definitions are outside the OPENSSL_NO_OCSP guard because although for
+ * historical reasons they have OCSP_* names, they can actually be used
+ * independently of OCSP. E.g. see RFC5280
+ */
+/*-
+ *   CRLReason ::= ENUMERATED {
+ *        unspecified             (0),
+ *        keyCompromise           (1),
+ *        cACompromise            (2),
+ *        affiliationChanged      (3),
+ *        superseded              (4),
+ *        cessationOfOperation    (5),
+ *        certificateHold         (6),
+ *        removeFromCRL           (8) }
+ */
+#  define OCSP_REVOKED_STATUS_NOSTATUS               -1
+#  define OCSP_REVOKED_STATUS_UNSPECIFIED             0
+#  define OCSP_REVOKED_STATUS_KEYCOMPROMISE           1
+#  define OCSP_REVOKED_STATUS_CACOMPROMISE            2
+#  define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED      3
+#  define OCSP_REVOKED_STATUS_SUPERSEDED              4
+#  define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION    5
+#  define OCSP_REVOKED_STATUS_CERTIFICATEHOLD         6
+#  define OCSP_REVOKED_STATUS_REMOVEFROMCRL           8
+
+
+# ifndef OPENSSL_NO_OCSP
+
+#  include <openssl/ossl_typ.h>
+#  include <openssl/x509.h>
+#  include <openssl/x509v3.h>
+#  include <openssl/safestack.h>
 
 #ifdef  __cplusplus
 extern "C" {
@@ -77,20 +108,20 @@ extern "C" {
 
 /* Various flags and values */
 
-# define OCSP_DEFAULT_NONCE_LENGTH       16
-
-# define OCSP_NOCERTS                    0x1
-# define OCSP_NOINTERN                   0x2
-# define OCSP_NOSIGS                     0x4
-# define OCSP_NOCHAIN                    0x8
-# define OCSP_NOVERIFY                   0x10
-# define OCSP_NOEXPLICIT                 0x20
-# define OCSP_NOCASIGN                   0x40
-# define OCSP_NODELEGATED                0x80
-# define OCSP_NOCHECKS                   0x100
-# define OCSP_TRUSTOTHER                 0x200
-# define OCSP_RESPID_KEY                 0x400
-# define OCSP_NOTIME                     0x800
+#  define OCSP_DEFAULT_NONCE_LENGTH       16
+
+#  define OCSP_NOCERTS                    0x1
+#  define OCSP_NOINTERN                   0x2
+#  define OCSP_NOSIGS                     0x4
+#  define OCSP_NOCHAIN                    0x8
+#  define OCSP_NOVERIFY                   0x10
+#  define OCSP_NOEXPLICIT                 0x20
+#  define OCSP_NOCASIGN                   0x40
+#  define OCSP_NODELEGATED                0x80
+#  define OCSP_NOCHECKS                   0x100
+#  define OCSP_TRUSTOTHER                 0x200
+#  define OCSP_RESPID_KEY                 0x400
+#  define OCSP_NOTIME                     0x800
 
 typedef struct ocsp_cert_id_st OCSP_CERTID;
 
@@ -104,26 +135,26 @@ typedef struct ocsp_req_info_st OCSP_REQINFO;
 typedef struct ocsp_signature_st OCSP_SIGNATURE;
 typedef struct ocsp_request_st OCSP_REQUEST;
 
-# define OCSP_RESPONSE_STATUS_SUCCESSFUL          0
-# define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST     1
-# define OCSP_RESPONSE_STATUS_INTERNALERROR        2
-# define OCSP_RESPONSE_STATUS_TRYLATER             3
-# define OCSP_RESPONSE_STATUS_SIGREQUIRED          5
-# define OCSP_RESPONSE_STATUS_UNAUTHORIZED         6
+#  define OCSP_RESPONSE_STATUS_SUCCESSFUL           0
+#  define OCSP_RESPONSE_STATUS_MALFORMEDREQUEST     1
+#  define OCSP_RESPONSE_STATUS_INTERNALERROR        2
+#  define OCSP_RESPONSE_STATUS_TRYLATER             3
+#  define OCSP_RESPONSE_STATUS_SIGREQUIRED          5
+#  define OCSP_RESPONSE_STATUS_UNAUTHORIZED         6
 
 typedef struct ocsp_resp_bytes_st OCSP_RESPBYTES;
 
-# define V_OCSP_RESPID_NAME 0
-# define V_OCSP_RESPID_KEY  1
+#  define V_OCSP_RESPID_NAME 0
+#  define V_OCSP_RESPID_KEY  1
 
 DEFINE_STACK_OF(OCSP_RESPID)
 DECLARE_ASN1_FUNCTIONS(OCSP_RESPID)
 
 typedef struct ocsp_revoked_info_st OCSP_REVOKEDINFO;
 
-# define V_OCSP_CERTSTATUS_GOOD    0
-# define V_OCSP_CERTSTATUS_REVOKED 1
-# define V_OCSP_CERTSTATUS_UNKNOWN 2
+#  define V_OCSP_CERTSTATUS_GOOD    0
+#  define V_OCSP_CERTSTATUS_REVOKED 1
+#  define V_OCSP_CERTSTATUS_UNKNOWN 2
 
 typedef struct ocsp_cert_status_st OCSP_CERTSTATUS;
 typedef struct ocsp_single_response_st OCSP_SINGLERESP;
@@ -134,75 +165,54 @@ typedef struct ocsp_response_data_st OCSP_RESPDATA;
 
 typedef struct ocsp_basic_response_st OCSP_BASICRESP;
 
-/*-
- *   CRLReason ::= ENUMERATED {
- *        unspecified             (0),
- *        keyCompromise           (1),
- *        cACompromise            (2),
- *        affiliationChanged      (3),
- *        superseded              (4),
- *        cessationOfOperation    (5),
- *        certificateHold         (6),
- *        removeFromCRL           (8) }
- */
-# define OCSP_REVOKED_STATUS_NOSTATUS               -1
-# define OCSP_REVOKED_STATUS_UNSPECIFIED             0
-# define OCSP_REVOKED_STATUS_KEYCOMPROMISE           1
-# define OCSP_REVOKED_STATUS_CACOMPROMISE            2
-# define OCSP_REVOKED_STATUS_AFFILIATIONCHANGED      3
-# define OCSP_REVOKED_STATUS_SUPERSEDED              4
-# define OCSP_REVOKED_STATUS_CESSATIONOFOPERATION    5
-# define OCSP_REVOKED_STATUS_CERTIFICATEHOLD         6
-# define OCSP_REVOKED_STATUS_REMOVEFROMCRL           8
-
 typedef struct ocsp_crl_id_st OCSP_CRLID;
 typedef struct ocsp_service_locator_st OCSP_SERVICELOC;
 
-# define PEM_STRING_OCSP_REQUEST "OCSP REQUEST"
-# define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE"
+#  define PEM_STRING_OCSP_REQUEST "OCSP REQUEST"
+#  define PEM_STRING_OCSP_RESPONSE "OCSP RESPONSE"
 
-# define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p)
+#  define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p)
 
-# define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p)
+#  define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p)
 
-# define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
+#  define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \
      (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,bp,(char **)x,cb,NULL)
 
-# define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\
+#   define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\
      (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,bp,(char **)x,cb,NULL)
 
-# define PEM_write_bio_OCSP_REQUEST(bp,o) \
+#  define PEM_write_bio_OCSP_REQUEST(bp,o) \
     PEM_ASN1_write_bio((int (*)())i2d_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,\
                         bp,(char *)o, NULL,NULL,0,NULL,NULL)
 
-# define PEM_write_bio_OCSP_RESPONSE(bp,o) \
+#  define PEM_write_bio_OCSP_RESPONSE(bp,o) \
     PEM_ASN1_write_bio((int (*)())i2d_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,\
                         bp,(char *)o, NULL,NULL,0,NULL,NULL)
 
-# define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio_of(OCSP_RESPONSE,i2d_OCSP_RESPONSE,bp,o)
+#  define i2d_OCSP_RESPONSE_bio(bp,o) ASN1_i2d_bio_of(OCSP_RESPONSE,i2d_OCSP_RESPONSE,bp,o)
 
-# define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o)
+#  define i2d_OCSP_REQUEST_bio(bp,o) ASN1_i2d_bio_of(OCSP_REQUEST,i2d_OCSP_REQUEST,bp,o)
 
-# define OCSP_REQUEST_sign(o,pkey,md) \
+#  define OCSP_REQUEST_sign(o,pkey,md) \
         ASN1_item_sign(ASN1_ITEM_rptr(OCSP_REQINFO),\
                 &o->optionalSignature->signatureAlgorithm,NULL,\
                 o->optionalSignature->signature,&o->tbsRequest,pkey,md)
 
-# define OCSP_BASICRESP_sign(o,pkey,md,d) \
+#  define OCSP_BASICRESP_sign(o,pkey,md,d) \
         ASN1_item_sign(ASN1_ITEM_rptr(OCSP_RESPDATA),&o->signatureAlgorithm,NULL,\
                 o->signature,&o->tbsResponseData,pkey,md)
 
-# define OCSP_REQUEST_verify(a,r) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_REQINFO),\
+#  define OCSP_REQUEST_verify(a,r) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_REQINFO),\
         &a->optionalSignature->signatureAlgorithm,\
         a->optionalSignature->signature,&a->tbsRequest,r)
 
-# define OCSP_BASICRESP_verify(a,r,d) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_RESPDATA),\
+#  define OCSP_BASICRESP_verify(a,r,d) ASN1_item_verify(ASN1_ITEM_rptr(OCSP_RESPDATA),\
         &a->signatureAlgorithm,a->signature,&a->tbsResponseData,r)
 
-# define ASN1_BIT_STRING_digest(data,type,md,len) \
+#  define ASN1_BIT_STRING_digest(data,type,md,len) \
         ASN1_item_digest(ASN1_ITEM_rptr(ASN1_BIT_STRING),type,data,md,len)
 
-# define OCSP_CERTSTATUS_dup(cs)\
+#  define OCSP_CERTSTATUS_dup(cs)\
                 (OCSP_CERTSTATUS*)ASN1_dup((int(*)())i2d_OCSP_CERTSTATUS,\
                 (char *(*)())d2i_OCSP_CERTSTATUS,(char *)(cs))
 
@@ -453,4 +463,5 @@ void ERR_load_OCSP_strings(void);
 #ifdef  __cplusplus
 }
 #endif
+# endif
 #endif
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 9f6cef3..06ed3d3 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -114,6 +114,8 @@
 #include <openssl/evp.h>
 #include <openssl/hmac.h>
 #include <openssl/ocsp.h>
+#include <openssl/conf.h>
+#include <openssl/x509v3.h>
 #include <openssl/rand.h>
 #include <openssl/dh.h>
 #include <openssl/bn.h>
diff --git a/util/libcrypto.num b/util/libcrypto.num
index c943be6..36da112 100644
--- a/util/libcrypto.num
+++ b/util/libcrypto.num
@@ -49,7 +49,7 @@ CRYPTO_set_dynlock_lock_callback        46	1_1_0	NOEXIST::FUNCTION:
 X509_get0_signature                     47	1_1_0	EXIST::FUNCTION:
 X509_REVOKED_get0_extensions            48	1_1_0	EXIST::FUNCTION:
 NETSCAPE_SPKI_verify                    49	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_RESPONSE                       50	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_RESPONSE                       50	1_1_0	EXIST::FUNCTION:OCSP
 ERR_peek_error                          51	1_1_0	EXIST::FUNCTION:
 X509v3_asid_validate_resource_set       52	1_1_0	EXIST::FUNCTION:RFC3779
 PEM_write_bio_Parameters                53	1_1_0	EXIST::FUNCTION:
@@ -57,7 +57,7 @@ CMS_SignerInfo_verify                   54	1_1_0	EXIST::FUNCTION:CMS
 X509v3_asid_is_canonical                55	1_1_0	EXIST::FUNCTION:RFC3779
 ASN1_ENUMERATED_get                     56	1_1_0	EXIST::FUNCTION:
 EVP_MD_do_all_sorted                    57	1_1_0	EXIST::FUNCTION:
-OCSP_crl_reason_str                     58	1_1_0	EXIST::FUNCTION:
+OCSP_crl_reason_str                     58	1_1_0	EXIST::FUNCTION:OCSP
 ENGINE_ctrl_cmd_string                  59	1_1_0	EXIST::FUNCTION:ENGINE
 ENGINE_finish                           60	1_1_0	EXIST::FUNCTION:ENGINE
 SRP_Calc_client_key                     61	1_1_0	EXIST::FUNCTION:SRP
@@ -68,7 +68,7 @@ DSO_bind_func                           65	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_get_copy                  66	1_1_0	EXIST::FUNCTION:
 RSA_up_ref                              67	1_1_0	EXIST::FUNCTION:RSA
 EVP_PKEY_meth_set_ctrl                  68	1_1_0	EXIST::FUNCTION:
-OCSP_basic_sign                         69	1_1_0	EXIST::FUNCTION:
+OCSP_basic_sign                         69	1_1_0	EXIST::FUNCTION:OCSP
 BN_GENCB_set                            70	1_1_0	EXIST::FUNCTION:
 BN_generate_prime                       71	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_0_9_8
 d2i_DSAPrivateKey_fp                    72	1_1_0	EXIST::FUNCTION:DSA,STDIO
@@ -88,10 +88,10 @@ EVP_PKEY_add1_attr_by_OBJ               85	1_1_0	EXIST::FUNCTION:
 ASYNC_WAIT_CTX_get_all_fds              86	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_meth_set_do_cipher           87	1_1_0	EXIST::FUNCTION:
 EVP_set_pw_prompt                       88	1_1_0	EXIST::FUNCTION:UI
-d2i_OCSP_RESPBYTES                      89	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_RESPBYTES                      89	1_1_0	EXIST::FUNCTION:OCSP
 TS_REQ_get_ext_by_NID                   90	1_1_0	EXIST::FUNCTION:TS
 ASN1_item_ndef_i2d                      91	1_1_0	EXIST::FUNCTION:
-OCSP_archive_cutoff_new                 92	1_1_0	EXIST::FUNCTION:
+OCSP_archive_cutoff_new                 92	1_1_0	EXIST::FUNCTION:OCSP
 DSA_size                                93	1_1_0	EXIST::FUNCTION:DSA
 IPAddressRange_free                     94	1_1_0	EXIST::FUNCTION:RFC3779
 CMS_ContentInfo_free                    95	1_1_0	EXIST::FUNCTION:CMS
@@ -110,7 +110,7 @@ BIO_new_socket                          107	1_1_0	EXIST::FUNCTION:SOCK
 ASN1_OBJECT_free                        108	1_1_0	EXIST::FUNCTION:
 X509_REQ_get_extensions                 109	1_1_0	EXIST::FUNCTION:
 X509_get_version                        110	1_1_0	EXIST::FUNCTION:
-OCSP_CERTID_dup                         111	1_1_0	EXIST::FUNCTION:
+OCSP_CERTID_dup                         111	1_1_0	EXIST::FUNCTION:OCSP
 RSA_PSS_PARAMS_free                     112	1_1_0	EXIST::FUNCTION:RSA
 i2d_TS_MSG_IMPRINT                      113	1_1_0	EXIST::FUNCTION:TS
 EC_POINT_mul                            114	1_1_0	EXIST::FUNCTION:EC
@@ -121,7 +121,7 @@ HMAC_Update                             118	1_1_0	EXIST::FUNCTION:
 i2d_PKCS12                              119	1_1_0	EXIST::FUNCTION:
 EVP_BytesToKey                          120	1_1_0	EXIST::FUNCTION:
 ENGINE_set_default_pkey_asn1_meths      121	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_BASICRESP_add1_ext_i2d             122	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_add1_ext_i2d             122	1_1_0	EXIST::FUNCTION:OCSP
 EVP_camellia_128_ctr                    123	1_1_0	EXIST::FUNCTION:CAMELLIA
 EVP_CIPHER_impl_ctx_size                124	1_1_0	EXIST::FUNCTION:
 X509_CRL_get_nextUpdate                 125	1_1_0	EXIST::FUNCTION:
@@ -132,12 +132,12 @@ ASN1_STRING_TABLE_add                   129	1_1_0	EXIST::FUNCTION:
 d2i_ASIdentifiers                       130	1_1_0	EXIST::FUNCTION:RFC3779
 i2d_PKCS12_bio                          131	1_1_0	EXIST::FUNCTION:
 X509_to_X509_REQ                        132	1_1_0	EXIST::FUNCTION:
-OCSP_basic_add1_nonce                   133	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_BASICRESP                      134	1_1_0	EXIST::FUNCTION:
+OCSP_basic_add1_nonce                   133	1_1_0	EXIST::FUNCTION:OCSP
+d2i_OCSP_BASICRESP                      134	1_1_0	EXIST::FUNCTION:OCSP
 X509v3_add_ext                          135	1_1_0	EXIST::FUNCTION:
 X509v3_addr_subset                      136	1_1_0	EXIST::FUNCTION:RFC3779
 CRYPTO_strndup                          137	1_1_0	EXIST::FUNCTION:
-OCSP_REQ_CTX_free                       138	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_free                       138	1_1_0	EXIST::FUNCTION:OCSP
 DSO_METHOD_dlfcn                        139	1_1_0	NOEXIST::FUNCTION:
 X509_STORE_new                          140	1_1_0	EXIST::FUNCTION:
 ASN1_TYPE_free                          141	1_1_0	EXIST::FUNCTION:
@@ -181,7 +181,7 @@ EVP_PKEY_delete_attr                    178	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_CTX_key_length               179	1_1_0	EXIST::FUNCTION:
 BIO_clear_flags                         180	1_1_0	EXIST::FUNCTION:
 i2d_DISPLAYTEXT                         181	1_1_0	EXIST::FUNCTION:
-OCSP_response_status                    182	1_1_0	EXIST::FUNCTION:
+OCSP_response_status                    182	1_1_0	EXIST::FUNCTION:OCSP
 i2d_ASN1_PRINTABLESTRING                183	1_1_0	EXIST::FUNCTION:
 X509_VERIFY_PARAM_set_hostflags         184	1_1_0	EXIST::FUNCTION:
 SCT_get0_log_id                         185	1_1_0	EXIST::FUNCTION:CT
@@ -201,7 +201,7 @@ EVP_PKEY_cmp                            197	1_1_0	EXIST::FUNCTION:
 d2i_X509_ALGORS                         198	1_1_0	EXIST::FUNCTION:
 EVP_PKEY2PKCS8                          199	1_1_0	EXIST::FUNCTION:
 BN_nist_mod_256                         200	1_1_0	EXIST::FUNCTION:
-OCSP_request_add0_id                    201	1_1_0	EXIST::FUNCTION:
+OCSP_request_add0_id                    201	1_1_0	EXIST::FUNCTION:OCSP
 EVP_seed_cfb128                         202	1_1_0	EXIST::FUNCTION:SEED
 BASIC_CONSTRAINTS_free                  203	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_flags                        204	1_1_0	EXIST::FUNCTION:
@@ -239,7 +239,7 @@ EVP_rc2_ecb                             234	1_1_0	EXIST::FUNCTION:RC2
 i2b_PublicKey_bio                       235	1_1_0	EXIST::FUNCTION:
 d2i_ASN1_SET_ANY                        236	1_1_0	EXIST::FUNCTION:
 ASN1_item_i2d                           238	1_1_0	EXIST::FUNCTION:
-OCSP_copy_nonce                         239	1_1_0	EXIST::FUNCTION:
+OCSP_copy_nonce                         239	1_1_0	EXIST::FUNCTION:OCSP
 OBJ_txt2nid                             240	1_1_0	EXIST::FUNCTION:
 SEED_set_key                            241	1_1_0	EXIST::FUNCTION:SEED
 EC_KEY_clear_flags                      242	1_1_0	EXIST::FUNCTION:EC
@@ -274,9 +274,9 @@ ASN1_OCTET_STRING_NDEF_it               269	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:F
 EVP_PKEY_asn1_get_count                 270	1_1_0	EXIST::FUNCTION:
 WHIRLPOOL_Init                          271	1_1_0	EXIST::FUNCTION:WHIRLPOOL
 EVP_OpenInit                            272	1_1_0	EXIST::FUNCTION:RSA
-OCSP_response_get1_basic                273	1_1_0	EXIST::FUNCTION:
+OCSP_response_get1_basic                273	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_gcm128_tag                       274	1_1_0	EXIST::FUNCTION:
-OCSP_parse_url                          275	1_1_0	EXIST::FUNCTION:
+OCSP_parse_url                          275	1_1_0	EXIST::FUNCTION:OCSP
 UI_get0_test_string                     276	1_1_0	EXIST::FUNCTION:UI
 CRYPTO_secure_free                      277	1_1_0	EXIST::FUNCTION:
 DSA_print_fp                            278	1_1_0	EXIST::FUNCTION:DSA,STDIO
@@ -302,18 +302,18 @@ PKCS8_set0_pbe                          297	1_1_0	EXIST::FUNCTION:
 PEM_write_bio_DSA_PUBKEY                298	1_1_0	EXIST::FUNCTION:DSA
 PEM_X509_INFO_read_bio                  299	1_1_0	EXIST::FUNCTION:
 EC_GROUP_get0_order                     300	1_1_0	EXIST::FUNCTION:EC
-OCSP_BASICRESP_delete_ext               301	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_delete_ext               301	1_1_0	EXIST::FUNCTION:OCSP
 PKCS12_get_attr_gen                     302	1_1_0	EXIST::FUNCTION:
 PKCS12_SAFEBAG_get0_safes               303	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_derive                         304	1_1_0	EXIST::FUNCTION:
-OCSP_BASICRESP_get_ext_by_NID           305	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_get_ext_by_NID           305	1_1_0	EXIST::FUNCTION:OCSP
 OBJ_dup                                 306	1_1_0	EXIST::FUNCTION:
 CMS_signed_get_attr_count               307	1_1_0	EXIST::FUNCTION:CMS
 EC_get_builtin_curves                   308	1_1_0	EXIST::FUNCTION:EC
 i2d_ASN1_IA5STRING                      309	1_1_0	EXIST::FUNCTION:
-OCSP_check_nonce                        310	1_1_0	EXIST::FUNCTION:
+OCSP_check_nonce                        310	1_1_0	EXIST::FUNCTION:OCSP
 X509_STORE_CTX_init                     311	1_1_0	EXIST::FUNCTION:
-OCSP_RESPONSE_free                      312	1_1_0	EXIST::FUNCTION:
+OCSP_RESPONSE_free                      312	1_1_0	EXIST::FUNCTION:OCSP
 ENGINE_set_DH                           313	1_1_0	EXIST::FUNCTION:ENGINE
 EVP_CIPHER_CTX_set_flags                314	1_1_0	EXIST::FUNCTION:
 err_free_strings_int                    315	1_1_0	EXIST::FUNCTION:
@@ -323,10 +323,10 @@ UI_process                              318	1_1_0	EXIST::FUNCTION:UI
 X509_get_subject_name                   319	1_1_0	EXIST::FUNCTION:
 DH_get_1024_160                         320	1_1_0	EXIST::FUNCTION:DH
 i2d_ASN1_UNIVERSALSTRING                321	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_RESPID                         322	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_RESPID                         322	1_1_0	EXIST::FUNCTION:OCSP
 BIO_s_accept                            323	1_1_0	EXIST::FUNCTION:SOCK
 EVP_whirlpool                           324	1_1_0	EXIST::FUNCTION:WHIRLPOOL
-OCSP_ONEREQ_get1_ext_d2i                325	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_get1_ext_d2i                325	1_1_0	EXIST::FUNCTION:OCSP
 d2i_ESS_SIGNING_CERT                    326	1_1_0	EXIST::FUNCTION:TS
 EC_KEY_set_default_method               327	1_1_0	EXIST::FUNCTION:EC
 X509_OBJECT_up_ref_count                328	1_1_0	EXIST::FUNCTION:
@@ -405,7 +405,7 @@ X509_NAME_ENTRY_get_data                397	1_1_0	EXIST::FUNCTION:
 BIO_socket                              398	1_1_0	EXIST::FUNCTION:SOCK
 EVP_PKEY_meth_get_derive                399	1_1_0	EXIST::FUNCTION:
 ASN1_STRING_clear_free                  400	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_REVOKEDINFO                    401	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_REVOKEDINFO                    401	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_STRING_print_ex_fp                 402	1_1_0	EXIST::FUNCTION:STDIO
 PKCS7_SIGNED_new                        403	1_1_0	EXIST::FUNCTION:
 CMS_get0_eContentType                   404	1_1_0	EXIST::FUNCTION:CMS
@@ -448,13 +448,13 @@ BN_GENCB_new                            440	1_1_0	EXIST::FUNCTION:
 X509_VAL_new                            441	1_1_0	EXIST::FUNCTION:
 NCONF_load                              442	1_1_0	EXIST::FUNCTION:
 ASN1_put_object                         443	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_RESPONSE                       444	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_RESPONSE                       444	1_1_0	EXIST::FUNCTION:OCSP
 d2i_PublicKey                           445	1_1_0	EXIST::FUNCTION:
 ENGINE_set_ex_data                      446	1_1_0	EXIST::FUNCTION:ENGINE
 X509_get_default_private_dir            447	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_set0_dane                448	1_1_0	EXIST::FUNCTION:
 EVP_des_ecb                             449	1_1_0	EXIST::FUNCTION:DES
-OCSP_resp_get0                          450	1_1_0	EXIST::FUNCTION:
+OCSP_resp_get0                          450	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_get_new_lockid                   451	1_1_0	NOEXIST::FUNCTION:
 RSA_X931_generate_key_ex                452	1_1_0	EXIST::FUNCTION:RSA
 X509_get_serialNumber                   453	1_1_0	EXIST::FUNCTION:
@@ -474,7 +474,7 @@ OPENSSL_memcmp                          466	1_1_0	EXIST::FUNCTION:
 BUF_MEM_new                             467	1_1_0	EXIST::FUNCTION:
 DSO_set_filename                        468	1_1_0	EXIST::FUNCTION:
 DH_new                                  469	1_1_0	EXIST::FUNCTION:DH
-OCSP_RESPID_free                        470	1_1_0	EXIST::FUNCTION:
+OCSP_RESPID_free                        470	1_1_0	EXIST::FUNCTION:OCSP
 PKCS5_pbe2_set                          471	1_1_0	EXIST::FUNCTION:
 CRYPTO_THREADID_get_callback            472	1_1_0	NOEXIST::FUNCTION:
 SCT_set_signature_nid                   473	1_1_0	EXIST::FUNCTION:CT
@@ -504,8 +504,8 @@ BIO_f_cipher                            494	1_1_0	EXIST::FUNCTION:
 UI_destroy_method                       495	1_1_0	EXIST::FUNCTION:UI
 BN_get_rfc3526_prime_3072               496	1_1_0	EXIST::FUNCTION:
 X509_INFO_new                           497	1_1_0	EXIST::FUNCTION:
-OCSP_RESPDATA_it                        498	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_RESPDATA_it                        498	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_RESPDATA_it                        498	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_RESPDATA_it                        498	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 X509_CRL_print                          499	1_1_0	EXIST::FUNCTION:
 WHIRLPOOL_Update                        500	1_1_0	EXIST::FUNCTION:WHIRLPOOL
 DSA_get_ex_data                         501	1_1_0	EXIST::FUNCTION:DSA
@@ -519,14 +519,14 @@ ERR_error_string                        508	1_1_0	EXIST::FUNCTION:
 BIO_new_connect                         509	1_1_0	EXIST::FUNCTION:SOCK
 CRYPTO_get_lock_name                    510	1_1_0	NOEXIST::FUNCTION:
 DSA_new_method                          511	1_1_0	EXIST::FUNCTION:DSA
-OCSP_CERTID_new                         512	1_1_0	EXIST::FUNCTION:
+OCSP_CERTID_new                         512	1_1_0	EXIST::FUNCTION:OCSP
 X509_CRL_get_signature_nid              513	1_1_0	EXIST::FUNCTION:
 X509_policy_level_node_count            514	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_CERTSTATUS                     515	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_CERTSTATUS                     515	1_1_0	EXIST::FUNCTION:OCSP
 X509V3_add1_i2d                         516	1_1_0	EXIST::FUNCTION:
 TS_TST_INFO_set_serial                  517	1_1_0	EXIST::FUNCTION:TS
-OCSP_RESPBYTES_new                      518	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_delete_ext              519	1_1_0	EXIST::FUNCTION:
+OCSP_RESPBYTES_new                      518	1_1_0	EXIST::FUNCTION:OCSP
+OCSP_SINGLERESP_delete_ext              519	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_get_dynlock_lock_callback        520	1_1_0	NOEXIST::FUNCTION:
 EVP_MD_CTX_test_flags                   521	1_1_0	EXIST::FUNCTION:
 X509v3_addr_validate_path               522	1_1_0	EXIST::FUNCTION:RFC3779
@@ -561,7 +561,7 @@ d2i_X509_CRL_fp                         549	1_1_0	EXIST::FUNCTION:STDIO
 i2d_RSA_PUBKEY                          550	1_1_0	EXIST::FUNCTION:RSA
 EVP_aes_128_ccm                         551	1_1_0	EXIST::FUNCTION:
 ECParameters_print                      552	1_1_0	EXIST::FUNCTION:EC
-OCSP_SINGLERESP_get1_ext_d2i            553	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get1_ext_d2i            553	1_1_0	EXIST::FUNCTION:OCSP
 RAND_status                             554	1_1_0	EXIST::FUNCTION:
 EVP_ripemd160                           555	1_1_0	EXIST::FUNCTION:RMD160
 EVP_MD_meth_set_final                   556	1_1_0	EXIST::FUNCTION:
@@ -645,7 +645,7 @@ TS_RESP_CTX_add_policy                  630	1_1_0	EXIST::FUNCTION:TS
 X509_REQ_dup                            631	1_1_0	EXIST::FUNCTION:
 CRYPTO_get_add_lock_callback            632	1_1_0	NOEXIST::FUNCTION:
 d2i_DSA_PUBKEY_fp                       633	1_1_0	EXIST::FUNCTION:DSA,STDIO
-OCSP_REQ_CTX_nbio_d2i                   634	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_nbio_d2i                   634	1_1_0	EXIST::FUNCTION:OCSP
 d2i_X509_REQ_fp                         635	1_1_0	EXIST::FUNCTION:STDIO
 DH_OpenSSL                              636	1_1_0	EXIST::FUNCTION:DH
 BN_get_rfc3526_prime_8192               637	1_1_0	EXIST::FUNCTION:
@@ -654,7 +654,7 @@ X509_REVOKED_it                         638	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:F
 CRYPTO_THREAD_write_lock                639	1_1_0	EXIST::FUNCTION:
 X509V3_NAME_from_section                640	1_1_0	EXIST::FUNCTION:
 EC_POINT_set_compressed_coordinates_GFp 641	1_1_0	EXIST::FUNCTION:EC
-OCSP_SINGLERESP_get0_id                 642	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get0_id                 642	1_1_0	EXIST::FUNCTION:OCSP
 UI_add_info_string                      643	1_1_0	EXIST::FUNCTION:UI
 OBJ_NAME_remove                         644	1_1_0	EXIST::FUNCTION:
 UI_get_method                           645	1_1_0	EXIST::FUNCTION:UI
@@ -668,12 +668,12 @@ TS_RESP_verify_token                    652	1_1_0	EXIST::FUNCTION:TS
 PEM_read_bio_CMS                        653	1_1_0	EXIST::FUNCTION:CMS
 PEM_get_EVP_CIPHER_INFO                 654	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_print                        655	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_SINGLERESP                     656	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_SINGLERESP                     656	1_1_0	EXIST::FUNCTION:OCSP
 ESS_CERT_ID_free                        657	1_1_0	EXIST::FUNCTION:TS
 PEM_SignInit                            658	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_CTX_set_key_length           659	1_1_0	EXIST::FUNCTION:
 X509_delete_ext                         660	1_1_0	EXIST::FUNCTION:
-OCSP_resp_get0_produced_at              661	1_1_0	EXIST::FUNCTION:
+OCSP_resp_get0_produced_at              661	1_1_0	EXIST::FUNCTION:OCSP
 IDEA_encrypt                            662	1_1_0	EXIST::FUNCTION:IDEA
 CRYPTO_nistcts128_encrypt_block         663	1_1_0	EXIST::FUNCTION:
 EVP_MD_do_all                           664	1_1_0	EXIST::FUNCTION:
@@ -686,8 +686,8 @@ PKCS5_pbe_set0_algor                    670	1_1_0	EXIST::FUNCTION:
 ENGINE_get_table_flags                  671	1_1_0	EXIST::FUNCTION:ENGINE
 PKCS12_MAC_DATA_new                     672	1_1_0	EXIST::FUNCTION:
 X509_chain_up_ref                       673	1_1_0	EXIST::FUNCTION:
-OCSP_REQINFO_it                         674	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_REQINFO_it                         674	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_REQINFO_it                         674	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_REQINFO_it                         674	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 PKCS12_add_localkeyid                   675	1_1_0	EXIST::FUNCTION:
 PKCS12_SAFEBAG_get0_type                676	1_1_0	EXIST::FUNCTION:
 X509_TRUST_set_default                  677	1_1_0	EXIST::FUNCTION:
@@ -704,11 +704,11 @@ AES_ige_encrypt                         686	1_1_0	EXIST::FUNCTION:
 d2i_SXNET                               687	1_1_0	EXIST::FUNCTION:
 CTLOG_get0_log_id                       688	1_1_0	EXIST::FUNCTION:CT
 CMS_RecipientInfo_ktri_get0_signer_id   689	1_1_0	EXIST::FUNCTION:CMS
-OCSP_REQUEST_add1_ext_i2d               690	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_add1_ext_i2d               690	1_1_0	EXIST::FUNCTION:OCSP
 EVP_PBE_CipherInit                      691	1_1_0	EXIST::FUNCTION:
 DSA_dup_DH                              692	1_1_0	EXIST::FUNCTION:DH,DSA
 CONF_imodule_get_value                  693	1_1_0	EXIST::FUNCTION:
-OCSP_id_issuer_cmp                      694	1_1_0	EXIST::FUNCTION:
+OCSP_id_issuer_cmp                      694	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_INTEGER_free                       695	1_1_0	EXIST::FUNCTION:
 BN_get0_nist_prime_224                  696	1_1_0	EXIST::FUNCTION:
 OPENSSL_isservice                       697	1_1_0	EXIST::FUNCTION:
@@ -736,7 +736,7 @@ CRYPTO_128_unwrap                       718	1_1_0	EXIST::FUNCTION:
 BIO_new_PKCS7                           719	1_1_0	EXIST::FUNCTION:
 UI_get0_user_data                       720	1_1_0	EXIST::FUNCTION:UI
 TS_RESP_get_token                       721	1_1_0	EXIST::FUNCTION:TS
-OCSP_RESPID_new                         722	1_1_0	EXIST::FUNCTION:
+OCSP_RESPID_new                         722	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_SET_ANY_it                         723	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_SET_ANY_it                         723	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 d2i_TS_RESP_bio                         724	1_1_0	EXIST::FUNCTION:TS
@@ -751,14 +751,14 @@ PEM_read_PKCS8                          732	1_1_0	EXIST::FUNCTION:
 BN_mod_sqr                              733	1_1_0	EXIST::FUNCTION:
 CAST_ofb64_encrypt                      734	1_1_0	EXIST::FUNCTION:CAST
 TXT_DB_write                            735	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_get1_ext_d2i               736	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_get1_ext_d2i               736	1_1_0	EXIST::FUNCTION:OCSP
 CMS_unsigned_add1_attr_by_NID           737	1_1_0	EXIST::FUNCTION:CMS
 BN_mod_exp_mont                         738	1_1_0	EXIST::FUNCTION:
 d2i_DHxparams                           739	1_1_0	EXIST::FUNCTION:DH
 DH_size                                 740	1_1_0	EXIST::FUNCTION:DH
 CONF_imodule_get_name                   741	1_1_0	EXIST::FUNCTION:
 ENGINE_get_pkey_meth_engine             742	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_BASICRESP_free                     743	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_free                     743	1_1_0	EXIST::FUNCTION:OCSP
 BN_set_params                           744	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_0_9_8
 BN_add                                  745	1_1_0	EXIST::FUNCTION:
 sk_free                                 746	1_1_0	EXIST::FUNCTION:
@@ -774,13 +774,13 @@ EVP_CIPHER_meth_set_cleanup             755	1_1_0	EXIST::FUNCTION:
 d2i_PKCS12_SAFEBAG                      756	1_1_0	EXIST::FUNCTION:
 EVP_MD_pkey_type                        757	1_1_0	EXIST::FUNCTION:
 X509_policy_node_get0_qualifiers        758	1_1_0	EXIST::FUNCTION:
-OCSP_cert_status_str                    759	1_1_0	EXIST::FUNCTION:
+OCSP_cert_status_str                    759	1_1_0	EXIST::FUNCTION:OCSP
 EVP_MD_meth_get_flags                   760	1_1_0	EXIST::FUNCTION:
 ASN1_ENUMERATED_set                     761	1_1_0	EXIST::FUNCTION:
 UI_UTIL_read_pw                         762	1_1_0	EXIST::FUNCTION:UI
 PKCS7_ENC_CONTENT_free                  763	1_1_0	EXIST::FUNCTION:
 CMS_RecipientInfo_type                  764	1_1_0	EXIST::FUNCTION:CMS
-OCSP_BASICRESP_get_ext                  765	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_get_ext                  765	1_1_0	EXIST::FUNCTION:OCSP
 BN_lebin2bn                             766	1_1_0	EXIST::FUNCTION:
 AES_decrypt                             767	1_1_0	EXIST::FUNCTION:
 BIO_fd_should_retry                     768	1_1_0	EXIST::FUNCTION:
@@ -834,7 +834,7 @@ EVP_PKEY_set1_EC_KEY                    815	1_1_0	EXIST::FUNCTION:EC
 ECPKParameters_print_fp                 816	1_1_0	EXIST::FUNCTION:EC,STDIO
 GENERAL_SUBTREE_free                    817	1_1_0	EXIST::FUNCTION:
 RSA_blinding_off                        818	1_1_0	EXIST::FUNCTION:RSA
-i2d_OCSP_REVOKEDINFO                    819	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_REVOKEDINFO                    819	1_1_0	EXIST::FUNCTION:OCSP
 X509V3_add_standard_extensions          820	1_1_0	EXIST::FUNCTION:
 PEM_write_bio_RSA_PUBKEY                821	1_1_0	EXIST::FUNCTION:RSA
 i2d_ASN1_UTF8STRING                     822	1_1_0	EXIST::FUNCTION:
@@ -843,8 +843,8 @@ PKCS7_DIGEST_free                       824	1_1_0	EXIST::FUNCTION:
 OBJ_nid2ln                              825	1_1_0	EXIST::FUNCTION:
 COMP_CTX_new                            826	1_1_0	EXIST::FUNCTION:COMP
 BIO_ADDR_family                         827	1_1_0	EXIST::FUNCTION:SOCK
-OCSP_RESPONSE_it                        828	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_RESPONSE_it                        828	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_RESPONSE_it                        828	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_RESPONSE_it                        828	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 BIO_ADDRINFO_socktype                   829	1_1_0	EXIST::FUNCTION:SOCK
 d2i_X509_REQ_bio                        830	1_1_0	EXIST::FUNCTION:
 EVP_PBE_cleanup                         831	1_1_0	EXIST::FUNCTION:
@@ -854,13 +854,13 @@ EVP_PKEY_paramgen                       834	1_1_0	EXIST::FUNCTION:
 PEM_write_PKCS8PrivateKey_nid           835	1_1_0	EXIST::FUNCTION:STDIO
 PKCS7_ATTR_VERIFY_it                    836	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 PKCS7_ATTR_VERIFY_it                    836	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-OCSP_response_status_str                837	1_1_0	EXIST::FUNCTION:
+OCSP_response_status_str                837	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_gcm128_new                       838	1_1_0	EXIST::FUNCTION:
 SMIME_read_PKCS7                        839	1_1_0	EXIST::FUNCTION:
 EC_GROUP_copy                           840	1_1_0	EXIST::FUNCTION:EC
 ENGINE_set_ciphers                      841	1_1_0	EXIST::FUNCTION:ENGINE
 lh_doall_arg                            842	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_get_ext_by_NID             843	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_get_ext_by_NID             843	1_1_0	EXIST::FUNCTION:OCSP
 X509_REQ_get_attr_by_NID                844	1_1_0	EXIST::FUNCTION:
 PBE2PARAM_new                           845	1_1_0	EXIST::FUNCTION:
 DES_ecb_encrypt                         846	1_1_0	EXIST::FUNCTION:DES
@@ -881,8 +881,8 @@ TXT_DB_insert                           860	1_1_0	EXIST::FUNCTION:
 EC_POINTs_make_affine                   861	1_1_0	EXIST::FUNCTION:EC
 RSA_padding_add_PKCS1_PSS               862	1_1_0	EXIST::FUNCTION:RSA
 BF_options                              863	1_1_0	EXIST::FUNCTION:BF
-OCSP_BASICRESP_it                       864	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_BASICRESP_it                       864	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_BASICRESP_it                       864	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_BASICRESP_it                       864	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 X509_VERIFY_PARAM_get0_name             865	1_1_0	EXIST::FUNCTION:
 TS_RESP_CTX_set_signer_digest           866	1_1_0	EXIST::FUNCTION:TS
 X509_VERIFY_PARAM_set1_email            867	1_1_0	EXIST::FUNCTION:
@@ -920,7 +920,7 @@ EVP_bf_cfb64                            896	1_1_0	EXIST::FUNCTION:BF
 PKCS7_sign_add_signer                   897	1_1_0	EXIST::FUNCTION:
 X509_print_ex                           898	1_1_0	EXIST::FUNCTION:
 PKCS7_add_recipient                     899	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_add_ext                 900	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_add_ext                 900	1_1_0	EXIST::FUNCTION:OCSP
 d2i_X509_SIG                            901	1_1_0	EXIST::FUNCTION:
 X509_NAME_set                           902	1_1_0	EXIST::FUNCTION:
 sk_pop                                  903	1_1_0	EXIST::FUNCTION:
@@ -1015,7 +1015,7 @@ ISSUING_DIST_POINT_free                 987	1_1_0	EXIST::FUNCTION:
 ASN1_UTCTIME_free                       988	1_1_0	EXIST::FUNCTION:
 ERR_load_TS_strings                     989	1_1_0	EXIST::FUNCTION:TS
 BN_nist_mod_func                        990	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_new                         991	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_new                         991	1_1_0	EXIST::FUNCTION:OCSP
 DSA_SIG_new                             992	1_1_0	EXIST::FUNCTION:DSA
 DH_get_default_method                   993	1_1_0	EXIST::FUNCTION:DH
 PEM_proc_type                           994	1_1_0	EXIST::FUNCTION:
@@ -1028,11 +1028,11 @@ ASN1_BIT_STRING_it                      1000	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 ASN1_BIT_STRING_it                      1000	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 PKCS12_decrypt_skey                     1001	1_1_0	EXIST::FUNCTION:
 ENGINE_register_EC                      1002	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_RESPONSE_new                       1003	1_1_0	EXIST::FUNCTION:
+OCSP_RESPONSE_new                       1003	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_cbc128_encrypt                   1004	1_1_0	EXIST::FUNCTION:
 i2d_RSAPublicKey_bio                    1005	1_1_0	EXIST::FUNCTION:RSA
 X509_chain_check_suiteb                 1006	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_REQUEST                        1007	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_REQUEST                        1007	1_1_0	EXIST::FUNCTION:OCSP
 BN_X931_generate_Xpq                    1008	1_1_0	EXIST::FUNCTION:
 ASN1_item_digest                        1009	1_1_0	EXIST::FUNCTION:
 X509_VERIFY_PARAM_set_trust             1010	1_1_0	EXIST::FUNCTION:
@@ -1160,7 +1160,7 @@ CRYPTO_cts128_encrypt                   1126	1_1_0	EXIST::FUNCTION:
 RC2_encrypt                             1127	1_1_0	EXIST::FUNCTION:RC2
 PEM_write                               1128	1_1_0	EXIST::FUNCTION:STDIO
 EVP_CIPHER_meth_get_get_asn1_params     1129	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_RESPBYTES                      1130	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_RESPBYTES                      1130	1_1_0	EXIST::FUNCTION:OCSP
 d2i_ASN1_UTF8STRING                     1131	1_1_0	EXIST::FUNCTION:
 EXTENDED_KEY_USAGE_it                   1132	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 EXTENDED_KEY_USAGE_it                   1132	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
@@ -1175,8 +1175,8 @@ ASN1_STRING_set_by_NID                  1140	1_1_0	EXIST::FUNCTION:
 PEM_write_bio_PKCS7                     1141	1_1_0	EXIST::FUNCTION:
 MDC2_Final                              1142	1_1_0	EXIST::FUNCTION:MDC2
 SMIME_crlf_copy                         1143	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_get_ext_count              1144	1_1_0	EXIST::FUNCTION:
-OCSP_REQ_CTX_new                        1145	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_get_ext_count              1144	1_1_0	EXIST::FUNCTION:OCSP
+OCSP_REQ_CTX_new                        1145	1_1_0	EXIST::FUNCTION:OCSP
 X509_load_cert_crl_file                 1146	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_new_mac_key                    1147	1_1_0	EXIST::FUNCTION:
 DIST_POINT_new                          1148	1_1_0	EXIST::FUNCTION:
@@ -1251,10 +1251,10 @@ MDC2_Update                             1214	1_1_0	EXIST::FUNCTION:MDC2
 EC_KEY_new_by_curve_name                1215	1_1_0	EXIST::FUNCTION:EC
 X509_CRL_free                           1216	1_1_0	EXIST::FUNCTION:
 i2d_PKCS7_SIGN_ENVELOPE                 1217	1_1_0	EXIST::FUNCTION:
-OCSP_CERTSTATUS_it                      1218	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_CERTSTATUS_it                      1218	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_CERTSTATUS_it                      1218	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_CERTSTATUS_it                      1218	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 BIO_f_reliable                          1219	1_1_0	EXIST::FUNCTION:
-OCSP_resp_count                         1220	1_1_0	EXIST::FUNCTION:
+OCSP_resp_count                         1220	1_1_0	EXIST::FUNCTION:OCSP
 i2d_X509_AUX                            1221	1_1_0	EXIST::FUNCTION:
 RSA_verify_PKCS1_PSS_mgf1               1222	1_1_0	EXIST::FUNCTION:RSA
 X509_time_adj                           1223	1_1_0	EXIST::FUNCTION:
@@ -1326,8 +1326,8 @@ EC_KEY_new_method                       1288	1_1_0	EXIST::FUNCTION:EC
 i2d_RSAPublicKey_fp                     1289	1_1_0	EXIST::FUNCTION:RSA,STDIO
 CRYPTO_ctr128_encrypt_ctr32             1290	1_1_0	EXIST::FUNCTION:
 X509_VERIFY_PARAM_move_peername         1291	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_it                      1292	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_SINGLERESP_it                      1292	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_SINGLERESP_it                      1292	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_SINGLERESP_it                      1292	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 BN_num_bits                             1293	1_1_0	EXIST::FUNCTION:
 X509_CRL_METHOD_free                    1294	1_1_0	EXIST::FUNCTION:
 PEM_read_NETSCAPE_CERT_SEQUENCE         1295	1_1_0	EXIST::FUNCTION:
@@ -1387,7 +1387,7 @@ PEM_write_bio_CMS_stream                1345	1_1_0	EXIST::FUNCTION:CMS
 BIO_f_linebuffer                        1346	1_1_0	EXIST::FUNCTION:
 ASN1_item_d2i_bio                       1347	1_1_0	EXIST::FUNCTION:
 ENGINE_get_flags                        1348	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_resp_find                          1349	1_1_0	EXIST::FUNCTION:
+OCSP_resp_find                          1349	1_1_0	EXIST::FUNCTION:OCSP
 lh_node_usage_stats_bio                 1350	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_encrypt                        1351	1_1_0	EXIST::FUNCTION:
 CRYPTO_cfb128_8_encrypt                 1352	1_1_0	EXIST::FUNCTION:
@@ -1455,7 +1455,7 @@ BIO_set_ex_data                         1411	1_1_0	EXIST::FUNCTION:
 SHA512                                  1412	1_1_0	EXIST:!VMSVAX:FUNCTION:
 X509_STORE_CTX_get_explicit_policy      1413	1_1_0	EXIST::FUNCTION:
 EVP_DecodeBlock                         1414	1_1_0	EXIST::FUNCTION:
-OCSP_REQ_CTX_http                       1415	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_http                       1415	1_1_0	EXIST::FUNCTION:OCSP
 EVP_MD_CTX_reset                        1416	1_1_0	EXIST::FUNCTION:
 X509_NAME_new                           1417	1_1_0	EXIST::FUNCTION:
 ASN1_item_pack                          1418	1_1_0	EXIST::FUNCTION:
@@ -1469,11 +1469,11 @@ CRYPTO_nistcts128_encrypt               1425	1_1_0	EXIST::FUNCTION:
 CONF_modules_finish                     1426	1_1_0	EXIST::FUNCTION:
 BN_value_one                            1427	1_1_0	EXIST::FUNCTION:
 RSA_padding_add_SSLv23                  1428	1_1_0	EXIST::FUNCTION:RSA
-OCSP_RESPBYTES_it                       1429	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_RESPBYTES_it                       1429	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_RESPBYTES_it                       1429	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_RESPBYTES_it                       1429	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 EVP_aes_192_wrap                        1430	1_1_0	EXIST::FUNCTION:
-OCSP_CERTID_it                          1431	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_CERTID_it                          1431	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_CERTID_it                          1431	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_CERTID_it                          1431	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 ENGINE_get_RSA                          1432	1_1_0	EXIST::FUNCTION:ENGINE
 RAND_get_rand_method                    1433	1_1_0	EXIST::FUNCTION:
 ERR_load_DSA_strings                    1434	1_1_0	EXIST::FUNCTION:DSA
@@ -1485,7 +1485,7 @@ i2d_ECPrivateKey_bio                    1439	1_1_0	EXIST::FUNCTION:EC
 BN_GENCB_free                           1440	1_1_0	EXIST::FUNCTION:
 HMAC_size                               1441	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_get0_DH                        1442	1_1_0	EXIST::FUNCTION:DH
-d2i_OCSP_CRLID                          1443	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_CRLID                          1443	1_1_0	EXIST::FUNCTION:OCSP
 EVP_CIPHER_CTX_set_padding              1444	1_1_0	EXIST::FUNCTION:
 CTLOG_new_from_base64                   1445	1_1_0	EXIST::FUNCTION:CT
 AES_bi_ige_encrypt                      1446	1_1_0	EXIST::FUNCTION:
@@ -1514,11 +1514,11 @@ i2d_PKCS7_SIGNER_INFO                   1468	1_1_0	EXIST::FUNCTION:
 EVP_get_pw_prompt                       1469	1_1_0	EXIST::FUNCTION:UI
 BN_bn2bin                               1470	1_1_0	EXIST::FUNCTION:
 d2i_ASN1_BIT_STRING                     1471	1_1_0	EXIST::FUNCTION:
-OCSP_CERTSTATUS_new                     1472	1_1_0	EXIST::FUNCTION:
+OCSP_CERTSTATUS_new                     1472	1_1_0	EXIST::FUNCTION:OCSP
 ENGINE_register_RAND                    1473	1_1_0	EXIST::FUNCTION:ENGINE
 X509V3_section_free                     1474	1_1_0	EXIST::FUNCTION:
 CRYPTO_mem_debug_free                   1475	1_1_0	EXIST::FUNCTION:CRYPTO_MDEBUG
-d2i_OCSP_REQUEST                        1476	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_REQUEST                        1476	1_1_0	EXIST::FUNCTION:OCSP
 ENGINE_get_cipher_engine                1477	1_1_0	EXIST::FUNCTION:ENGINE
 SHA384_Final                            1478	1_1_0	EXIST:!VMSVAX:FUNCTION:
 TS_RESP_CTX_set_certs                   1479	1_1_0	EXIST::FUNCTION:TS
@@ -1529,7 +1529,7 @@ TS_TST_INFO_get_version                 1483	1_1_0	EXIST::FUNCTION:TS
 BIO_accept_ex                           1484	1_1_0	EXIST::FUNCTION:SOCK
 CRYPTO_get_mem_functions                1485	1_1_0	EXIST::FUNCTION:
 PEM_read_bio                            1486	1_1_0	EXIST::FUNCTION:
-OCSP_BASICRESP_get_ext_by_critical      1487	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_get_ext_by_critical      1487	1_1_0	EXIST::FUNCTION:OCSP
 SXNET_it                                1488	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 SXNET_it                                1488	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 BIO_indent                              1489	1_1_0	EXIST::FUNCTION:
@@ -1553,7 +1553,7 @@ EVP_CIPHER_CTX_rand_key                 1506	1_1_0	EXIST::FUNCTION:
 AES_set_encrypt_key                     1507	1_1_0	EXIST::FUNCTION:
 ASN1_UTCTIME_new                        1508	1_1_0	EXIST::FUNCTION:
 AES_cbc_encrypt                         1509	1_1_0	EXIST::FUNCTION:
-OCSP_RESPDATA_free                      1510	1_1_0	EXIST::FUNCTION:
+OCSP_RESPDATA_free                      1510	1_1_0	EXIST::FUNCTION:OCSP
 EVP_PKEY_asn1_find                      1511	1_1_0	EXIST::FUNCTION:
 d2i_ASN1_GENERALIZEDTIME                1512	1_1_0	EXIST::FUNCTION:
 OPENSSL_cleanup                         1513	1_1_0	EXIST::FUNCTION:
@@ -1565,7 +1565,7 @@ BIO_free                                1518	1_1_0	EXIST::FUNCTION:
 i2d_X509_ALGOR                          1519	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_set0_crls                1520	1_1_0	EXIST::FUNCTION:
 ASYNC_pause_job                         1521	1_1_0	EXIST::FUNCTION:
-OCSP_BASICRESP_new                      1522	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_new                      1522	1_1_0	EXIST::FUNCTION:OCSP
 EVP_camellia_256_ofb                    1523	1_1_0	EXIST::FUNCTION:CAMELLIA
 PKCS12_item_i2d_encrypt                 1524	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_set_copy                  1525	1_1_0	EXIST::FUNCTION:
@@ -1590,7 +1590,7 @@ CMS_get0_content                        1543	1_1_0	EXIST::FUNCTION:CMS
 BN_is_word                              1544	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_key_length                   1545	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_asn1_to_param                1546	1_1_0	EXIST::FUNCTION:
-OCSP_request_onereq_get0                1547	1_1_0	EXIST::FUNCTION:
+OCSP_request_onereq_get0                1547	1_1_0	EXIST::FUNCTION:OCSP
 ERR_load_PKCS7_strings                  1548	1_1_0	EXIST::FUNCTION:
 X509_PUBKEY_get                         1549	1_1_0	EXIST::FUNCTION:
 EC_KEY_free                             1550	1_1_0	EXIST::FUNCTION:EC
@@ -1616,8 +1616,8 @@ X509V3_extensions_print                 1569	1_1_0	EXIST::FUNCTION:
 PEM_do_header                           1570	1_1_0	EXIST::FUNCTION:
 i2d_re_X509_CRL_tbs                     1571	1_1_0	EXIST::FUNCTION:
 BIO_method_name                         1572	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_CRLID                          1573	1_1_0	EXIST::FUNCTION:
-OCSP_request_set1_name                  1574	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_CRLID                          1573	1_1_0	EXIST::FUNCTION:OCSP
+OCSP_request_set1_name                  1574	1_1_0	EXIST::FUNCTION:OCSP
 d2i_X509_NAME_ENTRY                     1575	1_1_0	EXIST::FUNCTION:
 X509_trusted                            1576	1_1_0	EXIST::FUNCTION:
 X509_TRUST_get_flags                    1577	1_1_0	EXIST::FUNCTION:
@@ -1629,7 +1629,7 @@ X509_policy_tree_get0_user_policies     1582	1_1_0	EXIST::FUNCTION:
 SCT_LIST_set0_logs                      1583	1_1_0	NOEXIST::FUNCTION:
 DSA_do_sign                             1584	1_1_0	EXIST::FUNCTION:DSA
 EVP_CIPHER_CTX_reset                    1585	1_1_0	EXIST::FUNCTION:
-OCSP_REVOKEDINFO_new                    1586	1_1_0	EXIST::FUNCTION:
+OCSP_REVOKEDINFO_new                    1586	1_1_0	EXIST::FUNCTION:OCSP
 SRP_Verify_A_mod_N                      1587	1_1_0	EXIST::FUNCTION:SRP
 SRP_VBASE_free                          1588	1_1_0	EXIST::FUNCTION:SRP
 PKCS7_add0_attrib_signing_time          1589	1_1_0	EXIST::FUNCTION:
@@ -1661,12 +1661,12 @@ BIO_ADDRINFO_address                    1613	1_1_0	EXIST::FUNCTION:SOCK
 ASN1_STRING_print_ex                    1614	1_1_0	EXIST::FUNCTION:
 i2d_CMS_ReceiptRequest                  1615	1_1_0	EXIST::FUNCTION:CMS
 d2i_TS_REQ_fp                           1616	1_1_0	EXIST::FUNCTION:STDIO,TS
-OCSP_REQ_CTX_i2d                        1617	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_i2d                        1617	1_1_0	EXIST::FUNCTION:OCSP
 EVP_PKEY_get_default_digest_nid         1618	1_1_0	EXIST::FUNCTION:
 ASIdOrRange_new                         1619	1_1_0	EXIST::FUNCTION:RFC3779
 ASN1_SCTX_new                           1620	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_get                          1621	1_1_0	EXIST::FUNCTION:
-OCSP_id_cmp                             1622	1_1_0	EXIST::FUNCTION:
+OCSP_id_cmp                             1622	1_1_0	EXIST::FUNCTION:OCSP
 NCONF_dump_bio                          1623	1_1_0	EXIST::FUNCTION:
 X509_NAME_get_entry                     1624	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_get1_DH                        1625	1_1_0	EXIST::FUNCTION:DH
@@ -1677,18 +1677,18 @@ CRYPTO_ocb128_cleanup                   1629	1_1_0	EXIST::FUNCTION:OCB
 EVP_des_ede_cbc                         1630	1_1_0	EXIST::FUNCTION:DES
 i2d_ASN1_TIME                           1631	1_1_0	EXIST::FUNCTION:
 ENGINE_register_all_pkey_asn1_meths     1632	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_set_max_response_length            1633	1_1_0	EXIST::FUNCTION:
+OCSP_set_max_response_length            1633	1_1_0	EXIST::FUNCTION:OCSP
 d2i_ISSUING_DIST_POINT                  1634	1_1_0	EXIST::FUNCTION:
 CMS_RecipientInfo_set0_key              1635	1_1_0	EXIST::FUNCTION:CMS
 NCONF_new                               1636	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_free                    1637	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_free                    1637	1_1_0	EXIST::FUNCTION:OCSP
 PKCS7_ENCRYPT_free                      1638	1_1_0	EXIST::FUNCTION:
 i2d_DIST_POINT                          1639	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_paramgen_init                  1640	1_1_0	EXIST::FUNCTION:
 TS_MSG_IMPRINT_dup                      1641	1_1_0	EXIST::FUNCTION:TS
 CMS_ContentInfo_it                      1642	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:CMS
 CMS_ContentInfo_it                      1642	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:CMS
-OCSP_resp_get0_signature                1643	1_1_0	EXIST::FUNCTION:
+OCSP_resp_get0_signature                1643	1_1_0	EXIST::FUNCTION:OCSP
 X509_STORE_CTX_get1_issuer              1644	1_1_0	EXIST::FUNCTION:
 EVP_Digest                              1645	1_1_0	EXIST::FUNCTION:
 CRYPTO_set_ex_data                      1646	1_1_0	EXIST::FUNCTION:
@@ -1718,8 +1718,8 @@ X509_ATTRIBUTE_create_by_NID            1669	1_1_0	EXIST::FUNCTION:
 TS_VERIFY_CTX_free                      1670	1_1_0	EXIST::FUNCTION:TS
 EC_KEY_up_ref                           1671	1_1_0	EXIST::FUNCTION:EC
 EC_GROUP_get_basis_type                 1672	1_1_0	EXIST::FUNCTION:EC
-OCSP_crlID_new                          1673	1_1_0	EXIST:!VMS:FUNCTION:
-OCSP_crlID2_new                         1673	1_1_0	EXIST:VMS:FUNCTION:
+OCSP_crlID_new                          1673	1_1_0	EXIST:!VMS:FUNCTION:OCSP
+OCSP_crlID2_new                         1673	1_1_0	EXIST:VMS:FUNCTION:OCSP
 PEM_write_PKCS7                         1674	1_1_0	EXIST::FUNCTION:
 PKCS7_add_signer                        1675	1_1_0	EXIST::FUNCTION:
 X509_SIG_it                             1676	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
@@ -1775,7 +1775,7 @@ EVP_cast5_ecb                           1724	1_1_0	EXIST::FUNCTION:CAST
 BIO_nwrite0                             1725	1_1_0	EXIST::FUNCTION:
 CAST_encrypt                            1726	1_1_0	EXIST::FUNCTION:CAST
 a2d_ASN1_OBJECT                         1727	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_delete_ext                  1728	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_delete_ext                  1728	1_1_0	EXIST::FUNCTION:OCSP
 UI_method_get_reader                    1729	1_1_0	EXIST::FUNCTION:UI
 CMS_unsigned_get_attr                   1730	1_1_0	EXIST::FUNCTION:CMS
 EVP_aes_256_cbc                         1731	1_1_0	EXIST::FUNCTION:
@@ -1787,7 +1787,7 @@ EVP_ENCODE_CTX_new                      1736	1_1_0	EXIST::FUNCTION:
 BIO_f_base64                            1737	1_1_0	EXIST::FUNCTION:
 CMS_verify                              1738	1_1_0	EXIST::FUNCTION:CMS
 i2d_PrivateKey                          1739	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_ONEREQ                         1740	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_ONEREQ                         1740	1_1_0	EXIST::FUNCTION:OCSP
 OPENSSL_issetugid                       1741	1_1_0	EXIST::FUNCTION:
 d2i_ASN1_OBJECT                         1742	1_1_0	EXIST::FUNCTION:
 EVP_MD_meth_set_flags                   1743	1_1_0	EXIST::FUNCTION:
@@ -1803,7 +1803,7 @@ DSO_up_ref                              1752	1_1_0	EXIST::FUNCTION:
 EVP_rc2_cbc                             1753	1_1_0	EXIST::FUNCTION:RC2
 i2d_NETSCAPE_SPKI                       1754	1_1_0	EXIST::FUNCTION:
 ASYNC_init_thread                       1755	1_1_0	EXIST::FUNCTION:
-OCSP_BASICRESP_get_ext_by_OBJ           1756	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_get_ext_by_OBJ           1756	1_1_0	EXIST::FUNCTION:OCSP
 X509_reject_clear                       1757	1_1_0	EXIST::FUNCTION:
 DH_security_bits                        1758	1_1_0	EXIST::FUNCTION:DH
 LONG_it                                 1759	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
@@ -1850,7 +1850,7 @@ EVP_CIPHER_CTX_clear_flags              1796	1_1_0	EXIST::FUNCTION:
 ECDSA_size                              1797	1_1_0	EXIST::FUNCTION:EC
 X509_ALGOR_get0                         1798	1_1_0	EXIST::FUNCTION:
 d2i_ACCESS_DESCRIPTION                  1799	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_get_ext_by_NID          1800	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get_ext_by_NID          1800	1_1_0	EXIST::FUNCTION:OCSP
 a2i_IPADDRESS_NC                        1801	1_1_0	EXIST::FUNCTION:
 CTLOG_STORE_load_default_file           1802	1_1_0	EXIST::FUNCTION:CT
 PKCS12_SAFEBAG_create_pkcs8_encrypt     1803	1_1_0	EXIST::FUNCTION:
@@ -1928,7 +1928,7 @@ X509_get_ext_by_OBJ                     1869	1_1_0	EXIST::FUNCTION:
 PBEPARAM_new                            1870	1_1_0	EXIST::FUNCTION:
 EVP_aes_128_cbc                         1871	1_1_0	EXIST::FUNCTION:
 CRYPTO_dup_ex_data                      1872	1_1_0	EXIST::FUNCTION:
-OCSP_single_get0_status                 1873	1_1_0	EXIST::FUNCTION:
+OCSP_single_get0_status                 1873	1_1_0	EXIST::FUNCTION:OCSP
 d2i_AUTHORITY_INFO_ACCESS               1874	1_1_0	EXIST::FUNCTION:
 PEM_read_RSAPrivateKey                  1875	1_1_0	EXIST::FUNCTION:RSA
 BIO_closesocket                         1876	1_1_0	EXIST::FUNCTION:SOCK
@@ -1938,7 +1938,7 @@ BN_new                                  1879	1_1_0	EXIST::FUNCTION:
 X509_OBJECT_retrieve_by_subject         1880	1_1_0	EXIST::FUNCTION:
 MD5_Final                               1881	1_1_0	EXIST::FUNCTION:MD5
 X509_STORE_set_verify_cb                1882	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_print                      1883	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_print                      1883	1_1_0	EXIST::FUNCTION:OCSP
 CMS_add1_crl                            1884	1_1_0	EXIST::FUNCTION:CMS
 d2i_EDIPARTYNAME                        1885	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_set0_trusted_stack       1886	1_1_0	EXIST::FUNCTION:
@@ -1948,11 +1948,11 @@ ASN1_BOOLEAN_it                         1888	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 TS_RESP_CTX_set_time_cb                 1889	1_1_0	EXIST::FUNCTION:TS
 IDEA_cbc_encrypt                        1890	1_1_0	EXIST::FUNCTION:IDEA
 BN_CTX_secure_new                       1891	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_add_ext                     1892	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_add_ext                     1892	1_1_0	EXIST::FUNCTION:OCSP
 CMS_uncompress                          1893	1_1_0	EXIST::FUNCTION:CMS
 CRYPTO_mem_debug_pop                    1895	1_1_0	EXIST::FUNCTION:CRYPTO_MDEBUG
 EVP_aes_192_cfb128                      1896	1_1_0	EXIST::FUNCTION:
-OCSP_REQ_CTX_nbio                       1897	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_nbio                       1897	1_1_0	EXIST::FUNCTION:OCSP
 EVP_CIPHER_CTX_copy                     1898	1_1_0	EXIST::FUNCTION:
 CRYPTO_secure_allocated                 1899	1_1_0	EXIST::FUNCTION:
 UI_UTIL_read_pw_string                  1900	1_1_0	EXIST::FUNCTION:UI
@@ -1993,7 +1993,7 @@ X509_NAME_add_entry                     1935	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_get_asn1_iv                  1936	1_1_0	EXIST::FUNCTION:
 i2d_RSAPrivateKey_bio                   1937	1_1_0	EXIST::FUNCTION:RSA
 PKCS5_PBE_keyivgen                      1938	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_SERVICELOC                     1939	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_SERVICELOC                     1939	1_1_0	EXIST::FUNCTION:OCSP
 EC_POINT_copy                           1940	1_1_0	EXIST::FUNCTION:EC
 X509V3_EXT_CRL_add_nconf                1941	1_1_0	EXIST::FUNCTION:
 SHA256_Init                             1942	1_1_0	EXIST::FUNCTION:
@@ -2029,7 +2029,7 @@ EC_POINT_get_affine_coordinates_GF2m    1970	1_1_0	EXIST::FUNCTION:EC,EC2M
 EVP_ENCODE_CTX_num                      1971	1_1_0	EXIST::FUNCTION:
 Camellia_cfb1_encrypt                   1972	1_1_0	EXIST::FUNCTION:CAMELLIA
 NCONF_load_fp                           1973	1_1_0	EXIST::FUNCTION:STDIO
-i2d_OCSP_REQINFO                        1974	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_REQINFO                        1974	1_1_0	EXIST::FUNCTION:OCSP
 EVP_PKEY_sign                           1975	1_1_0	EXIST::FUNCTION:
 TS_REQ_get_ext_by_critical              1976	1_1_0	EXIST::FUNCTION:TS
 EC_KEY_key2buf                          1977	1_1_0	EXIST::FUNCTION:EC
@@ -2089,7 +2089,7 @@ PKCS7_signatureVerify                   2027	1_1_0	EXIST::FUNCTION:
 CRYPTO_ocb128_new                       2028	1_1_0	EXIST::FUNCTION:OCB
 EC_curve_nist2nid                       2029	1_1_0	EXIST::FUNCTION:EC
 UI_get0_result                          2030	1_1_0	EXIST::FUNCTION:UI
-OCSP_request_add1_nonce                 2031	1_1_0	EXIST::FUNCTION:
+OCSP_request_add1_nonce                 2031	1_1_0	EXIST::FUNCTION:OCSP
 UI_construct_prompt                     2032	1_1_0	EXIST::FUNCTION:UI
 ENGINE_unregister_RSA                   2033	1_1_0	EXIST::FUNCTION:ENGINE
 EC_GROUP_order_bits                     2034	1_1_0	EXIST::FUNCTION:EC
@@ -2112,7 +2112,7 @@ ASN1_ENUMERATED_it                      2047	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 o2i_ECPublicKey                         2048	1_1_0	EXIST::FUNCTION:EC
 ERR_load_BUF_strings                    2049	1_1_0	EXIST::FUNCTION:
 PEM_read_bio_RSA_PUBKEY                 2050	1_1_0	EXIST::FUNCTION:RSA
-OCSP_SINGLERESP_new                     2051	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_new                     2051	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_SCTX_free                          2052	1_1_0	EXIST::FUNCTION:
 i2d_ECPrivateKey_fp                     2053	1_1_0	EXIST::FUNCTION:EC,STDIO
 EVP_CIPHER_CTX_original_iv              2054	1_1_0	EXIST::FUNCTION:
@@ -2130,7 +2130,7 @@ EVP_PKEY_meth_get_verifyctx             2065	1_1_0	EXIST::FUNCTION:
 CT_POLICY_EVAL_CTX_get0_cert            2066	1_1_0	EXIST::FUNCTION:CT
 PEM_write_DHparams                      2067	1_1_0	EXIST::FUNCTION:DH
 DH_set_ex_data                          2068	1_1_0	EXIST::FUNCTION:DH
-OCSP_SIGNATURE_free                     2069	1_1_0	EXIST::FUNCTION:
+OCSP_SIGNATURE_free                     2069	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_128_unwrap_pad                   2070	1_1_0	EXIST::FUNCTION:
 BIO_new_CMS                             2071	1_1_0	EXIST::FUNCTION:CMS
 i2d_ASN1_ENUMERATED                     2072	1_1_0	EXIST::FUNCTION:
@@ -2168,7 +2168,7 @@ X509_get_ext_count                      2103	1_1_0	EXIST::FUNCTION:
 CRYPTO_cts128_decrypt                   2104	1_1_0	EXIST::FUNCTION:
 ASYNC_WAIT_CTX_get_fd                   2105	1_1_0	EXIST::FUNCTION:
 i2d_TS_REQ                              2106	1_1_0	EXIST::FUNCTION:TS
-OCSP_ONEREQ_add1_ext_i2d                2107	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_add1_ext_i2d                2107	1_1_0	EXIST::FUNCTION:OCSP
 ENGINE_register_pkey_meths              2108	1_1_0	EXIST::FUNCTION:ENGINE
 ENGINE_load_public_key                  2109	1_1_0	EXIST::FUNCTION:ENGINE
 ASIdOrRange_it                          2110	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779
@@ -2193,14 +2193,14 @@ BN_mod_exp_recp                         2126	1_1_0	EXIST::FUNCTION:
 EVP_mdc2                                2127	1_1_0	EXIST::FUNCTION:MDC2
 EVP_des_cfb64                           2128	1_1_0	EXIST::FUNCTION:DES
 PKCS7_sign                              2129	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_get_ext_by_critical     2130	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get_ext_by_critical     2130	1_1_0	EXIST::FUNCTION:OCSP
 EDIPARTYNAME_it                         2131	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 EDIPARTYNAME_it                         2131	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 ERR_print_errors_fp                     2132	1_1_0	EXIST::FUNCTION:STDIO
 BN_GF2m_mod_div_arr                     2133	1_1_0	EXIST::FUNCTION:EC2M
 PKCS12_SAFEBAG_get0_attr                2134	1_1_0	EXIST::FUNCTION:
 BIO_s_mem                               2135	1_1_0	EXIST::FUNCTION:
-OCSP_RESPDATA_new                       2136	1_1_0	EXIST::FUNCTION:
+OCSP_RESPDATA_new                       2136	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_item_i2d_fp                        2137	1_1_0	EXIST::FUNCTION:STDIO
 BN_GF2m_mod_sqr                         2138	1_1_0	EXIST::FUNCTION:EC2M
 ASN1_PRINTABLE_new                      2139	1_1_0	EXIST::FUNCTION:
@@ -2217,7 +2217,7 @@ CRYPTO_THREAD_compare_id                2148	1_1_0	EXIST::FUNCTION:
 d2i_IPAddressChoice                     2149	1_1_0	EXIST::FUNCTION:RFC3779
 IPAddressFamily_it                      2150	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779
 IPAddressFamily_it                      2150	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779
-ERR_load_OCSP_strings                   2151	1_1_0	EXIST::FUNCTION:
+ERR_load_OCSP_strings                   2151	1_1_0	EXIST::FUNCTION:OCSP
 BIO_push                                2152	1_1_0	EXIST::FUNCTION:
 ASN1_BMPSTRING_new                      2153	1_1_0	EXIST::FUNCTION:
 COMP_get_type                           2154	1_1_0	EXIST::FUNCTION:COMP
@@ -2229,7 +2229,7 @@ BN_CTX_free                             2159	1_1_0	EXIST::FUNCTION:
 EC_GROUP_get_curve_GF2m                 2160	1_1_0	EXIST::FUNCTION:EC,EC2M
 EVP_MD_flags                            2161	1_1_0	EXIST::FUNCTION:
 sk_set                                  2162	1_1_0	EXIST::FUNCTION:
-OCSP_request_sign                       2163	1_1_0	EXIST::FUNCTION:
+OCSP_request_sign                       2163	1_1_0	EXIST::FUNCTION:OCSP
 BN_GF2m_mod_solve_quad                  2164	1_1_0	EXIST::FUNCTION:EC2M
 EC_POINT_method_of                      2165	1_1_0	EXIST::FUNCTION:EC
 PKCS7_ENCRYPT_it                        2166	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
@@ -2245,7 +2245,7 @@ OBJ_find_sigid_algs                     2173	1_1_0	EXIST::FUNCTION:
 TS_RESP_CTX_set_accuracy                2174	1_1_0	EXIST::FUNCTION:TS
 NETSCAPE_SPKI_get_pubkey                2175	1_1_0	EXIST::FUNCTION:
 ECDSA_do_sign_ex                        2176	1_1_0	EXIST::FUNCTION:EC
-OCSP_ONEREQ_get_ext                     2177	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_get_ext                     2177	1_1_0	EXIST::FUNCTION:OCSP
 DES_read_password                       2178	1_1_0	EXIST::FUNCTION:DES,UI
 BN_get_rfc3526_prime_4096               2179	1_1_0	EXIST::FUNCTION:
 d2i_PKCS7_fp                            2180	1_1_0	EXIST::FUNCTION:STDIO
@@ -2263,7 +2263,7 @@ ASN1_GENERALIZEDTIME_new                2190	1_1_0	EXIST::FUNCTION:
 d2i_ECDSA_SIG                           2191	1_1_0	EXIST::FUNCTION:EC
 d2i_OTHERNAME                           2192	1_1_0	EXIST::FUNCTION:
 i2d_TS_RESP_fp                          2193	1_1_0	EXIST::FUNCTION:STDIO,TS
-OCSP_BASICRESP_get_ext_count            2194	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_get_ext_count            2194	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_T61STRING_new                      2195	1_1_0	EXIST::FUNCTION:
 BN_kronecker                            2196	1_1_0	EXIST::FUNCTION:
 i2d_ACCESS_DESCRIPTION                  2197	1_1_0	EXIST::FUNCTION:
@@ -2312,7 +2312,7 @@ EC_GROUP_set_curve_GF2m                 2239	1_1_0	EXIST::FUNCTION:EC,EC2M
 ENGINE_load_builtin_engines             2240	1_1_0	EXIST::FUNCTION:ENGINE
 SRP_VBASE_init                          2241	1_1_0	EXIST::FUNCTION:SRP
 SHA224_Final                            2242	1_1_0	EXIST::FUNCTION:
-OCSP_CERTSTATUS_free                    2243	1_1_0	EXIST::FUNCTION:
+OCSP_CERTSTATUS_free                    2243	1_1_0	EXIST::FUNCTION:OCSP
 d2i_TS_TST_INFO                         2244	1_1_0	EXIST::FUNCTION:TS
 IPAddressOrRange_it                     2245	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779
 IPAddressOrRange_it                     2245	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779
@@ -2320,7 +2320,7 @@ ENGINE_get_cipher                       2246	1_1_0	EXIST::FUNCTION:ENGINE
 TS_TST_INFO_delete_ext                  2247	1_1_0	EXIST::FUNCTION:TS
 TS_OBJ_print_bio                        2248	1_1_0	EXIST::FUNCTION:TS
 X509_time_adj_ex                        2249	1_1_0	EXIST::FUNCTION:
-OCSP_request_add1_cert                  2250	1_1_0	EXIST::FUNCTION:
+OCSP_request_add1_cert                  2250	1_1_0	EXIST::FUNCTION:OCSP
 ERR_load_X509_strings                   2251	1_1_0	EXIST::FUNCTION:
 SHA1_Transform                          2252	1_1_0	EXIST::FUNCTION:
 CMS_signed_get_attr_by_NID              2253	1_1_0	EXIST::FUNCTION:CMS
@@ -2378,7 +2378,7 @@ UTF8_putc                               2302	1_1_0	EXIST::FUNCTION:
 RSA_private_encrypt                     2303	1_1_0	EXIST::FUNCTION:RSA
 X509_LOOKUP_shutdown                    2304	1_1_0	EXIST::FUNCTION:
 TS_TST_INFO_set_accuracy                2305	1_1_0	EXIST::FUNCTION:TS
-OCSP_basic_verify                       2306	1_1_0	EXIST::FUNCTION:
+OCSP_basic_verify                       2306	1_1_0	EXIST::FUNCTION:OCSP
 X509at_add1_attr_by_OBJ                 2307	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_asn1_add0                      2308	1_1_0	EXIST::FUNCTION:
 PKCS12_SAFEBAG_get1_crl                 2309	1_1_0	EXIST::FUNCTION:
@@ -2495,14 +2495,14 @@ d2i_RSAPublicKey_fp                     2417	1_1_0	EXIST::FUNCTION:RSA,STDIO
 UI_method_get_flusher                   2418	1_1_0	EXIST::FUNCTION:UI
 EC_POINT_dbl                            2419	1_1_0	EXIST::FUNCTION:EC
 i2d_X509_CRL_INFO                       2420	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_CERTSTATUS                     2421	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_CERTSTATUS                     2421	1_1_0	EXIST::FUNCTION:OCSP
 X509_REVOKED_get0_revocationDate        2422	1_1_0	EXIST::FUNCTION:
 PKCS7_add_crl                           2423	1_1_0	EXIST::FUNCTION:
 ECDSA_do_sign                           2424	1_1_0	EXIST::FUNCTION:EC
 ASN1_GENERALIZEDTIME_it                 2425	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_GENERALIZEDTIME_it                 2425	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 PKCS8_pkey_get0                         2426	1_1_0	EXIST::FUNCTION:
-OCSP_sendreq_new                        2427	1_1_0	EXIST::FUNCTION:
+OCSP_sendreq_new                        2427	1_1_0	EXIST::FUNCTION:OCSP
 EVP_aes_256_cfb128                      2428	1_1_0	EXIST::FUNCTION:
 RSA_set_ex_data                         2429	1_1_0	EXIST::FUNCTION:RSA
 BN_GENCB_call                           2430	1_1_0	EXIST::FUNCTION:
@@ -2514,8 +2514,8 @@ EVP_get_digestbyname                    2435	1_1_0	EXIST::FUNCTION:
 X509_CRL_get_lastUpdate                 2436	1_1_0	EXIST::FUNCTION:
 OBJ_create_objects                      2437	1_1_0	EXIST::FUNCTION:
 EVP_enc_null                            2438	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_get_ext_by_critical         2439	1_1_0	EXIST::FUNCTION:
-OCSP_request_onereq_count               2440	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_get_ext_by_critical         2439	1_1_0	EXIST::FUNCTION:OCSP
+OCSP_request_onereq_count               2440	1_1_0	EXIST::FUNCTION:OCSP
 BN_hex2bn                               2441	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_meth_set_impl_ctx_size       2442	1_1_0	EXIST::FUNCTION:
 ASIdentifiers_new                       2443	1_1_0	EXIST::FUNCTION:RFC3779
@@ -2542,12 +2542,12 @@ BIO_s_datagram_sctp                     2461	1_1_0	EXIST::FUNCTION:DGRAM,SCTP
 SXNET_add_id_asc                        2462	1_1_0	EXIST::FUNCTION:
 X509_print_fp                           2463	1_1_0	EXIST::FUNCTION:STDIO
 TS_REQ_set_version                      2464	1_1_0	EXIST::FUNCTION:TS
-OCSP_REQINFO_new                        2465	1_1_0	EXIST::FUNCTION:
+OCSP_REQINFO_new                        2465	1_1_0	EXIST::FUNCTION:OCSP
 Camellia_decrypt                        2466	1_1_0	EXIST::FUNCTION:CAMELLIA
 X509_signature_print                    2467	1_1_0	EXIST::FUNCTION:
 EVP_camellia_128_ecb                    2468	1_1_0	EXIST::FUNCTION:CAMELLIA
 MD2_Final                               2469	1_1_0	EXIST::FUNCTION:MD2
-OCSP_REQ_CTX_add1_header                2470	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_add1_header                2470	1_1_0	EXIST::FUNCTION:OCSP
 NETSCAPE_SPKAC_it                       2471	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 NETSCAPE_SPKAC_it                       2471	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 ASIdOrRange_free                        2472	1_1_0	EXIST::FUNCTION:RFC3779
@@ -2561,7 +2561,7 @@ EVP_CIPHER_CTX_ctrl                     2479	1_1_0	EXIST::FUNCTION:
 ASN1_T61STRING_it                       2480	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_T61STRING_it                       2480	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 ENGINE_get_prev                         2481	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_accept_responses_new               2482	1_1_0	EXIST::FUNCTION:
+OCSP_accept_responses_new               2482	1_1_0	EXIST::FUNCTION:OCSP
 ERR_load_EC_strings                     2483	1_1_0	EXIST::FUNCTION:EC
 X509V3_string_free                      2484	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_set_paramgen              2485	1_1_0	EXIST::FUNCTION:
@@ -2641,7 +2641,7 @@ EVP_PKEY_CTX_get_keygen_info            2558	1_1_0	EXIST::FUNCTION:
 d2i_ASN1_UINTEGER                       2559	1_1_0	EXIST::FUNCTION:
 i2s_ASN1_INTEGER                        2560	1_1_0	EXIST::FUNCTION:
 d2i_EC_PUBKEY_fp                        2561	1_1_0	EXIST::FUNCTION:EC,STDIO
-i2d_OCSP_SIGNATURE                      2562	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_SIGNATURE                      2562	1_1_0	EXIST::FUNCTION:OCSP
 i2d_X509_EXTENSION                      2563	1_1_0	EXIST::FUNCTION:
 PEM_read_bio_X509                       2564	1_1_0	EXIST::FUNCTION:
 DES_key_sched                           2565	1_1_0	EXIST::FUNCTION:DES
@@ -2658,8 +2658,8 @@ ASN1_item_ex_d2i                        2575	1_1_0	EXIST::FUNCTION:
 EVP_MD_meth_free                        2576	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_new                       2577	1_1_0	EXIST::FUNCTION:
 RSA_padding_check_PKCS1_OAEP            2578	1_1_0	EXIST::FUNCTION:RSA
-OCSP_SERVICELOC_it                      2579	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_SERVICELOC_it                      2579	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_SERVICELOC_it                      2579	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_SERVICELOC_it                      2579	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 PKCS12_SAFEBAG_get_nid                  2580	1_1_0	EXIST::FUNCTION:
 EVP_MD_CTX_set_update_fn                2581	1_1_0	EXIST::FUNCTION:
 BIO_f_asn1                              2582	1_1_0	EXIST::FUNCTION:
@@ -2697,7 +2697,7 @@ lh_node_usage_stats                     2613	1_1_0	EXIST::FUNCTION:STDIO
 DIRECTORYSTRING_it                      2614	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 DIRECTORYSTRING_it                      2614	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 BIO_write                               2615	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_get_ext_by_OBJ              2616	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_get_ext_by_OBJ              2616	1_1_0	EXIST::FUNCTION:OCSP
 SEED_encrypt                            2617	1_1_0	EXIST::FUNCTION:SEED
 IPAddressRange_it                       2618	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779
 IPAddressRange_it                       2618	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779
@@ -2769,7 +2769,7 @@ d2i_CMS_ReceiptRequest                  2680	1_1_0	EXIST::FUNCTION:CMS
 X509_CRL_INFO_it                        2681	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 X509_CRL_INFO_it                        2681	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 BUF_reverse                             2682	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_SIGNATURE                      2683	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_SIGNATURE                      2683	1_1_0	EXIST::FUNCTION:OCSP
 X509_REQ_delete_attr                    2684	1_1_0	EXIST::FUNCTION:
 TS_RESP_CTX_set_signer_cert             2685	1_1_0	EXIST::FUNCTION:TS
 X509V3_EXT_d2i                          2686	1_1_0	EXIST::FUNCTION:
@@ -2777,7 +2777,7 @@ ASN1_GENERALSTRING_it                   2687	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 ASN1_GENERALSTRING_it                   2687	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 POLICYQUALINFO_free                     2688	1_1_0	EXIST::FUNCTION:
 EC_KEY_set_group                        2689	1_1_0	EXIST::FUNCTION:EC
-OCSP_check_validity                     2690	1_1_0	EXIST::FUNCTION:
+OCSP_check_validity                     2690	1_1_0	EXIST::FUNCTION:OCSP
 PEM_write_ECPKParameters                2691	1_1_0	EXIST::FUNCTION:EC
 X509_VERIFY_PARAM_lookup                2692	1_1_0	EXIST::FUNCTION:
 X509_LOOKUP_by_fingerprint              2693	1_1_0	EXIST::FUNCTION:
@@ -2787,7 +2787,7 @@ d2i_ECPrivateKey_fp                     2696	1_1_0	EXIST::FUNCTION:EC,STDIO
 TS_CONF_set_ordering                    2697	1_1_0	EXIST::FUNCTION:TS
 X509_CRL_get_ext                        2698	1_1_0	EXIST::FUNCTION:
 X509_CRL_get_ext_by_OBJ                 2699	1_1_0	EXIST::FUNCTION:
-OCSP_basic_add1_cert                    2700	1_1_0	EXIST::FUNCTION:
+OCSP_basic_add1_cert                    2700	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_PRINTABLESTRING_new                2701	1_1_0	EXIST::FUNCTION:
 i2d_PBEPARAM                            2702	1_1_0	EXIST::FUNCTION:
 NETSCAPE_SPKI_new                       2703	1_1_0	EXIST::FUNCTION:
@@ -2821,8 +2821,8 @@ CMS_ContentInfo_print_ctx               2730	1_1_0	EXIST::FUNCTION:CMS
 d2i_PKCS7_SIGNED                        2731	1_1_0	EXIST::FUNCTION:
 GENERAL_NAMES_free                      2732	1_1_0	EXIST::FUNCTION:
 SCT_get_timestamp                       2733	1_1_0	EXIST::FUNCTION:CT
-OCSP_SIGNATURE_it                       2734	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_SIGNATURE_it                       2734	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_SIGNATURE_it                       2734	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_SIGNATURE_it                       2734	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 CMS_verify_receipt                      2735	1_1_0	EXIST::FUNCTION:CMS
 CRYPTO_THREAD_lock_new                  2736	1_1_0	EXIST::FUNCTION:
 BIO_get_ex_data                         2737	1_1_0	EXIST::FUNCTION:
@@ -2835,9 +2835,9 @@ d2i_IPAddressRange                      2743	1_1_0	EXIST::FUNCTION:RFC3779
 ERR_remove_state                        2744	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_1_0_0
 X509_CRL_print_fp                       2745	1_1_0	EXIST::FUNCTION:STDIO
 TS_CONF_load_key                        2746	1_1_0	EXIST::FUNCTION:TS
-d2i_OCSP_REQINFO                        2747	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_REQINFO                        2747	1_1_0	EXIST::FUNCTION:OCSP
 d2i_X509_CINF                           2748	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_get_ext_by_critical        2749	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_get_ext_by_critical        2749	1_1_0	EXIST::FUNCTION:OCSP
 X509_REQ_to_X509                        2750	1_1_0	EXIST::FUNCTION:
 EVP_aes_192_wrap_pad                    2751	1_1_0	EXIST::FUNCTION:
 PKCS7_SIGN_ENVELOPE_new                 2752	1_1_0	EXIST::FUNCTION:
@@ -2858,8 +2858,8 @@ BIO_set                                 2765	1_1_0	EXIST::FUNCTION:
 CONF_imodule_set_flags                  2766	1_1_0	EXIST::FUNCTION:
 i2d_ASN1_SET_ANY                        2767	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_decrypt                        2768	1_1_0	EXIST::FUNCTION:
-OCSP_RESPID_it                          2769	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_RESPID_it                          2769	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_RESPID_it                          2769	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_RESPID_it                          2769	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 EVP_des_ede3_cbc                        2770	1_1_0	EXIST::FUNCTION:DES
 X509_up_ref                             2771	1_1_0	EXIST::FUNCTION:
 OBJ_NAME_do_all_sorted                  2772	1_1_0	EXIST::FUNCTION:
@@ -2885,7 +2885,7 @@ PKCS12_setup_mac                        2788	1_1_0	EXIST::FUNCTION:
 PEM_read_bio_PKCS7                      2789	1_1_0	EXIST::FUNCTION:
 SHA512_Final                            2790	1_1_0	EXIST:!VMSVAX:FUNCTION:
 X509_VERIFY_PARAM_set1_host             2791	1_1_0	EXIST::FUNCTION:
-OCSP_resp_find_status                   2792	1_1_0	EXIST::FUNCTION:
+OCSP_resp_find_status                   2792	1_1_0	EXIST::FUNCTION:OCSP
 d2i_ASN1_T61STRING                      2793	1_1_0	EXIST::FUNCTION:
 DES_pcbc_encrypt                        2794	1_1_0	EXIST::FUNCTION:DES
 EVP_PKEY_print_params                   2795	1_1_0	EXIST::FUNCTION:
@@ -2908,7 +2908,7 @@ ERR_clear_error                         2810	1_1_0	EXIST::FUNCTION:
 EC_KEY_dup                              2811	1_1_0	EXIST::FUNCTION:EC
 X509_LOOKUP_init                        2812	1_1_0	EXIST::FUNCTION:
 i2b_PVK_bio                             2813	1_1_0	EXIST::FUNCTION:RC4
-OCSP_ONEREQ_free                        2814	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_free                        2814	1_1_0	EXIST::FUNCTION:OCSP
 X509V3_EXT_print_fp                     2815	1_1_0	EXIST::FUNCTION:STDIO
 OBJ_bsearch_ex_                         2816	1_1_0	EXIST::FUNCTION:
 DES_ofb64_encrypt                       2817	1_1_0	EXIST::FUNCTION:DES
@@ -2926,7 +2926,7 @@ CRYPTO_get_id_callback                  2828	1_1_0	NOEXIST::FUNCTION:
 X509_CRL_add_ext                        2829	1_1_0	EXIST::FUNCTION:
 X509_REQ_get_signature_nid              2830	1_1_0	EXIST::FUNCTION:
 TS_TST_INFO_get_ext                     2831	1_1_0	EXIST::FUNCTION:TS
-i2d_OCSP_RESPID                         2832	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_RESPID                         2832	1_1_0	EXIST::FUNCTION:OCSP
 EVP_camellia_256_cfb8                   2833	1_1_0	EXIST::FUNCTION:CAMELLIA
 EC_KEY_get0_public_key                  2834	1_1_0	EXIST::FUNCTION:EC
 SRP_Calc_x                              2835	1_1_0	EXIST::FUNCTION:SRP
@@ -2966,7 +2966,7 @@ BN_swap                                 2866	1_1_0	EXIST::FUNCTION:
 d2i_ECParameters                        2867	1_1_0	EXIST::FUNCTION:EC
 X509_NAME_add_entry_by_OBJ              2868	1_1_0	EXIST::FUNCTION:
 TS_TST_INFO_get_ext_count               2869	1_1_0	EXIST::FUNCTION:TS
-i2d_OCSP_CERTID                         2870	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_CERTID                         2870	1_1_0	EXIST::FUNCTION:OCSP
 BN_CTX_start                            2871	1_1_0	EXIST::FUNCTION:
 BN_print                                2872	1_1_0	EXIST::FUNCTION:
 EC_KEY_set_flags                        2873	1_1_0	EXIST::FUNCTION:EC
@@ -2981,7 +2981,7 @@ X509_CINF_it                            2880	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 TS_CONF_set_accuracy                    2881	1_1_0	EXIST::FUNCTION:TS
 DES_crypt                               2882	1_1_0	EXIST::FUNCTION:DES
 BN_BLINDING_create_param                2883	1_1_0	EXIST::FUNCTION:
-OCSP_SERVICELOC_free                    2884	1_1_0	EXIST::FUNCTION:
+OCSP_SERVICELOC_free                    2884	1_1_0	EXIST::FUNCTION:OCSP
 DIST_POINT_NAME_free                    2885	1_1_0	EXIST::FUNCTION:
 BIO_listen                              2886	1_1_0	EXIST::FUNCTION:SOCK
 BIO_ADDR_path_string                    2887	1_1_0	EXIST::FUNCTION:SOCK
@@ -3012,7 +3012,7 @@ EVP_des_ede3_cfb1                       2909	1_1_0	EXIST::FUNCTION:DES
 TS_REQ_to_TS_VERIFY_CTX                 2910	1_1_0	EXIST::FUNCTION:TS
 d2i_PBEPARAM                            2911	1_1_0	EXIST::FUNCTION:
 BN_get0_nist_prime_521                  2912	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_get_ext_by_NID              2913	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_get_ext_by_NID              2913	1_1_0	EXIST::FUNCTION:OCSP
 X509_PUBKEY_get0                        2914	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_get0_parent_ctx          2915	1_1_0	EXIST::FUNCTION:
 EC_GROUP_set_seed                       2916	1_1_0	EXIST::FUNCTION:EC
@@ -3025,7 +3025,7 @@ RC5_32_decrypt                          2921	1_1_0	EXIST::FUNCTION:RC5
 i2d_X509_REQ_INFO                       2922	1_1_0	EXIST::FUNCTION:
 EVP_des_cfb1                            2923	1_1_0	EXIST::FUNCTION:DES
 OBJ_NAME_cleanup                        2924	1_1_0	EXIST::FUNCTION:
-OCSP_BASICRESP_get1_ext_d2i             2925	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_get1_ext_d2i             2925	1_1_0	EXIST::FUNCTION:OCSP
 DES_cfb64_encrypt                       2926	1_1_0	EXIST::FUNCTION:DES
 CAST_cfb64_encrypt                      2927	1_1_0	EXIST::FUNCTION:CAST
 EVP_PKEY_asn1_set_param                 2928	1_1_0	EXIST::FUNCTION:
@@ -3042,7 +3042,7 @@ X509_get1_email                         2938	1_1_0	EXIST::FUNCTION:
 EC_POINT_point2oct                      2939	1_1_0	EXIST::FUNCTION:EC
 EC_GROUP_get_curve_GFp                  2940	1_1_0	EXIST::FUNCTION:EC
 ASYNC_block_pause                       2941	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_get_ext                 2942	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get_ext                 2942	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_strdup                           2943	1_1_0	EXIST::FUNCTION:
 DSO_get_default_method                  2944	1_1_0	NOEXIST::FUNCTION:
 i2d_X509_CRL_bio                        2945	1_1_0	EXIST::FUNCTION:
@@ -3052,7 +3052,7 @@ X509v3_addr_get_afi                     2948	1_1_0	EXIST::FUNCTION:RFC3779
 X509_STORE_CTX_get0_param               2949	1_1_0	EXIST::FUNCTION:
 EVP_add_alg_module                      2950	1_1_0	EXIST::FUNCTION:
 X509_check_purpose                      2951	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_delete_ext                 2952	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_delete_ext                 2952	1_1_0	EXIST::FUNCTION:OCSP
 X509_PURPOSE_get_count                  2953	1_1_0	EXIST::FUNCTION:
 d2i_PKCS12_bio                          2954	1_1_0	EXIST::FUNCTION:
 ASN1_item_free                          2955	1_1_0	EXIST::FUNCTION:
@@ -3118,7 +3118,7 @@ DSO_METHOD_vms                          3013	1_1_0	NOEXIST::FUNCTION:
 POLICY_MAPPING_free                     3014	1_1_0	EXIST::FUNCTION:
 EVP_aes_128_gcm                         3015	1_1_0	EXIST::FUNCTION:
 BIO_dgram_non_fatal_error               3016	1_1_0	EXIST::FUNCTION:DGRAM
-OCSP_request_is_signed                  3017	1_1_0	EXIST::FUNCTION:
+OCSP_request_is_signed                  3017	1_1_0	EXIST::FUNCTION:OCSP
 i2d_BASIC_CONSTRAINTS                   3018	1_1_0	EXIST::FUNCTION:
 EC_KEY_get_method                       3019	1_1_0	EXIST::FUNCTION:EC
 CRYPTO_get_dynlock_destroy_callback     3020	1_1_0	NOEXIST::FUNCTION:
@@ -3148,7 +3148,7 @@ X509V3_set_conf_lhash                   3041	1_1_0	EXIST::FUNCTION:
 PKCS7_ENC_CONTENT_it                    3042	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 PKCS7_ENC_CONTENT_it                    3042	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 PKCS12_item_pack_safebag                3043	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_RESPDATA                       3044	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_RESPDATA                       3044	1_1_0	EXIST::FUNCTION:OCSP
 i2d_X509_PUBKEY                         3045	1_1_0	EXIST::FUNCTION:
 EVP_DecryptUpdate                       3046	1_1_0	EXIST::FUNCTION:
 CAST_cbc_encrypt                        3047	1_1_0	EXIST::FUNCTION:CAST
@@ -3218,7 +3218,7 @@ PEM_read_DSA_PUBKEY                     3110	1_1_0	EXIST::FUNCTION:DSA
 X509_get0_subject_key_id                3111	1_1_0	EXIST::FUNCTION:
 i2s_ASN1_ENUMERATED                     3112	1_1_0	EXIST::FUNCTION:
 X509v3_get_ext_by_OBJ                   3113	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_free                       3114	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_free                       3114	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_ocb128_aad                       3115	1_1_0	EXIST::FUNCTION:OCB
 sk_deep_copy                            3116	1_1_0	EXIST::FUNCTION:
 i2d_RSA_PSS_PARAMS                      3117	1_1_0	EXIST::FUNCTION:RSA
@@ -3257,7 +3257,7 @@ ASN1_GENERALIZEDTIME_adj                3148	1_1_0	EXIST::FUNCTION:
 ECDSA_verify                            3149	1_1_0	EXIST::FUNCTION:EC
 EVP_camellia_256_cfb128                 3150	1_1_0	EXIST::FUNCTION:CAMELLIA
 CMAC_Init                               3151	1_1_0	EXIST::FUNCTION:
-OCSP_basic_add1_status                  3152	1_1_0	EXIST::FUNCTION:
+OCSP_basic_add1_status                  3152	1_1_0	EXIST::FUNCTION:OCSP
 X509_CRL_get0_by_cert                   3153	1_1_0	EXIST::FUNCTION:
 TS_TST_INFO_set_tsa                     3154	1_1_0	EXIST::FUNCTION:TS
 i2d_ASN1_GENERALIZEDTIME                3155	1_1_0	EXIST::FUNCTION:
@@ -3268,11 +3268,11 @@ X509_VERIFY_PARAM_set_time              3159	1_1_0	EXIST::FUNCTION:
 BN_reciprocal                           3160	1_1_0	EXIST::FUNCTION:
 d2i_PKCS7_SIGN_ENVELOPE                 3161	1_1_0	EXIST::FUNCTION:
 X509_NAME_digest                        3162	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_SERVICELOC                     3163	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_SERVICELOC                     3163	1_1_0	EXIST::FUNCTION:OCSP
 GENERAL_NAME_print                      3164	1_1_0	EXIST::FUNCTION:
 CMS_ReceiptRequest_get0_values          3165	1_1_0	EXIST::FUNCTION:CMS
 a2i_ASN1_INTEGER                        3166	1_1_0	EXIST::FUNCTION:
-OCSP_sendreq_bio                        3167	1_1_0	EXIST::FUNCTION:
+OCSP_sendreq_bio                        3167	1_1_0	EXIST::FUNCTION:OCSP
 PKCS12_SAFEBAG_create_crl               3168	1_1_0	EXIST::FUNCTION:
 d2i_X509_NAME                           3169	1_1_0	EXIST::FUNCTION:
 IDEA_cfb64_encrypt                      3170	1_1_0	EXIST::FUNCTION:IDEA
@@ -3287,10 +3287,10 @@ i2a_ACCESS_DESCRIPTION                  3178	1_1_0	EXIST::FUNCTION:
 EC_KEY_set_enc_flags                    3179	1_1_0	EXIST::FUNCTION:EC
 i2d_PUBKEY_fp                           3180	1_1_0	EXIST::FUNCTION:STDIO
 b2i_PrivateKey_bio                      3181	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_add_ext                    3182	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_add_ext                    3182	1_1_0	EXIST::FUNCTION:OCSP
 SXNET_add_id_INTEGER                    3183	1_1_0	EXIST::FUNCTION:
 CTLOG_get0_public_key                   3184	1_1_0	EXIST::FUNCTION:CT
-OCSP_REQUEST_get_ext_by_OBJ             3185	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_get_ext_by_OBJ             3185	1_1_0	EXIST::FUNCTION:OCSP
 X509_NAME_oneline                       3186	1_1_0	EXIST::FUNCTION:
 X509V3_set_nconf                        3187	1_1_0	EXIST::FUNCTION:
 RSAPrivateKey_dup                       3188	1_1_0	EXIST::FUNCTION:RSA
@@ -3299,7 +3299,7 @@ EC_POINT_set_affine_coordinates_GFp     3190	1_1_0	EXIST::FUNCTION:EC
 X509_get_default_cert_file              3191	1_1_0	EXIST::FUNCTION:
 UI_method_set_flusher                   3192	1_1_0	EXIST::FUNCTION:UI
 RSA_new_method                          3193	1_1_0	EXIST::FUNCTION:RSA
-OCSP_request_verify                     3194	1_1_0	EXIST::FUNCTION:
+OCSP_request_verify                     3194	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_THREAD_run_once                  3195	1_1_0	EXIST::FUNCTION:
 TS_REQ_print_bio                        3196	1_1_0	EXIST::FUNCTION:TS
 SCT_get_version                         3197	1_1_0	EXIST::FUNCTION:CT
@@ -3307,7 +3307,7 @@ IDEA_set_encrypt_key                    3198	1_1_0	EXIST::FUNCTION:IDEA
 ENGINE_get_DH                           3199	1_1_0	EXIST::FUNCTION:ENGINE
 i2d_ASIdentifierChoice                  3200	1_1_0	EXIST::FUNCTION:RFC3779
 SRP_Calc_A                              3201	1_1_0	EXIST::FUNCTION:SRP
-OCSP_BASICRESP_add_ext                  3202	1_1_0	EXIST::FUNCTION:
+OCSP_BASICRESP_add_ext                  3202	1_1_0	EXIST::FUNCTION:OCSP
 EVP_idea_cfb64                          3203	1_1_0	EXIST::FUNCTION:IDEA
 PKCS12_newpass                          3204	1_1_0	EXIST::FUNCTION:
 EVP_aes_256_cbc_hmac_sha256             3205	1_1_0	EXIST::FUNCTION:
@@ -3321,11 +3321,11 @@ EVP_CIPHER_CTX_new                      3212	1_1_0	EXIST::FUNCTION:
 MD4_Final                               3213	1_1_0	EXIST::FUNCTION:MD4
 EVP_PKEY_id                             3214	1_1_0	EXIST::FUNCTION:
 CMS_RecipientInfo_get0_pkey_ctx         3215	1_1_0	EXIST::FUNCTION:CMS
-OCSP_REQINFO_free                       3216	1_1_0	EXIST::FUNCTION:
+OCSP_REQINFO_free                       3216	1_1_0	EXIST::FUNCTION:OCSP
 AUTHORITY_KEYID_new                     3217	1_1_0	EXIST::FUNCTION:
 i2d_DIST_POINT_NAME                     3218	1_1_0	EXIST::FUNCTION:
 OpenSSL_version_num                     3219	1_1_0	EXIST::FUNCTION:
-OCSP_CERTID_free                        3220	1_1_0	EXIST::FUNCTION:
+OCSP_CERTID_free                        3220	1_1_0	EXIST::FUNCTION:OCSP
 BIO_hex_string                          3221	1_1_0	EXIST::FUNCTION:
 X509_REQ_sign_ctx                       3222	1_1_0	EXIST::FUNCTION:
 CRYPTO_ocb128_init                      3223	1_1_0	EXIST::FUNCTION:OCB
@@ -3377,7 +3377,7 @@ BIO_vprintf                             3267	1_1_0	EXIST::FUNCTION:
 CMS_RecipientInfo_decrypt               3268	1_1_0	EXIST::FUNCTION:CMS
 RSA_generate_key                        3269	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_0_9_8,RSA
 PKCS7_set0_type_other                   3270	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_new                        3271	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_new                        3271	1_1_0	EXIST::FUNCTION:OCSP
 BIO_lookup                              3272	1_1_0	EXIST::FUNCTION:SOCK
 EC_GROUP_get0_cofactor                  3273	1_1_0	EXIST::FUNCTION:EC
 CRYPTO_THREADID_set_numeric             3274	1_1_0	NOEXIST::FUNCTION:
@@ -3390,7 +3390,7 @@ X509_NAME_get_text_by_OBJ               3280	1_1_0	EXIST::FUNCTION:
 RSA_padding_check_none                  3281	1_1_0	EXIST::FUNCTION:RSA
 CRYPTO_set_mem_debug                    3282	1_1_0	EXIST::FUNCTION:
 TS_VERIFY_CTX_init                      3283	1_1_0	EXIST::FUNCTION:TS
-OCSP_cert_id_new                        3284	1_1_0	EXIST::FUNCTION:
+OCSP_cert_id_new                        3284	1_1_0	EXIST::FUNCTION:OCSP
 GENERAL_SUBTREE_new                     3285	1_1_0	EXIST::FUNCTION:
 sk_push                                 3286	1_1_0	EXIST::FUNCTION:
 X509_LOOKUP_ctrl                        3287	1_1_0	EXIST::FUNCTION:
@@ -3440,7 +3440,7 @@ DSO_set_name_converter                  3329	1_1_0	NOEXIST::FUNCTION:
 OPENSSL_thread_stop                     3330	1_1_0	EXIST::FUNCTION:
 X509_policy_node_get0_parent            3331	1_1_0	EXIST::FUNCTION:
 X509_PKEY_free                          3332	1_1_0	EXIST::FUNCTION:
-OCSP_CRLID_new                          3333	1_1_0	EXIST::FUNCTION:
+OCSP_CRLID_new                          3333	1_1_0	EXIST::FUNCTION:OCSP
 CONF_dump_bio                           3334	1_1_0	EXIST::FUNCTION:
 d2i_PKCS8PrivateKey_fp                  3335	1_1_0	EXIST::FUNCTION:STDIO
 RSA_setup_blinding                      3336	1_1_0	EXIST::FUNCTION:RSA
@@ -3453,7 +3453,7 @@ EVP_PKEY_CTX_str2ctrl                   3342	1_1_0	EXIST::FUNCTION:
 CMS_SignerInfo_verify_content           3343	1_1_0	EXIST::FUNCTION:CMS
 ASN1_INTEGER_get_int64                  3344	1_1_0	EXIST::FUNCTION:
 ASN1_item_sign                          3345	1_1_0	EXIST::FUNCTION:
-OCSP_SERVICELOC_new                     3346	1_1_0	EXIST::FUNCTION:
+OCSP_SERVICELOC_new                     3346	1_1_0	EXIST::FUNCTION:OCSP
 ASN1_VISIBLESTRING_new                  3347	1_1_0	EXIST::FUNCTION:
 BN_set_flags                            3348	1_1_0	EXIST::FUNCTION:
 d2i_PrivateKey_bio                      3349	1_1_0	EXIST::FUNCTION:
@@ -3462,7 +3462,7 @@ ASN1_SEQUENCE_ANY_it                    3350	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 ASN1_UTCTIME_adj                        3351	1_1_0	EXIST::FUNCTION:
 BN_mod_sqrt                             3352	1_1_0	EXIST::FUNCTION:
 sk_is_sorted                            3353	1_1_0	EXIST::FUNCTION:
-OCSP_SIGNATURE_new                      3354	1_1_0	EXIST::FUNCTION:
+OCSP_SIGNATURE_new                      3354	1_1_0	EXIST::FUNCTION:OCSP
 EVP_PKEY_meth_get_paramgen              3355	1_1_0	EXIST::FUNCTION:
 X509_ATTRIBUTE_create_by_OBJ            3356	1_1_0	EXIST::FUNCTION:
 RSA_generate_key_ex                     3357	1_1_0	EXIST::FUNCTION:RSA
@@ -3471,7 +3471,7 @@ DIST_POINT_free                         3359	1_1_0	EXIST::FUNCTION:
 ESS_SIGNING_CERT_free                   3360	1_1_0	EXIST::FUNCTION:TS
 SCT_new_from_base64                     3361	1_1_0	EXIST::FUNCTION:CT
 OpenSSL_version                         3362	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_get_ext_by_OBJ          3363	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get_ext_by_OBJ          3363	1_1_0	EXIST::FUNCTION:OCSP
 ECDSA_SIG_get0                          3364	1_1_0	EXIST::FUNCTION:EC
 BN_set_word                             3365	1_1_0	EXIST::FUNCTION:
 ENGINE_set_flags                        3366	1_1_0	EXIST::FUNCTION:ENGINE
@@ -3511,13 +3511,13 @@ EVP_aes_128_ctr                         3397	1_1_0	EXIST::FUNCTION:
 EVP_PBE_find                            3398	1_1_0	EXIST::FUNCTION:
 SHA512_Transform                        3399	1_1_0	EXIST:!VMSVAX:FUNCTION:
 ERR_add_error_vdata                     3400	1_1_0	EXIST::FUNCTION:
-OCSP_REQUEST_get_ext                    3401	1_1_0	EXIST::FUNCTION:
+OCSP_REQUEST_get_ext                    3401	1_1_0	EXIST::FUNCTION:OCSP
 NETSCAPE_SPKAC_new                      3402	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_get_verify                3403	1_1_0	EXIST::FUNCTION:
 CRYPTO_128_wrap                         3404	1_1_0	EXIST::FUNCTION:
 X509_STORE_set_lookup_crls_cb           3405	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_meth_get_ctrl                3406	1_1_0	EXIST::FUNCTION:
-OCSP_REQ_CTX_set1_req                   3407	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_set1_req                   3407	1_1_0	EXIST::FUNCTION:OCSP
 CONF_imodule_get_usr_data               3408	1_1_0	EXIST::FUNCTION:
 CRYPTO_new_ex_data                      3409	1_1_0	EXIST::FUNCTION:
 PEM_read_PKCS8_PRIV_KEY_INFO            3410	1_1_0	EXIST::FUNCTION:
@@ -3540,7 +3540,7 @@ PEM_ASN1_read                           3426	1_1_0	EXIST::FUNCTION:STDIO
 SCT_get_log_entry_type                  3427	1_1_0	EXIST::FUNCTION:CT
 EVP_CIPHER_meth_get_init                3428	1_1_0	EXIST::FUNCTION:
 X509_ALGOR_free                         3429	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_get_ext_count           3430	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_get_ext_count           3430	1_1_0	EXIST::FUNCTION:OCSP
 EC_POINT_free                           3431	1_1_0	EXIST::FUNCTION:EC
 EVP_OpenFinal                           3432	1_1_0	EXIST::FUNCTION:RSA
 RAND_egd_bytes                          3433	1_1_0	EXIST::FUNCTION:EGD
@@ -3557,7 +3557,7 @@ X509_CRL_up_ref                         3443	1_1_0	EXIST::FUNCTION:
 EVP_EncodeFinal                         3444	1_1_0	EXIST::FUNCTION:
 X509_set_ex_data                        3445	1_1_0	EXIST::FUNCTION:
 ERR_get_next_error_library              3446	1_1_0	EXIST::FUNCTION:
-OCSP_RESPONSE_print                     3447	1_1_0	EXIST::FUNCTION:
+OCSP_RESPONSE_print                     3447	1_1_0	EXIST::FUNCTION:OCSP
 BN_get_rfc3526_prime_2048               3448	1_1_0	EXIST::FUNCTION:
 BIO_new_bio_pair                        3449	1_1_0	EXIST::FUNCTION:
 EC_GFp_nistp256_method                  3450	1_1_0	EXIST:!WIN32:FUNCTION:EC,EC_NISTP_64_GCC_128
@@ -3592,9 +3592,9 @@ CMAC_CTX_free                           3478	1_1_0	EXIST::FUNCTION:
 d2i_ESS_ISSUER_SERIAL                   3479	1_1_0	EXIST::FUNCTION:TS
 HMAC_CTX_set_flags                      3480	1_1_0	EXIST::FUNCTION:
 d2i_PKCS8_bio                           3481	1_1_0	EXIST::FUNCTION:
-OCSP_ONEREQ_get_ext_count               3482	1_1_0	EXIST::FUNCTION:
+OCSP_ONEREQ_get_ext_count               3482	1_1_0	EXIST::FUNCTION:OCSP
 PEM_read_bio_PKCS8_PRIV_KEY_INFO        3483	1_1_0	EXIST::FUNCTION:
-i2d_OCSP_BASICRESP                      3484	1_1_0	EXIST::FUNCTION:
+i2d_OCSP_BASICRESP                      3484	1_1_0	EXIST::FUNCTION:OCSP
 CMAC_Final                              3485	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_add_alias                    3486	1_1_0	EXIST::FUNCTION:
 BN_get_params                           3487	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_0_9_8
@@ -3683,7 +3683,7 @@ X509_ATTRIBUTE_it                       3569	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 X509_ATTRIBUTE_it                       3569	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 X509_ALGOR_it                           3570	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 X509_ALGOR_it                           3570	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-OCSP_CRLID_free                         3571	1_1_0	EXIST::FUNCTION:
+OCSP_CRLID_free                         3571	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_ccm128_aad                       3572	1_1_0	EXIST::FUNCTION:
 IPAddressFamily_new                     3573	1_1_0	EXIST::FUNCTION:RFC3779
 d2i_TS_ACCURACY                         3574	1_1_0	EXIST::FUNCTION:TS
@@ -3693,7 +3693,7 @@ EVP_camellia_256_cbc                    3577	1_1_0	EXIST::FUNCTION:CAMELLIA
 i2d_PROXY_POLICY                        3578	1_1_0	EXIST::FUNCTION:
 X509_subject_name_hash_old              3579	1_1_0	EXIST::FUNCTION:MD5
 PEM_read_bio_DSA_PUBKEY                 3580	1_1_0	EXIST::FUNCTION:DSA
-OCSP_cert_to_id                         3581	1_1_0	EXIST::FUNCTION:
+OCSP_cert_to_id                         3581	1_1_0	EXIST::FUNCTION:OCSP
 PEM_write_DSAparams                     3582	1_1_0	EXIST::FUNCTION:DSA
 ASN1_TIME_to_generalizedtime            3583	1_1_0	EXIST::FUNCTION:
 X509_CRL_get_ext_by_critical            3584	1_1_0	EXIST::FUNCTION:
@@ -3703,7 +3703,7 @@ PEM_write_RSAPublicKey                  3587	1_1_0	EXIST::FUNCTION:RSA
 EVP_MD_meth_dup                         3588	1_1_0	EXIST::FUNCTION:
 ENGINE_unregister_ciphers               3589	1_1_0	EXIST::FUNCTION:ENGINE
 X509_issuer_and_serial_cmp              3590	1_1_0	EXIST::FUNCTION:
-OCSP_response_create                    3591	1_1_0	EXIST::FUNCTION:
+OCSP_response_create                    3591	1_1_0	EXIST::FUNCTION:OCSP
 SHA224                                  3592	1_1_0	EXIST::FUNCTION:
 MD2_options                             3593	1_1_0	EXIST::FUNCTION:MD2
 CRYPTO_set_locking_callback             3594	1_1_0	NOEXIST::FUNCTION:
@@ -3790,7 +3790,7 @@ BIO_ADDRINFO_free                       3673	1_1_0	EXIST::FUNCTION:SOCK
 DES_ede3_cbc_encrypt                    3674	1_1_0	EXIST::FUNCTION:DES
 X509v3_asid_canonize                    3675	1_1_0	EXIST::FUNCTION:RFC3779
 i2d_ASIdOrRange                         3676	1_1_0	EXIST::FUNCTION:RFC3779
-OCSP_url_svcloc_new                     3677	1_1_0	EXIST::FUNCTION:
+OCSP_url_svcloc_new                     3677	1_1_0	EXIST::FUNCTION:OCSP
 CRYPTO_mem_ctrl                         3678	1_1_0	EXIST::FUNCTION:
 ASN1_verify                             3679	1_1_0	EXIST::FUNCTION:
 DSA_generate_parameters_ex              3680	1_1_0	EXIST::FUNCTION:DSA
@@ -3806,17 +3806,17 @@ EVP_PKEY_decrypt_old                    3689	1_1_0	EXIST::FUNCTION:
 ASN1_UTCTIME_cmp_time_t                 3690	1_1_0	EXIST::FUNCTION:
 X509_VERIFY_PARAM_set1_ip               3691	1_1_0	EXIST::FUNCTION:
 OTHERNAME_free                          3692	1_1_0	EXIST::FUNCTION:
-OCSP_REVOKEDINFO_free                   3693	1_1_0	EXIST::FUNCTION:
+OCSP_REVOKEDINFO_free                   3693	1_1_0	EXIST::FUNCTION:OCSP
 EVP_CIPHER_CTX_encrypting               3694	1_1_0	EXIST::FUNCTION:
 EC_KEY_can_sign                         3695	1_1_0	EXIST::FUNCTION:EC
 PEM_write_bio_RSAPublicKey              3696	1_1_0	EXIST::FUNCTION:RSA
 X509_CRL_set_lastUpdate                 3697	1_1_0	EXIST::FUNCTION:
-OCSP_sendreq_nbio                       3698	1_1_0	EXIST::FUNCTION:
+OCSP_sendreq_nbio                       3698	1_1_0	EXIST::FUNCTION:OCSP
 PKCS8_encrypt                           3699	1_1_0	EXIST::FUNCTION:
 i2d_PKCS7_fp                            3700	1_1_0	EXIST::FUNCTION:STDIO
 i2d_X509_REQ                            3701	1_1_0	EXIST::FUNCTION:
-OCSP_CRLID_it                           3702	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_CRLID_it                           3702	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_CRLID_it                           3702	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_CRLID_it                           3702	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 PEM_ASN1_write_bio                      3703	1_1_0	EXIST::FUNCTION:
 X509_get0_reject_objects                3704	1_1_0	EXIST::FUNCTION:
 BIO_set_tcp_ndelay                      3705	1_1_0	EXIST::FUNCTION:SOCK
@@ -3871,7 +3871,7 @@ ENGINE_unregister_EC                    3752	1_1_0	EXIST::FUNCTION:ENGINE
 X509v3_get_ext_count                    3753	1_1_0	EXIST::FUNCTION:
 UI_OpenSSL                              3754	1_1_0	EXIST::FUNCTION:UI
 CRYPTO_ccm128_decrypt                   3755	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_RESPDATA                       3756	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_RESPDATA                       3756	1_1_0	EXIST::FUNCTION:OCSP
 BIO_set_callback                        3757	1_1_0	EXIST::FUNCTION:
 BN_GF2m_poly2arr                        3758	1_1_0	EXIST::FUNCTION:EC2M
 CMS_unsigned_get_attr_count             3759	1_1_0	EXIST::FUNCTION:CMS
@@ -3890,9 +3890,9 @@ PKCS7_ATTR_SIGN_it                      3771	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 PKCS7_ATTR_SIGN_it                      3771	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 EVP_MD_CTX_copy                         3772	1_1_0	EXIST::FUNCTION:
 ENGINE_set_ctrl_function                3773	1_1_0	EXIST::FUNCTION:ENGINE
-OCSP_id_get0_info                       3774	1_1_0	EXIST::FUNCTION:
+OCSP_id_get0_info                       3774	1_1_0	EXIST::FUNCTION:OCSP
 BIO_ADDRINFO_next                       3775	1_1_0	EXIST::FUNCTION:SOCK
-OCSP_RESPBYTES_free                     3776	1_1_0	EXIST::FUNCTION:
+OCSP_RESPBYTES_free                     3776	1_1_0	EXIST::FUNCTION:OCSP
 EC_KEY_METHOD_set_init                  3777	1_1_0	EXIST::FUNCTION:EC
 EVP_PKEY_asn1_copy                      3778	1_1_0	EXIST::FUNCTION:
 RSA_PSS_PARAMS_it                       3779	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RSA
@@ -3938,8 +3938,8 @@ d2i_RSA_PUBKEY                          3815	1_1_0	EXIST::FUNCTION:RSA
 PKCS12_gen_mac                          3816	1_1_0	EXIST::FUNCTION:
 ERR_load_ENGINE_strings                 3817	1_1_0	EXIST::FUNCTION:ENGINE
 ERR_load_CT_strings                     3818	1_1_0	EXIST::FUNCTION:CT
-OCSP_ONEREQ_it                          3819	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_ONEREQ_it                          3819	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_ONEREQ_it                          3819	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_ONEREQ_it                          3819	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 X509_PURPOSE_get_by_sname               3820	1_1_0	EXIST::FUNCTION:
 X509_PURPOSE_set                        3821	1_1_0	EXIST::FUNCTION:
 BN_mod_inverse                          3822	1_1_0	EXIST::FUNCTION:
@@ -3961,20 +3961,20 @@ BN_GF2m_mod_inv_arr                     3837	1_1_0	EXIST::FUNCTION:EC2M
 X509_REQ_get1_email                     3838	1_1_0	EXIST::FUNCTION:
 EC_KEY_print                            3839	1_1_0	EXIST::FUNCTION:EC
 i2d_ASN1_INTEGER                        3840	1_1_0	EXIST::FUNCTION:
-OCSP_SINGLERESP_add1_ext_i2d            3841	1_1_0	EXIST::FUNCTION:
+OCSP_SINGLERESP_add1_ext_i2d            3841	1_1_0	EXIST::FUNCTION:OCSP
 PKCS7_add_signed_attribute              3842	1_1_0	EXIST::FUNCTION:
 i2d_PrivateKey_bio                      3843	1_1_0	EXIST::FUNCTION:
 RSA_padding_add_PKCS1_type_1            3844	1_1_0	EXIST::FUNCTION:RSA
 i2d_re_X509_tbs                         3845	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_iv_length                    3846	1_1_0	EXIST::FUNCTION:
-OCSP_REQ_CTX_get0_mem_bio               3847	1_1_0	EXIST::FUNCTION:
+OCSP_REQ_CTX_get0_mem_bio               3847	1_1_0	EXIST::FUNCTION:OCSP
 i2d_PKCS8PrivateKeyInfo_bio             3848	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_CERTID                         3849	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_CERTID                         3849	1_1_0	EXIST::FUNCTION:OCSP
 EVP_CIPHER_meth_set_init                3850	1_1_0	EXIST::FUNCTION:
 RIPEMD160_Final                         3851	1_1_0	EXIST::FUNCTION:RMD160
 NETSCAPE_SPKI_free                      3852	1_1_0	EXIST::FUNCTION:
 BIO_asn1_get_prefix                     3853	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_ONEREQ                         3854	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_ONEREQ                         3854	1_1_0	EXIST::FUNCTION:OCSP
 EVP_PKEY_asn1_set_security_bits         3855	1_1_0	EXIST::FUNCTION:
 i2d_CERTIFICATEPOLICIES                 3856	1_1_0	EXIST::FUNCTION:
 i2d_X509_CERT_AUX                       3857	1_1_0	EXIST::FUNCTION:
@@ -3982,8 +3982,8 @@ i2o_ECPublicKey                         3858	1_1_0	EXIST::FUNCTION:EC
 PKCS12_SAFEBAG_create0_pkcs8            3859	1_1_0	EXIST::FUNCTION:
 OBJ_get0_data                           3860	1_1_0	EXIST::FUNCTION:
 EC_GROUP_get0_seed                      3861	1_1_0	EXIST::FUNCTION:EC
-OCSP_REQUEST_it                         3862	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_REQUEST_it                         3862	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_REQUEST_it                         3862	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_REQUEST_it                         3862	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 ASRange_it                              3863	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:RFC3779
 ASRange_it                              3863	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RFC3779
 i2d_TS_RESP                             3864	1_1_0	EXIST::FUNCTION:TS
@@ -3997,7 +3997,7 @@ RSA_OAEP_PARAMS_it                      3871	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 RSA_OAEP_PARAMS_it                      3871	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:RSA
 BN_bn2mpi                               3872	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_cleanup                  3873	1_1_0	EXIST::FUNCTION:
-OCSP_onereq_get0_id                     3874	1_1_0	EXIST::FUNCTION:
+OCSP_onereq_get0_id                     3874	1_1_0	EXIST::FUNCTION:OCSP
 X509_get_default_cert_dir               3875	1_1_0	EXIST::FUNCTION:
 DSO_get_method                          3876	1_1_0	NOEXIST::FUNCTION:
 PROXY_POLICY_free                       3877	1_1_0	EXIST::FUNCTION:
@@ -4019,13 +4019,13 @@ PBKDF2PARAM_new                         3891	1_1_0	EXIST::FUNCTION:
 ENGINE_set_RSA                          3892	1_1_0	EXIST::FUNCTION:ENGINE
 i2d_X509_ATTRIBUTE                      3893	1_1_0	EXIST::FUNCTION:
 PKCS7_ctrl                              3894	1_1_0	EXIST::FUNCTION:
-OCSP_REVOKEDINFO_it                     3895	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
-OCSP_REVOKEDINFO_it                     3895	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
+OCSP_REVOKEDINFO_it                     3895	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:OCSP
+OCSP_REVOKEDINFO_it                     3895	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:OCSP
 X509V3_set_ctx                          3896	1_1_0	EXIST::FUNCTION:
 ASN1_ENUMERATED_set_int64               3897	1_1_0	EXIST::FUNCTION:
 o2i_SCT                                 3898	1_1_0	EXIST::FUNCTION:CT
 CRL_DIST_POINTS_free                    3899	1_1_0	EXIST::FUNCTION:
-d2i_OCSP_SINGLERESP                     3900	1_1_0	EXIST::FUNCTION:
+d2i_OCSP_SINGLERESP                     3900	1_1_0	EXIST::FUNCTION:OCSP
 EVP_CIPHER_CTX_num                      3901	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_verify_recover_init            3902	1_1_0	EXIST::FUNCTION:
 SHA512_Init                             3903	1_1_0	EXIST:!VMSVAX:FUNCTION:


More information about the openssl-commits mailing list