[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Fri Mar 18 19:17:49 UTC 2016


The branch master has been updated
       via  b4ae8861214b5d73cbbd0e33e8a8be37f6a4c009 (commit)
       via  f38526357e1423ab5712586dee40c1c728af526d (commit)
      from  03f03129361683ee3c5bab5aa82d7060cdfc2bea (commit)


- Log -----------------------------------------------------------------
commit b4ae8861214b5d73cbbd0e33e8a8be37f6a4c009
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Mar 18 20:06:45 2016 +0100

    make update
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

commit f38526357e1423ab5712586dee40c1c728af526d
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Mar 18 20:06:29 2016 +0100

    Implement support for no-ts
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

Summary of changes:
 apps/progs.h         |   2 +
 apps/progs.pl        |   2 +
 apps/ts.c            |  44 +++---
 crypto/err/err_all.c |   2 +
 include/openssl/ts.h |   2 +
 util/libcrypto.num   | 386 +++++++++++++++++++++++++--------------------------
 util/mkdef.pl        |   2 +
 7 files changed, 227 insertions(+), 213 deletions(-)

diff --git a/apps/progs.h b/apps/progs.h
index a996353..3bdf821 100644
--- a/apps/progs.h
+++ b/apps/progs.h
@@ -198,7 +198,9 @@ static FUNCTION functions[] = {
 #ifndef OPENSSL_NO_SRP
     { FT_general, "srp", srp_main, srp_options },
 #endif
+#ifndef OPENSSL_NO_TS
     { FT_general, "ts", ts_main, ts_options },
+#endif
     { FT_general, "verify", verify_main, verify_options },
     { FT_general, "version", version_main, version_options },
     { FT_general, "x509", x509_main, x509_options },
diff --git a/apps/progs.pl b/apps/progs.pl
index b601fef..11bcbef 100644
--- a/apps/progs.pl
+++ b/apps/progs.pl
@@ -75,6 +75,8 @@ foreach (@ARGV) {
 		print "#ifndef OPENSSL_NO_OCSP\n${str}#endif\n";
 	} elsif (/^srp$/) {
 		print "#ifndef OPENSSL_NO_SRP\n${str}#endif\n";
+	} elsif (/^ts$/) {
+		print "#ifndef OPENSSL_NO_TS\n${str}#endif\n";
 	} else {
 		print $str;
 	}
diff --git a/apps/ts.c b/apps/ts.c
index b287e26..1872422 100644
--- a/apps/ts.c
+++ b/apps/ts.c
@@ -56,25 +56,28 @@
  *
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include "apps.h"
-#include <openssl/bio.h>
-#include <openssl/err.h>
-#include <openssl/pem.h>
-#include <openssl/rand.h>
-#include <openssl/ts.h>
-#include <openssl/bn.h>
+#include <openssl/opensslconf.h>
+#ifndef OPENSSL_NO_TS
+
+# include <stdio.h>
+# include <stdlib.h>
+# include <string.h>
+# include "apps.h"
+# include <openssl/bio.h>
+# include <openssl/err.h>
+# include <openssl/pem.h>
+# include <openssl/rand.h>
+# include <openssl/ts.h>
+# include <openssl/bn.h>
 
 /* Request nonce length, in bits (must be a multiple of 8). */
-#define NONCE_LENGTH            64
+# define NONCE_LENGTH            64
 
 /* Name of config entry that defines the OID file. */
-#define ENV_OID_FILE            "oid_file"
+# define ENV_OID_FILE            "oid_file"
 
 /* Is |EXACTLY_ONE| of three pointers set? */
-#define EXACTLY_ONE(a, b, c) \
+# define EXACTLY_ONE(a, b, c) \
         (( a && !b && !c) || \
          ( b && !a && !c) || \
          ( c && !a && !b))
@@ -159,9 +162,9 @@ OPTIONS ts_options[] = {
     {"CAfile", OPT_CAFILE, '<', "File with trusted CA certs"},
     {"untrusted", OPT_UNTRUSTED, '<', "File with untrusted certs"},
     {"", OPT_MD, '-', "Any supported digest"},
-#ifndef OPENSSL_NO_ENGINE
+# ifndef OPENSSL_NO_ENGINE
     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
-#endif
+# endif
     {OPT_HELP_STR, 1, '-', "\nOptions specific to 'ts -verify': \n"},
     OPT_V_OPTIONS,
     {OPT_HELP_STR, 1, '-', "\n"},
@@ -182,11 +185,11 @@ static char* opt_helplist[] = {
     "          [-signer tsa_cert.pem] [-inkey private_key.pem]",
     "          [-chain certs_file.pem] [-tspolicy oid]",
     "          [-in file] [-token_in] [-out file] [-token_out]",
-#ifndef OPENSSL_NO_ENGINE
+# ifndef OPENSSL_NO_ENGINE
     "          [-text]",
-#else
+# else
     "          [-text] [-engine id]",
-#endif
+# endif
     "  or",
     "ts -verify -CApath dir -CAfile file.pem -untrusted file.pem",
     "           [-data file] [-digest hexstring]",
@@ -735,10 +738,10 @@ static TS_RESP *create_response(CONF *conf, const char *section, char *engine,
         goto end;
     if (!TS_CONF_set_serial(conf, section, serial_cb, resp_ctx))
         goto end;
-#ifndef OPENSSL_NO_ENGINE
+# ifndef OPENSSL_NO_ENGINE
     if (!TS_CONF_set_crypto_device(conf, section, engine))
         goto end;
-#endif
+# endif
     if (!TS_CONF_set_signer_cert(conf, section, signer, resp_ctx))
         goto end;
     if (!TS_CONF_set_certs(conf, section, chain, resp_ctx))
@@ -1026,3 +1029,4 @@ static int verify_cb(int ok, X509_STORE_CTX *ctx)
 {
     return ok;
 }
+#endif
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index be6a30e..8939c08 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -142,7 +142,9 @@ void err_load_crypto_strings_intern(void)
     ERR_load_PKCS12_strings();
     ERR_load_RAND_strings();
     ERR_load_DSO_strings();
+# ifndef OPENSSL_NO_TS
     ERR_load_TS_strings();
+# endif
 # ifndef OPENSSL_NO_ENGINE
     ERR_load_ENGINE_strings();
 # endif
diff --git a/include/openssl/ts.h b/include/openssl/ts.h
index c5bd80a..ca3969f 100644
--- a/include/openssl/ts.h
+++ b/include/openssl/ts.h
@@ -60,6 +60,7 @@
 # define HEADER_TS_H
 
 # include <openssl/opensslconf.h>
+# ifndef OPENSSL_NO_TS
 # include <openssl/symhacks.h>
 # include <openssl/buffer.h>
 # include <openssl/evp.h>
@@ -700,3 +701,4 @@ void ERR_load_TS_strings(void);
 }
 #endif
 #endif
+#endif
diff --git a/util/libcrypto.num b/util/libcrypto.num
index 0a033c6..fff2f84 100644
--- a/util/libcrypto.num
+++ b/util/libcrypto.num
@@ -4,13 +4,13 @@ PEM_read_bio_NETSCAPE_CERT_SEQUENCE     3	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_get_chain                4	1_1_0	EXIST::FUNCTION:
 COMP_expand_block                       5	1_1_0	EXIST::FUNCTION:COMP
 X509V3_get_string                       6	1_1_0	EXIST::FUNCTION:
-TS_MSG_IMPRINT_free                     7	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_free                     7	1_1_0	EXIST::FUNCTION:TS
 DES_xcbc_encrypt                        8	1_1_0	EXIST::FUNCTION:DES
-TS_RESP_CTX_new                         9	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_new                         9	1_1_0	EXIST::FUNCTION:TS
 PKCS5_PBE_add                           10	1_1_0	EXIST::FUNCTION:
 i2d_DSAparams                           11	1_1_0	EXIST::FUNCTION:DSA
 X509_NAME_get0_der                      12	1_1_0	EXIST::FUNCTION:
-i2d_ESS_ISSUER_SERIAL                   13	1_1_0	EXIST::FUNCTION:
+i2d_ESS_ISSUER_SERIAL                   13	1_1_0	EXIST::FUNCTION:TS
 X509at_get_attr_by_NID                  14	1_1_0	EXIST::FUNCTION:
 X509_PUBKEY_set0_param                  15	1_1_0	EXIST::FUNCTION:
 PKCS12_it                               16	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
@@ -21,7 +21,7 @@ SRP_VBASE_get_by_user                   19	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_1_
 CONF_modules_free                       20	1_1_0	EXIST::FUNCTION:
 Camellia_cfb128_encrypt                 21	1_1_0	EXIST::FUNCTION:CAMELLIA
 DES_ncbc_encrypt                        22	1_1_0	EXIST::FUNCTION:DES
-TS_REQ_get_ext_count                    23	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_ext_count                    23	1_1_0	EXIST::FUNCTION:TS
 EVP_aes_128_ocb                         24	1_1_0	EXIST::FUNCTION:AES,OCB
 ASN1_item_d2i_fp                        25	1_1_0	EXIST::FUNCTION:STDIO
 BN_lshift                               26	1_1_0	EXIST::FUNCTION:
@@ -89,7 +89,7 @@ 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:
-TS_REQ_get_ext_by_NID                   90	1_1_0	EXIST::FUNCTION:
+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:
 DSA_size                                93	1_1_0	EXIST::FUNCTION:DSA
@@ -112,7 +112,7 @@ 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:
 RSA_PSS_PARAMS_free                     112	1_1_0	EXIST::FUNCTION:RSA
-i2d_TS_MSG_IMPRINT                      113	1_1_0	EXIST::FUNCTION:
+i2d_TS_MSG_IMPRINT                      113	1_1_0	EXIST::FUNCTION:TS
 EC_POINT_mul                            114	1_1_0	EXIST::FUNCTION:EC
 WHIRLPOOL_Final                         115	1_1_0	EXIST::FUNCTION:WHIRLPOOL
 CMS_get1_ReceiptRequest                 116	1_1_0	EXIST::FUNCTION:CMS
@@ -158,7 +158,7 @@ BN_is_prime_fasttest_ex                 155	1_1_0	EXIST::FUNCTION:
 ERR_load_PKCS12_strings                 156	1_1_0	EXIST::FUNCTION:
 EVP_sha384                              157	1_1_0	EXIST:!VMSVAX:FUNCTION:
 i2d_DHparams                            158	1_1_0	EXIST::FUNCTION:DH
-TS_VERIFY_CTX_set_store                 159	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_set_store                 159	1_1_0	EXIST::FUNCTION:TS
 PKCS12_verify_mac                       160	1_1_0	EXIST::FUNCTION:
 v3_addr_canonize                        161	1_1_0	EXIST::FUNCTION:RFC3779
 ASN1_item_ex_i2d                        162	1_1_0	EXIST::FUNCTION:
@@ -191,7 +191,7 @@ PEM_write_bio_ECPrivateKey              187	1_1_0	EXIST::FUNCTION:EC
 BN_consttime_swap                       188	1_1_0	EXIST::FUNCTION:
 BIO_f_buffer                            189	1_1_0	EXIST::FUNCTION:
 CMS_SignerInfo_get0_signer_id           190	1_1_0	EXIST::FUNCTION:CMS
-TS_TST_INFO_new                         191	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_new                         191	1_1_0	EXIST::FUNCTION:TS
 X509_REQ_check_private_key              192	1_1_0	EXIST::FUNCTION:
 EVP_DigestInit                          193	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_find                      194	1_1_0	EXIST::FUNCTION:
@@ -284,7 +284,7 @@ DSA_print_fp                            278	1_1_0	EXIST::FUNCTION:DSA,STDIO
 X509_get_ext_d2i                        279	1_1_0	EXIST::FUNCTION:
 d2i_PKCS7_ENC_CONTENT                   280	1_1_0	EXIST::FUNCTION:
 BUF_MEM_grow                            281	1_1_0	EXIST::FUNCTION:
-TS_REQ_free                             282	1_1_0	EXIST::FUNCTION:
+TS_REQ_free                             282	1_1_0	EXIST::FUNCTION:TS
 PEM_read_DHparams                       283	1_1_0	EXIST::FUNCTION:DH
 RSA_private_decrypt                     284	1_1_0	EXIST::FUNCTION:RSA
 X509V3_EXT_get_nid                      285	1_1_0	EXIST::FUNCTION:
@@ -328,7 +328,7 @@ d2i_OCSP_RESPID                         322	1_1_0	EXIST::FUNCTION:
 BIO_s_accept                            323	1_1_0	EXIST::FUNCTION:
 EVP_whirlpool                           324	1_1_0	EXIST::FUNCTION:WHIRLPOOL
 OCSP_ONEREQ_get1_ext_d2i                325	1_1_0	EXIST::FUNCTION:
-d2i_ESS_SIGNING_CERT                    326	1_1_0	EXIST::FUNCTION:
+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:
 RAND_load_file                          329	1_1_0	EXIST::FUNCTION:
@@ -340,11 +340,11 @@ s2i_ASN1_IA5STRING                      334	1_1_0	EXIST::FUNCTION:
 UI_get_ex_data                          335	1_1_0	EXIST::FUNCTION:
 EVP_EncryptUpdate                       336	1_1_0	EXIST::FUNCTION:
 SRP_create_verifier                     337	1_1_0	EXIST::FUNCTION:SRP
-TS_TST_INFO_print_bio                   338	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_print_bio                   338	1_1_0	EXIST::FUNCTION:TS
 X509_NAME_get_index_by_OBJ              339	1_1_0	EXIST::FUNCTION:
 BIO_get_host_ip                         340	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_1_1_0
 PKCS7_add_certificate                   341	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_ext                          342	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_ext                          342	1_1_0	EXIST::FUNCTION:TS
 X509_NAME_cmp                           343	1_1_0	EXIST::FUNCTION:
 DIST_POINT_it                           344	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 DIST_POINT_it                           344	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
@@ -353,7 +353,7 @@ sk_sort                                 346	1_1_0	EXIST::FUNCTION:
 CTLOG_STORE_load_file                   347	1_1_0	EXIST::FUNCTION:
 ASN1_SEQUENCE_it                        348	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_SEQUENCE_it                        348	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-TS_RESP_CTX_get_tst_info                349	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_get_tst_info                349	1_1_0	EXIST::FUNCTION:TS
 RC4                                     350	1_1_0	EXIST::FUNCTION:RC4
 DSO_get_loaded_filename                 351	1_1_0	EXIST::FUNCTION:
 PKCS7_stream                            352	1_1_0	EXIST::FUNCTION:
@@ -383,7 +383,7 @@ UI_get_input_flags                      374	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_REQ_add_nconf                375	1_1_0	EXIST::FUNCTION:
 v3_asid_subset                          376	1_1_0	EXIST::FUNCTION:RFC3779
 RSA_check_key_ex                        377	1_1_0	EXIST::FUNCTION:RSA
-d2i_TS_MSG_IMPRINT_bio                  378	1_1_0	EXIST::FUNCTION:
+d2i_TS_MSG_IMPRINT_bio                  378	1_1_0	EXIST::FUNCTION:TS
 i2d_ASN1_TYPE                           379	1_1_0	EXIST::FUNCTION:
 EVP_aes_256_wrap_pad                    380	1_1_0	EXIST::FUNCTION:AES
 CMS_RecipientInfo_kekri_id_cmp          381	1_1_0	EXIST::FUNCTION:CMS
@@ -412,7 +412,7 @@ PKCS7_SIGNED_new                        403	1_1_0	EXIST::FUNCTION:
 CMS_get0_eContentType                   404	1_1_0	EXIST::FUNCTION:CMS
 HMAC_Final                              405	1_1_0	EXIST::FUNCTION:
 X509_CRL_delete_ext                     406	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_ordering                407	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_ordering                407	1_1_0	EXIST::FUNCTION:TS
 X509_get_extended_key_usage             408	1_1_0	EXIST::FUNCTION:
 ERR_print_errors                        409	1_1_0	EXIST::FUNCTION:
 X509_REVOKED_set_revocationDate         410	1_1_0	EXIST::FUNCTION:
@@ -423,7 +423,7 @@ BN_to_montgomery                        414	1_1_0	EXIST::FUNCTION:
 X509_OBJECT_free_contents               415	1_1_0	EXIST::FUNCTION:
 EVP_camellia_128_cfb8                   416	1_1_0	EXIST::FUNCTION:CAMELLIA
 EC_KEY_METHOD_free                      417	1_1_0	EXIST::FUNCTION:EC
-TS_TST_INFO_set_policy_id               418	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_set_policy_id               418	1_1_0	EXIST::FUNCTION:TS
 d2i_EXTENDED_KEY_USAGE                  419	1_1_0	EXIST::FUNCTION:
 ASYNC_unblock_pause                     420	1_1_0	EXIST::FUNCTION:
 i2d_X509_VAL                            421	1_1_0	EXIST::FUNCTION:
@@ -443,7 +443,7 @@ CERTIFICATEPOLICIES_new                 434	1_1_0	EXIST::FUNCTION:
 BIO_dump_fp                             435	1_1_0	EXIST::FUNCTION:STDIO
 BIO_set_flags                           436	1_1_0	EXIST::FUNCTION:
 BN_is_one                               437	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_def_policy                  438	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_def_policy                  438	1_1_0	EXIST::FUNCTION:TS
 DSA_free                                439	1_1_0	EXIST::FUNCTION:DSA
 BN_GENCB_new                            440	1_1_0	EXIST::FUNCTION:
 X509_VAL_new                            441	1_1_0	EXIST::FUNCTION:
@@ -461,7 +461,7 @@ RSA_X931_generate_key_ex                452	1_1_0	EXIST::FUNCTION:RSA
 X509_get_serialNumber                   453	1_1_0	EXIST::FUNCTION:
 BIO_sock_should_retry                   454	1_1_0	EXIST::FUNCTION:
 ENGINE_get_digests                      455	1_1_0	EXIST::FUNCTION:ENGINE
-TS_MSG_IMPRINT_get_algo                 456	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_get_algo                 456	1_1_0	EXIST::FUNCTION:TS
 DH_new_method                           457	1_1_0	EXIST::FUNCTION:DH
 BF_ecb_encrypt                          458	1_1_0	EXIST::FUNCTION:BF
 PEM_write_bio_DHparams                  459	1_1_0	EXIST::FUNCTION:DH
@@ -525,7 +525,7 @@ 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:
 X509V3_add1_i2d                         516	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_set_serial                  517	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:
 CRYPTO_get_dynlock_lock_callback        520	1_1_0	NOEXIST::FUNCTION:
@@ -536,14 +536,14 @@ EC_GROUP_set_generator                  524	1_1_0	EXIST::FUNCTION:EC
 CRYPTO_memdup                           525	1_1_0	EXIST::FUNCTION:
 DH_generate_parameters                  526	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_0_9_8,DH
 BN_set_negative                         527	1_1_0	EXIST::FUNCTION:
-i2d_TS_RESP_bio                         528	1_1_0	EXIST::FUNCTION:
+i2d_TS_RESP_bio                         528	1_1_0	EXIST::FUNCTION:TS
 ASYNC_WAIT_CTX_set_wait_fd              529	1_1_0	EXIST::FUNCTION:
 ERR_func_error_string                   530	1_1_0	EXIST::FUNCTION:
 ASN1_STRING_data                        531	1_1_0	EXIST::FUNCTION:
 X509_CRL_add1_ext_i2d                   532	1_1_0	EXIST::FUNCTION:
-i2d_TS_TST_INFO                         533	1_1_0	EXIST::FUNCTION:
+i2d_TS_TST_INFO                         533	1_1_0	EXIST::FUNCTION:TS
 OBJ_sigid_free                          534	1_1_0	EXIST::FUNCTION:
-TS_STATUS_INFO_get0_status              535	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_get0_status              535	1_1_0	EXIST::FUNCTION:TS
 EC_KEY_get_flags                        536	1_1_0	EXIST::FUNCTION:EC
 ASN1_TYPE_cmp                           537	1_1_0	EXIST::FUNCTION:
 i2d_RSAPublicKey                        538	1_1_0	EXIST::FUNCTION:RSA
@@ -591,7 +591,7 @@ CRYPTO_set_add_lock_callback            578	1_1_0	NOEXIST::FUNCTION:
 EVP_camellia_128_cfb128                 579	1_1_0	EXIST::FUNCTION:CAMELLIA
 DH_compute_key_padded                   580	1_1_0	EXIST::FUNCTION:DH
 ERR_load_CONF_strings                   581	1_1_0	EXIST::FUNCTION:
-ESS_ISSUER_SERIAL_dup                   582	1_1_0	EXIST::FUNCTION:
+ESS_ISSUER_SERIAL_dup                   582	1_1_0	EXIST::FUNCTION:TS
 BN_GF2m_mod_exp_arr                     583	1_1_0	EXIST::FUNCTION:EC2M
 ASN1_UTF8STRING_free                    584	1_1_0	EXIST::FUNCTION:
 BN_X931_generate_prime_ex               585	1_1_0	EXIST::FUNCTION:
@@ -600,7 +600,7 @@ EVP_DecryptInit                         587	1_1_0	EXIST::FUNCTION:
 BN_bin2bn                               588	1_1_0	EXIST::FUNCTION:
 X509_subject_name_hash                  589	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_meth_set_flags               590	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_clock_precision_digits      591	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_clock_precision_digits      591	1_1_0	EXIST::FUNCTION:TS
 ASN1_TYPE_set                           592	1_1_0	EXIST::FUNCTION:
 i2d_PKCS8_PRIV_KEY_INFO                 593	1_1_0	EXIST::FUNCTION:
 i2d_PKCS7_bio                           594	1_1_0	EXIST::FUNCTION:
@@ -642,7 +642,7 @@ RSA_OAEP_PARAMS_new                     626	1_1_0	EXIST::FUNCTION:RSA
 X509_NAME_free                          627	1_1_0	EXIST::FUNCTION:
 PKCS12_set_mac                          628	1_1_0	EXIST::FUNCTION:
 UI_get0_result_string                   629	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_add_policy                  630	1_1_0	EXIST::FUNCTION:
+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
@@ -665,12 +665,12 @@ CRYPTO_secure_malloc_init               648	1_1_0	EXIST::FUNCTION:
 DSAparams_dup                           649	1_1_0	EXIST::FUNCTION:DSA
 PKCS8_PRIV_KEY_INFO_new                 650	1_1_0	EXIST::FUNCTION:
 CRYPTO_THREADID_hash                    651	1_1_0	NOEXIST::FUNCTION:
-TS_RESP_verify_token                    652	1_1_0	EXIST::FUNCTION:
+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:
-ESS_CERT_ID_free                        657	1_1_0	EXIST::FUNCTION:
+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:
@@ -700,7 +700,7 @@ DSO_global_lookup                       682	1_1_0	EXIST::FUNCTION:
 PKCS7_SIGNER_INFO_it                    683	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 PKCS7_SIGNER_INFO_it                    683	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 CRYPTO_ocb128_copy_ctx                  684	1_1_0	EXIST::FUNCTION:OCB
-TS_REQ_get_ext_d2i                      685	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_ext_d2i                      685	1_1_0	EXIST::FUNCTION:TS
 AES_ige_encrypt                         686	1_1_0	EXIST::FUNCTION:AES
 d2i_SXNET                               687	1_1_0	EXIST::FUNCTION:
 CTLOG_get0_log_id                       688	1_1_0	EXIST::FUNCTION:
@@ -714,7 +714,7 @@ 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:
 DH_compute_key                          698	1_1_0	EXIST::FUNCTION:DH
-TS_RESP_CTX_set_signer_key              699	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_signer_key              699	1_1_0	EXIST::FUNCTION:TS
 i2d_DSAPrivateKey_bio                   700	1_1_0	EXIST::FUNCTION:DSA
 CT_verify_at_least_one_good_sct         701	1_1_0	EXIST::FUNCTION:
 ASN1_item_d2i                           702	1_1_0	EXIST::FUNCTION:
@@ -737,11 +737,11 @@ OBJ_ln2nid                              717	1_1_0	EXIST::FUNCTION:
 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:
-TS_RESP_get_token                       721	1_1_0	EXIST::FUNCTION:
+TS_RESP_get_token                       721	1_1_0	EXIST::FUNCTION:TS
 OCSP_RESPID_new                         722	1_1_0	EXIST::FUNCTION:
 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:
+d2i_TS_RESP_bio                         724	1_1_0	EXIST::FUNCTION:TS
 PEM_write_X509_REQ                      725	1_1_0	EXIST::FUNCTION:
 BIO_snprintf                            726	1_1_0	EXIST::FUNCTION:
 EC_POINT_hex2point                      727	1_1_0	EXIST::FUNCTION:EC
@@ -764,12 +764,12 @@ OCSP_BASICRESP_free                     743	1_1_0	EXIST::FUNCTION:
 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:
-TS_TST_INFO_get_ext_d2i                 747	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_ext_d2i                 747	1_1_0	EXIST::FUNCTION:TS
 RSA_check_key                           748	1_1_0	EXIST::FUNCTION:RSA
-TS_MSG_IMPRINT_set_algo                 749	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_set_algo                 749	1_1_0	EXIST::FUNCTION:TS
 BN_nist_mod_521                         750	1_1_0	EXIST::FUNCTION:
 CRYPTO_THREAD_get_local                 751	1_1_0	EXIST::FUNCTION:
-PKCS7_to_TS_TST_INFO                    752	1_1_0	EXIST::FUNCTION:
+PKCS7_to_TS_TST_INFO                    752	1_1_0	EXIST::FUNCTION:TS
 X509_STORE_CTX_new                      753	1_1_0	EXIST::FUNCTION:
 CTLOG_STORE_new                         754	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_meth_set_cleanup             755	1_1_0	EXIST::FUNCTION:
@@ -788,7 +788,7 @@ AES_decrypt                             767	1_1_0	EXIST::FUNCTION:AES
 BIO_fd_should_retry                     768	1_1_0	EXIST::FUNCTION:
 ASN1_STRING_new                         769	1_1_0	EXIST::FUNCTION:
 ENGINE_init                             770	1_1_0	EXIST::FUNCTION:ENGINE
-TS_RESP_CTX_add_flags                   771	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_add_flags                   771	1_1_0	EXIST::FUNCTION:TS
 BIO_gethostbyname                       772	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_1_1_0
 X509V3_EXT_add                          773	1_1_0	EXIST::FUNCTION:
 UI_add_verify_string                    774	1_1_0	EXIST::FUNCTION:
@@ -840,7 +840,7 @@ i2d_OCSP_REVOKEDINFO                    819	1_1_0	EXIST::FUNCTION:
 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:
-TS_REQ_delete_ext                       823	1_1_0	EXIST::FUNCTION:
+TS_REQ_delete_ext                       823	1_1_0	EXIST::FUNCTION:TS
 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
@@ -872,7 +872,7 @@ d2i_NETSCAPE_SPKAC                      849	1_1_0	EXIST::FUNCTION:
 DSO_set_default_method                  850	1_1_0	EXIST::FUNCTION:
 ASN1_TIME_check                         851	1_1_0	EXIST::FUNCTION:
 PKCS7_DIGEST_new                        852	1_1_0	EXIST::FUNCTION:
-i2d_TS_TST_INFO_fp                      853	1_1_0	EXIST::FUNCTION:STDIO
+i2d_TS_TST_INFO_fp                      853	1_1_0	EXIST::FUNCTION:STDIO,TS
 d2i_PKCS8_fp                            854	1_1_0	EXIST::FUNCTION:STDIO
 EVP_PKEY_keygen                         855	1_1_0	EXIST::FUNCTION:
 X509_CRL_dup                            856	1_1_0	EXIST::FUNCTION:
@@ -886,13 +886,13 @@ 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:
 X509_VERIFY_PARAM_get0_name             865	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_signer_digest           866	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:
 BIO_sock_error                          868	1_1_0	EXIST::FUNCTION:
 RSA_set_default_method                  869	1_1_0	EXIST::FUNCTION:RSA
 BN_GF2m_mod_sqrt_arr                    870	1_1_0	EXIST::FUNCTION:EC2M
 X509_get0_extensions                    871	1_1_0	EXIST::FUNCTION:
-TS_STATUS_INFO_set_status               872	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_set_status               872	1_1_0	EXIST::FUNCTION:TS
 RSA_verify                              873	1_1_0	EXIST::FUNCTION:RSA
 ASN1_FBOOLEAN_it                        874	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_FBOOLEAN_it                        874	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
@@ -904,14 +904,14 @@ CMS_ReceiptRequest_create0              879	1_1_0	EXIST::FUNCTION:CMS
 EVP_MD_meth_set_cleanup                 880	1_1_0	EXIST::FUNCTION:
 EVP_aes_128_xts                         881	1_1_0	EXIST::FUNCTION:AES
 CRYPTO_set_dynlock_destroy_callback     882	1_1_0	NOEXIST::FUNCTION:
-TS_RESP_verify_signature                883	1_1_0	EXIST::FUNCTION:
+TS_RESP_verify_signature                883	1_1_0	EXIST::FUNCTION:TS
 ENGINE_set_pkey_meths                   884	1_1_0	EXIST::FUNCTION:ENGINE
 CMS_EncryptedData_decrypt               885	1_1_0	EXIST::FUNCTION:CMS
 CONF_module_add                         886	1_1_0	EXIST::FUNCTION:
 ASN1_UTCTIME_print                      887	1_1_0	EXIST::FUNCTION:
 X509_REQ_verify                         888	1_1_0	EXIST::FUNCTION:
 X509_VERIFY_PARAM_set_purpose           889	1_1_0	EXIST::FUNCTION:
-i2d_TS_MSG_IMPRINT_bio                  890	1_1_0	EXIST::FUNCTION:
+i2d_TS_MSG_IMPRINT_bio                  890	1_1_0	EXIST::FUNCTION:TS
 X509_EXTENSION_set_object               891	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_CTX_get_app_data             892	1_1_0	EXIST::FUNCTION:
 CRL_DIST_POINTS_it                      893	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
@@ -961,23 +961,23 @@ ASN1_BMPSTRING_it                       935	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:
 ASN1_BMPSTRING_it                       935	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 PEM_read_EC_PUBKEY                      936	1_1_0	EXIST::FUNCTION:EC
 d2i_ASN1_IA5STRING                      937	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_ext_free                    938	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_ext_free                    938	1_1_0	EXIST::FUNCTION:TS
 i2d_X509_CRL_fp                         939	1_1_0	EXIST::FUNCTION:STDIO
 PKCS7_get0_signers                      940	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_set_ex_data              941	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTS_set_certs                 942	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTS_set_certs                 942	1_1_0	EXIST::FUNCTION:TS
 BN_MONT_CTX_copy                        943	1_1_0	EXIST::FUNCTION:
 CRYPTO_cleanup_all_ex_data              944	1_1_0	EXIST::FUNCTION:
 OPENSSL_INIT_new                        945	1_1_0	EXIST::FUNCTION:
-TS_ACCURACY_dup                         946	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_dup                         946	1_1_0	EXIST::FUNCTION:TS
 i2d_ECPrivateKey                        947	1_1_0	EXIST::FUNCTION:EC
 X509_NAME_ENTRY_create_by_OBJ           948	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTX_cleanup                   949	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_cleanup                   949	1_1_0	EXIST::FUNCTION:TS
 ASN1_INTEGER_get                        950	1_1_0	EXIST::FUNCTION:
 ASN1_PRINTABLE_it                       951	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_PRINTABLE_it                       951	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 EVP_VerifyFinal                         952	1_1_0	EXIST::FUNCTION:
-TS_ASN1_INTEGER_print_bio               953	1_1_0	EXIST::FUNCTION:
+TS_ASN1_INTEGER_print_bio               953	1_1_0	EXIST::FUNCTION:TS
 X509_NAME_ENTRY_set_object              954	1_1_0	EXIST::FUNCTION:
 BIO_s_socket                            955	1_1_0	EXIST::FUNCTION:
 EVP_rc5_32_12_16_ecb                    956	1_1_0	EXIST::FUNCTION:RC5
@@ -990,7 +990,7 @@ RSA_PSS_PARAMS_new                      962	1_1_0	EXIST::FUNCTION:RSA
 RSA_sign                                963	1_1_0	EXIST::FUNCTION:RSA
 EVP_DigestVerifyFinal                   964	1_1_0	EXIST::FUNCTION:
 d2i_RSA_PUBKEY_bio                      965	1_1_0	EXIST::FUNCTION:RSA
-TS_RESP_dup                             966	1_1_0	EXIST::FUNCTION:
+TS_RESP_dup                             966	1_1_0	EXIST::FUNCTION:TS
 ERR_set_error_data                      967	1_1_0	EXIST::FUNCTION:
 BN_RECP_CTX_new                         968	1_1_0	EXIST::FUNCTION:
 DES_options                             969	1_1_0	EXIST::FUNCTION:DES
@@ -1010,12 +1010,12 @@ X509_STORE_add_lookup                   980	1_1_0	EXIST::FUNCTION:
 ASN1_GENERALSTRING_new                  981	1_1_0	EXIST::FUNCTION:
 idea_options                            982	1_1_0	EXIST::FUNCTION:IDEA
 d2i_X509_REQ                            983	1_1_0	EXIST::FUNCTION:
-i2d_TS_STATUS_INFO                      984	1_1_0	EXIST::FUNCTION:
+i2d_TS_STATUS_INFO                      984	1_1_0	EXIST::FUNCTION:TS
 X509_PURPOSE_get_by_id                  985	1_1_0	EXIST::FUNCTION:
 X509_get1_ocsp                          986	1_1_0	EXIST::FUNCTION:
 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:
+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:
 DSA_SIG_new                             992	1_1_0	EXIST::FUNCTION:DSA
@@ -1067,7 +1067,7 @@ ASN1_ANY_it                             1033	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 d2i_DSA_SIG                             1034	1_1_0	EXIST::FUNCTION:DSA
 DH_free                                 1035	1_1_0	EXIST::FUNCTION:DH
 ENGINE_register_all_DSA                 1036	1_1_0	EXIST::FUNCTION:ENGINE
-TS_REQ_set_msg_imprint                  1037	1_1_0	EXIST::FUNCTION:
+TS_REQ_set_msg_imprint                  1037	1_1_0	EXIST::FUNCTION:TS
 BN_mod_sub_quick                        1038	1_1_0	EXIST::FUNCTION:
 SMIME_write_CMS                         1039	1_1_0	EXIST::FUNCTION:CMS
 i2d_DSAPublicKey                        1040	1_1_0	EXIST::FUNCTION:DSA
@@ -1094,7 +1094,7 @@ PKCS12_pbe_crypt                        1060	1_1_0	EXIST::FUNCTION:
 ASIdentifiers_free                      1061	1_1_0	EXIST::FUNCTION:RFC3779
 X509_VERIFY_PARAM_get0                  1062	1_1_0	EXIST::FUNCTION:
 EVP_MD_meth_get_input_blocksize         1063	1_1_0	EXIST::FUNCTION:
-TS_ACCURACY_get_micros                  1064	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_get_micros                  1064	1_1_0	EXIST::FUNCTION:TS
 PKCS12_SAFEBAG_create_cert              1065	1_1_0	EXIST::FUNCTION:
 CRYPTO_mem_debug_malloc                 1066	1_1_0	EXIST::FUNCTION:CRYPTO_MDEBUG
 RAND_seed                               1067	1_1_0	EXIST::FUNCTION:
@@ -1122,7 +1122,7 @@ X509_gmtime_adj                         1088	1_1_0	EXIST::FUNCTION:
 X509_add_ext                            1089	1_1_0	EXIST::FUNCTION:
 ENGINE_set_DSA                          1090	1_1_0	EXIST::FUNCTION:ENGINE
 EC_KEY_METHOD_set_sign                  1091	1_1_0	EXIST::FUNCTION:EC
-d2i_TS_MSG_IMPRINT                      1092	1_1_0	EXIST::FUNCTION:
+d2i_TS_MSG_IMPRINT                      1092	1_1_0	EXIST::FUNCTION:TS
 X509_print_ex_fp                        1093	1_1_0	EXIST::FUNCTION:STDIO
 ERR_load_PEM_strings                    1094	1_1_0	EXIST::FUNCTION:
 ENGINE_unregister_pkey_asn1_meths       1095	1_1_0	EXIST::FUNCTION:ENGINE
@@ -1137,7 +1137,7 @@ BN_to_ASN1_INTEGER                      1102	1_1_0	EXIST::FUNCTION:
 EXTENDED_KEY_USAGE_free                 1103	1_1_0	EXIST::FUNCTION:
 PEM_read_bio_EC_PUBKEY                  1104	1_1_0	EXIST::FUNCTION:EC
 BN_MONT_CTX_set                         1105	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_serial                      1106	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_serial                      1106	1_1_0	EXIST::FUNCTION:TS
 X509_NAME_ENTRY_new                     1107	1_1_0	EXIST::FUNCTION:
 RSA_security_bits                       1108	1_1_0	EXIST::FUNCTION:RSA
 v3_addr_add_prefix                      1109	1_1_0	EXIST::FUNCTION:RFC3779
@@ -1204,17 +1204,17 @@ CMS_add0_crl                            1166	1_1_0	EXIST::FUNCTION:CMS
 d2i_DSAparams                           1167	1_1_0	EXIST::FUNCTION:DSA
 EVP_CIPHER_CTX_set_app_data             1168	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_param_to_asn1                1169	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_certs                       1170	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_certs                       1170	1_1_0	EXIST::FUNCTION:TS
 BN_security_bits                        1171	1_1_0	EXIST::FUNCTION:
 X509_PURPOSE_get0_name                  1172	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_serial                  1173	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_serial                  1173	1_1_0	EXIST::FUNCTION:TS
 ASN1_PCTX_get_str_flags                 1174	1_1_0	EXIST::FUNCTION:
 SHA256                                  1175	1_1_0	EXIST::FUNCTION:
 X509_LOOKUP_hash_dir                    1176	1_1_0	EXIST::FUNCTION:
 ASN1_BIT_STRING_check                   1177	1_1_0	EXIST::FUNCTION:
 ENGINE_set_default_RAND                 1178	1_1_0	EXIST::FUNCTION:ENGINE
 BIO_connect                             1179	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_add_ext                     1180	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_add_ext                     1180	1_1_0	EXIST::FUNCTION:TS
 EVP_aes_192_ccm                         1181	1_1_0	EXIST::FUNCTION:AES
 X509V3_add_value                        1182	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_CTX_set0_keygen_info           1183	1_1_0	EXIST::FUNCTION:
@@ -1228,7 +1228,7 @@ X509_ATTRIBUTE_create_by_txt            1190	1_1_0	EXIST::FUNCTION:
 PEM_SignFinal                           1191	1_1_0	EXIST::FUNCTION:
 PEM_bytes_read_bio                      1192	1_1_0	EXIST::FUNCTION:
 X509_signature_dump                     1193	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_def_policy              1194	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_def_policy              1194	1_1_0	EXIST::FUNCTION:TS
 RAND_pseudo_bytes                       1195	1_1_0	EXIST::FUNCTION:DEPRECATEDIN_1_1_0
 DES_ofb_encrypt                         1196	1_1_0	EXIST::FUNCTION:DES
 EVP_add_digest                          1197	1_1_0	EXIST::FUNCTION:
@@ -1291,7 +1291,7 @@ X509_check_email                        1252	1_1_0	EXIST::FUNCTION:
 CRYPTO_cts128_decrypt_block             1253	1_1_0	EXIST::FUNCTION:
 UI_method_get_opener                    1254	1_1_0	EXIST::FUNCTION:
 EVP_aes_192_gcm                         1255	1_1_0	EXIST::FUNCTION:AES
-TS_CONF_set_tsa_name                    1256	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_tsa_name                    1256	1_1_0	EXIST::FUNCTION:TS
 X509_email_free                         1257	1_1_0	EXIST::FUNCTION:
 BIO_get_callback                        1258	1_1_0	EXIST::FUNCTION:
 sk_shift                                1259	1_1_0	EXIST::FUNCTION:
@@ -1306,7 +1306,7 @@ CRYPTO_gcm128_init                      1267	1_1_0	EXIST::FUNCTION:
 i2d_X509_CINF                           1268	1_1_0	EXIST::FUNCTION:
 X509_REVOKED_delete_ext                 1269	1_1_0	EXIST::FUNCTION:
 RC5_32_cfb64_encrypt                    1270	1_1_0	EXIST::FUNCTION:RC5
-TS_REQ_set_cert_req                     1271	1_1_0	EXIST::FUNCTION:
+TS_REQ_set_cert_req                     1271	1_1_0	EXIST::FUNCTION:TS
 TXT_DB_get_by_index                     1272	1_1_0	EXIST::FUNCTION:
 X509_check_ca                           1273	1_1_0	EXIST::FUNCTION:
 DH_get_2048_224                         1274	1_1_0	EXIST::FUNCTION:DH
@@ -1337,7 +1337,7 @@ X509_set_version                        1297	1_1_0	EXIST::FUNCTION:
 i2d_EC_PUBKEY_bio                       1298	1_1_0	EXIST::FUNCTION:EC
 X509_REQ_get_attr_count                 1299	1_1_0	EXIST::FUNCTION:
 CMS_set1_signers_certs                  1300	1_1_0	EXIST::FUNCTION:CMS
-TS_ACCURACY_free                        1301	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_free                        1301	1_1_0	EXIST::FUNCTION:TS
 PEM_write_DSA_PUBKEY                    1302	1_1_0	EXIST::FUNCTION:DSA
 BN_rshift1                              1303	1_1_0	EXIST::FUNCTION:
 i2d_PKCS7_ENVELOPE                      1304	1_1_0	EXIST::FUNCTION:
@@ -1346,7 +1346,7 @@ PBKDF2PARAM_it                          1305	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 UI_get_result_maxsize                   1306	1_1_0	EXIST::FUNCTION:
 PBEPARAM_it                             1307	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 PBEPARAM_it                             1307	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-TS_ACCURACY_set_seconds                 1308	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_set_seconds                 1308	1_1_0	EXIST::FUNCTION:TS
 UI_get0_action_string                   1309	1_1_0	EXIST::FUNCTION:
 RC2_decrypt                             1310	1_1_0	EXIST::FUNCTION:RC2
 OPENSSL_atexit                          1311	1_1_0	EXIST::FUNCTION:
@@ -1371,11 +1371,11 @@ POLICY_MAPPINGS_it                      1328	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 SCT_set0_log_id                         1329	1_1_0	EXIST::FUNCTION:
 CRYPTO_cfb128_encrypt                   1330	1_1_0	EXIST::FUNCTION:
 RSA_padding_add_PKCS1_type_2            1331	1_1_0	EXIST::FUNCTION:RSA
-TS_CONF_set_signer_cert                 1332	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_signer_cert                 1332	1_1_0	EXIST::FUNCTION:TS
 i2d_ASN1_OBJECT                         1333	1_1_0	EXIST::FUNCTION:
 d2i_PKCS8_PRIV_KEY_INFO_bio             1334	1_1_0	EXIST::FUNCTION:
 X509V3_add_value_int                    1335	1_1_0	EXIST::FUNCTION:
-TS_REQ_set_nonce                        1336	1_1_0	EXIST::FUNCTION:
+TS_REQ_set_nonce                        1336	1_1_0	EXIST::FUNCTION:TS
 Camellia_ctr128_encrypt                 1337	1_1_0	EXIST::FUNCTION:CAMELLIA
 X509_LOOKUP_new                         1338	1_1_0	EXIST::FUNCTION:
 AUTHORITY_INFO_ACCESS_new               1339	1_1_0	EXIST::FUNCTION:
@@ -1423,7 +1423,7 @@ CT_POLICY_EVAL_CTX_set0_cert            1378	1_1_0	EXIST::FUNCTION:
 X509_NAME_hash                          1379	1_1_0	EXIST::FUNCTION:
 SCT_set_timestamp                       1380	1_1_0	EXIST::FUNCTION:
 UI_new                                  1381	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_msg_imprint                  1382	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_msg_imprint                  1382	1_1_0	EXIST::FUNCTION:TS
 i2d_PKCS12_BAGS                         1383	1_1_0	EXIST::FUNCTION:
 RSA_memory_lock                         1384	1_1_0	EXIST::FUNCTION:RSA
 CERTIFICATEPOLICIES_free                1385	1_1_0	EXIST::FUNCTION:
@@ -1462,7 +1462,7 @@ X509_NAME_new                           1417	1_1_0	EXIST::FUNCTION:
 ASN1_item_pack                          1418	1_1_0	EXIST::FUNCTION:
 ASN1_BIT_STRING_set_asc                 1419	1_1_0	EXIST::FUNCTION:
 d2i_GENERAL_NAME                        1420	1_1_0	EXIST::FUNCTION:
-i2d_ESS_CERT_ID                         1421	1_1_0	EXIST::FUNCTION:
+i2d_ESS_CERT_ID                         1421	1_1_0	EXIST::FUNCTION:TS
 X509_TRUST_get_by_id                    1422	1_1_0	EXIST::FUNCTION:
 d2i_RSA_PUBKEY_fp                       1423	1_1_0	EXIST::FUNCTION:RSA,STDIO
 EVP_PBE_get                             1424	1_1_0	EXIST::FUNCTION:
@@ -1510,7 +1510,7 @@ NETSCAPE_SPKI_sign                      1463	1_1_0	EXIST::FUNCTION:
 BN_BLINDING_update                      1464	1_1_0	EXIST::FUNCTION:
 BN_gcd                                  1465	1_1_0	EXIST::FUNCTION:
 CMS_dataInit                            1466	1_1_0	EXIST::FUNCTION:CMS
-TS_CONF_get_tsa_section                 1467	1_1_0	EXIST::FUNCTION:
+TS_CONF_get_tsa_section                 1467	1_1_0	EXIST::FUNCTION:TS
 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:
@@ -1522,11 +1522,11 @@ CRYPTO_mem_debug_free                   1475	1_1_0	EXIST::FUNCTION:CRYPTO_MDEBUG
 d2i_OCSP_REQUEST                        1476	1_1_0	EXIST::FUNCTION:
 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_RESP_CTX_set_certs                   1479	1_1_0	EXIST::FUNCTION:TS
 BN_MONT_CTX_free                        1480	1_1_0	EXIST::FUNCTION:
 BN_GF2m_mod_solve_quad_arr              1481	1_1_0	EXIST::FUNCTION:EC2M
 UI_add_input_string                     1482	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_version                 1483	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_version                 1483	1_1_0	EXIST::FUNCTION:TS
 BIO_accept_ex                           1484	1_1_0	EXIST::FUNCTION:
 CRYPTO_get_mem_functions                1485	1_1_0	EXIST::FUNCTION:
 PEM_read_bio                            1486	1_1_0	EXIST::FUNCTION:
@@ -1538,7 +1538,7 @@ i2d_X509_fp                             1490	1_1_0	EXIST::FUNCTION:STDIO
 d2i_ASN1_TYPE                           1491	1_1_0	EXIST::FUNCTION:
 CTLOG_STORE_free                        1492	1_1_0	EXIST::FUNCTION:
 ENGINE_get_pkey_meths                   1493	1_1_0	EXIST::FUNCTION:ENGINE
-i2d_TS_REQ_bio                          1494	1_1_0	EXIST::FUNCTION:
+i2d_TS_REQ_bio                          1494	1_1_0	EXIST::FUNCTION:TS
 EVP_PKEY_CTX_get_operation              1495	1_1_0	EXIST::FUNCTION:
 EVP_MD_meth_set_ctrl                    1496	1_1_0	EXIST::FUNCTION:
 X509_EXTENSION_set_critical             1497	1_1_0	EXIST::FUNCTION:
@@ -1602,16 +1602,16 @@ CMS_SignerInfo_sign                     1554	1_1_0	EXIST::FUNCTION:CMS
 ASN1_item_i2d_bio                       1555	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_CTX_block_size               1556	1_1_0	EXIST::FUNCTION:
 DIRECTORYSTRING_free                    1557	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_default_engine              1558	1_1_0	EXIST::FUNCTION:ENGINE
+TS_CONF_set_default_engine              1558	1_1_0	EXIST::FUNCTION:ENGINE,TS
 BN_set_bit                              1559	1_1_0	EXIST::FUNCTION:
 EVP_MD_meth_set_app_datasize            1560	1_1_0	EXIST::FUNCTION:
 DSO_free                                1561	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_tsa                     1562	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_tsa                     1562	1_1_0	EXIST::FUNCTION:TS
 EC_GROUP_check                          1563	1_1_0	EXIST::FUNCTION:EC
 sk_delete                               1564	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_extension_cb            1565	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_extension_cb            1565	1_1_0	EXIST::FUNCTION:TS
 EVP_CIPHER_CTX_nid                      1566	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_add_md                      1567	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_add_md                      1567	1_1_0	EXIST::FUNCTION:TS
 DES_set_key                             1568	1_1_0	EXIST::FUNCTION:DES
 X509V3_extensions_print                 1569	1_1_0	EXIST::FUNCTION:
 PEM_do_header                           1570	1_1_0	EXIST::FUNCTION:
@@ -1625,7 +1625,7 @@ X509_TRUST_get_flags                    1577	1_1_0	EXIST::FUNCTION:
 PKCS7_set_content                       1578	1_1_0	EXIST::FUNCTION:
 PEM_write_X509_REQ_NEW                  1579	1_1_0	EXIST::FUNCTION:
 CONF_imodule_set_usr_data               1580	1_1_0	EXIST::FUNCTION:
-d2i_TS_RESP_fp                          1581	1_1_0	EXIST::FUNCTION:STDIO
+d2i_TS_RESP_fp                          1581	1_1_0	EXIST::FUNCTION:STDIO,TS
 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
@@ -1649,10 +1649,10 @@ PEM_dek_info                            1600	1_1_0	EXIST::FUNCTION:
 ASN1_SCTX_get_template                  1601	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_asn1_get0                      1602	1_1_0	EXIST::FUNCTION:
 X509_verify                             1603	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_get_request                 1604	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_get_request                 1604	1_1_0	EXIST::FUNCTION:TS
 EVP_cast5_cbc                           1605	1_1_0	EXIST::FUNCTION:CAST
 PEM_read_bio_X509_AUX                   1606	1_1_0	EXIST::FUNCTION:
-TS_ext_print_bio                        1607	1_1_0	EXIST::FUNCTION:
+TS_ext_print_bio                        1607	1_1_0	EXIST::FUNCTION:TS
 SCT_set1_log_id                         1608	1_1_0	EXIST::FUNCTION:
 X509_get0_pubkey_bitstr                 1609	1_1_0	EXIST::FUNCTION:
 ENGINE_register_all_RAND                1610	1_1_0	EXIST::FUNCTION:ENGINE
@@ -1661,7 +1661,7 @@ EVP_MD_meth_get_result_size             1612	1_1_0	EXIST::FUNCTION:
 BIO_ADDRINFO_address                    1613	1_1_0	EXIST::FUNCTION:
 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
+d2i_TS_REQ_fp                           1616	1_1_0	EXIST::FUNCTION:STDIO,TS
 OCSP_REQ_CTX_i2d                        1617	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_get_default_digest_nid         1618	1_1_0	EXIST::FUNCTION:
 ASIdOrRange_new                         1619	1_1_0	EXIST::FUNCTION:RFC3779
@@ -1686,7 +1686,7 @@ OCSP_SINGLERESP_free                    1637	1_1_0	EXIST::FUNCTION:
 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_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:
@@ -1716,7 +1716,7 @@ CRYPTO_destroy_dynlockid                1666	1_1_0	NOEXIST::FUNCTION:
 i2d_CMS_bio_stream                      1667	1_1_0	EXIST::FUNCTION:CMS
 DES_quad_cksum                          1668	1_1_0	EXIST::FUNCTION:DES
 X509_ATTRIBUTE_create_by_NID            1669	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTX_free                      1670	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:
@@ -1726,7 +1726,7 @@ PKCS7_add_signer                        1675	1_1_0	EXIST::FUNCTION:
 X509_SIG_it                             1676	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 X509_SIG_it                             1676	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 ASYNC_start_job                         1677	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_dup                         1678	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_dup                         1678	1_1_0	EXIST::FUNCTION:TS
 EVP_aes_192_ctr                         1679	1_1_0	EXIST::FUNCTION:AES
 PKCS12_pack_authsafes                   1680	1_1_0	EXIST::FUNCTION:
 PKCS7_get_attribute                     1681	1_1_0	EXIST::FUNCTION:
@@ -1745,12 +1745,12 @@ PEM_read_bio_ECPKParameters             1693	1_1_0	EXIST::FUNCTION:EC
 d2i_PKCS12_MAC_DATA                     1694	1_1_0	EXIST::FUNCTION:
 ENGINE_ctrl_cmd                         1695	1_1_0	EXIST::FUNCTION:ENGINE
 PKCS12_SAFEBAG_get_bag_nid              1696	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_digests                     1697	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_digests                     1697	1_1_0	EXIST::FUNCTION:TS
 PKCS7_SIGNED_it                         1698	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 PKCS7_SIGNED_it                         1698	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 b2i_PublicKey                           1699	1_1_0	EXIST::FUNCTION:
 X509_PURPOSE_cleanup                    1700	1_1_0	EXIST::FUNCTION:
-ESS_SIGNING_CERT_dup                    1701	1_1_0	EXIST::FUNCTION:
+ESS_SIGNING_CERT_dup                    1701	1_1_0	EXIST::FUNCTION:TS
 ENGINE_set_default_DSA                  1702	1_1_0	EXIST::FUNCTION:ENGINE
 X509_REVOKED_new                        1703	1_1_0	EXIST::FUNCTION:
 NCONF_WIN32                             1704	1_1_0	EXIST::FUNCTION:
@@ -1769,7 +1769,7 @@ AES_unwrap_key                          1716	1_1_0	EXIST::FUNCTION:AES
 EVP_Cipher                              1717	1_1_0	EXIST::FUNCTION:
 AES_set_decrypt_key                     1718	1_1_0	EXIST::FUNCTION:AES
 BF_ofb64_encrypt                        1719	1_1_0	EXIST::FUNCTION:BF
-d2i_TS_TST_INFO_fp                      1720	1_1_0	EXIST::FUNCTION:STDIO
+d2i_TS_TST_INFO_fp                      1720	1_1_0	EXIST::FUNCTION:STDIO,TS
 X509_find_by_issuer_and_serial          1721	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_type                           1722	1_1_0	EXIST::FUNCTION:
 ENGINE_ctrl                             1723	1_1_0	EXIST::FUNCTION:ENGINE
@@ -1784,7 +1784,7 @@ EVP_aes_256_cbc                         1731	1_1_0	EXIST::FUNCTION:AES
 X509_check_ip_asc                       1732	1_1_0	EXIST::FUNCTION:
 PEM_write_bio_X509_AUX                  1733	1_1_0	EXIST::FUNCTION:
 RC2_cbc_encrypt                         1734	1_1_0	EXIST::FUNCTION:RC2
-TS_MSG_IMPRINT_new                      1735	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_new                      1735	1_1_0	EXIST::FUNCTION:TS
 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
@@ -1811,19 +1811,19 @@ DH_security_bits                        1758	1_1_0	EXIST::FUNCTION:DH
 LONG_it                                 1759	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 LONG_it                                 1759	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 ASN1_dup                                1760	1_1_0	EXIST::FUNCTION:
-TS_RESP_new                             1761	1_1_0	EXIST::FUNCTION:
+TS_RESP_new                             1761	1_1_0	EXIST::FUNCTION:TS
 i2d_PKCS8PrivateKeyInfo_fp              1762	1_1_0	EXIST::FUNCTION:STDIO
 X509_alias_get0                         1763	1_1_0	EXIST::FUNCTION:
 X509_ATTRIBUTE_free                     1764	1_1_0	EXIST::FUNCTION:
 d2i_X509_bio                            1765	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_exts                    1766	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_exts                    1766	1_1_0	EXIST::FUNCTION:TS
 EVP_aes_256_ecb                         1767	1_1_0	EXIST::FUNCTION:AES
 ASN1_BIT_STRING_name_print              1768	1_1_0	EXIST::FUNCTION:
 d2i_X509_EXTENSIONS                     1769	1_1_0	EXIST::FUNCTION:
 ASN1_OCTET_STRING_free                  1770	1_1_0	EXIST::FUNCTION:
 PKCS7_RECIP_INFO_free                   1771	1_1_0	EXIST::FUNCTION:
 ASN1_tag2bit                            1772	1_1_0	EXIST::FUNCTION:
-TS_REQ_add_ext                          1773	1_1_0	EXIST::FUNCTION:
+TS_REQ_add_ext                          1773	1_1_0	EXIST::FUNCTION:TS
 CRYPTO_get_new_dynlockid                1774	1_1_0	NOEXIST::FUNCTION:
 RAND_cleanup                            1775	1_1_0	EXIST::FUNCTION:
 X509_digest                             1776	1_1_0	EXIST::FUNCTION:
@@ -1832,7 +1832,7 @@ NETSCAPE_CERT_SEQUENCE_it               1778	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 NETSCAPE_CERT_SEQUENCE_it               1778	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 EVP_aes_128_wrap                        1779	1_1_0	EXIST::FUNCTION:AES
 X509V3_conf_free                        1780	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_ext_by_NID              1781	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_ext_by_NID              1781	1_1_0	EXIST::FUNCTION:TS
 EVP_aes_256_cfb1                        1782	1_1_0	EXIST::FUNCTION:AES
 X509_issuer_name_cmp                    1783	1_1_0	EXIST::FUNCTION:
 CMS_RecipientEncryptedKey_get0_id       1784	1_1_0	EXIST::FUNCTION:CMS
@@ -1863,9 +1863,9 @@ i2d_DSAPrivateKey                       1807	1_1_0	EXIST::FUNCTION:DSA
 ASN1_BIT_STRING_new                     1808	1_1_0	EXIST::FUNCTION:
 BIO_new_file                            1809	1_1_0	EXIST::FUNCTION:
 PKCS7_SIGNER_INFO_get0_algs             1810	1_1_0	EXIST::FUNCTION:
-TS_RESP_set_status_info                 1811	1_1_0	EXIST::FUNCTION:
+TS_RESP_set_status_info                 1811	1_1_0	EXIST::FUNCTION:TS
 lh_delete                               1812	1_1_0	EXIST::FUNCTION:
-TS_STATUS_INFO_dup                      1813	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_dup                      1813	1_1_0	EXIST::FUNCTION:TS
 v3_addr_get_range                       1814	1_1_0	EXIST::FUNCTION:RFC3779
 X509_EXTENSION_get_data                 1815	1_1_0	EXIST::FUNCTION:
 RC5_32_encrypt                          1816	1_1_0	EXIST::FUNCTION:RC5
@@ -1883,7 +1883,7 @@ sk_find_ex                              1826	1_1_0	EXIST::FUNCTION:
 ASN1_ENUMERATED_to_BN                   1827	1_1_0	EXIST::FUNCTION:
 X509_CRL_get_ext_d2i                    1828	1_1_0	EXIST::FUNCTION:
 i2d_AUTHORITY_KEYID                     1829	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_time                    1830	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_time                    1830	1_1_0	EXIST::FUNCTION:TS
 ASN1_VISIBLESTRING_it                   1831	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_VISIBLESTRING_it                   1831	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 X509V3_EXT_REQ_add_conf                 1832	1_1_0	EXIST::FUNCTION:
@@ -1906,7 +1906,7 @@ BIO_ctrl_wpending                       1847	1_1_0	EXIST::FUNCTION:
 X509_ALGOR_cmp                          1848	1_1_0	EXIST::FUNCTION:
 i2d_ASN1_bio_stream                     1849	1_1_0	EXIST::FUNCTION:
 CRYPTO_THREAD_init_local                1850	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_serial_cb               1851	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_serial_cb               1851	1_1_0	EXIST::FUNCTION:TS
 POLICY_MAPPING_it                       1852	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 POLICY_MAPPING_it                       1852	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 ERR_load_KDF_strings                    1853	1_1_0	EXIST::FUNCTION:
@@ -1947,7 +1947,7 @@ X509_STORE_CTX_trusted_stack            1886	1_1_0	EXIST::FUNCTION:
 BIO_ADDR_service_string                 1887	1_1_0	EXIST::FUNCTION:
 ASN1_BOOLEAN_it                         1888	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_BOOLEAN_it                         1888	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-TS_RESP_CTX_set_time_cb                 1889	1_1_0	EXIST::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:
@@ -2033,7 +2033,7 @@ 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:
 EVP_PKEY_sign                           1975	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_ext_by_critical              1976	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
 X509_EXTENSION_it                       1978	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 X509_EXTENSION_it                       1978	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
@@ -2042,7 +2042,7 @@ UTF8_getc                               1980	1_1_0	EXIST::FUNCTION:
 ASN1_IA5STRING_free                     1981	1_1_0	EXIST::FUNCTION:
 EC_KEY_METHOD_get_verify                1982	1_1_0	EXIST::FUNCTION:EC
 OBJ_NAME_do_all                         1983	1_1_0	EXIST::FUNCTION:
-d2i_TS_MSG_IMPRINT_fp                   1984	1_1_0	EXIST::FUNCTION:STDIO
+d2i_TS_MSG_IMPRINT_fp                   1984	1_1_0	EXIST::FUNCTION:STDIO,TS
 X509_CRL_verify                         1985	1_1_0	EXIST::FUNCTION:
 X509_get0_uids                          1986	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_get0_DSA                       1987	1_1_0	EXIST::FUNCTION:DSA
@@ -2062,11 +2062,11 @@ DIST_POINT_NAME_it                      1998	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 PEM_read_PrivateKey                     1999	1_1_0	EXIST::FUNCTION:
 X509V3_get_d2i                          2000	1_1_0	EXIST::FUNCTION:
 PKCS7_SIGNER_INFO_sign                  2001	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_free                        2002	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_free                        2002	1_1_0	EXIST::FUNCTION:TS
 DSA_security_bits                       2003	1_1_0	EXIST::FUNCTION:DSA
 v3_addr_is_canonical                    2004	1_1_0	EXIST::FUNCTION:RFC3779
 BN_mod_mul_reciprocal                   2005	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_version                      2006	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_version                      2006	1_1_0	EXIST::FUNCTION:TS
 BN_exp                                  2007	1_1_0	EXIST::FUNCTION:
 i2d_SXNET                               2008	1_1_0	EXIST::FUNCTION:
 OBJ_bsearch_                            2009	1_1_0	EXIST::FUNCTION:
@@ -2079,7 +2079,7 @@ ENGINE_register_all_complete            2015	1_1_0	EXIST::FUNCTION:ENGINE
 SRP_get_default_gN                      2016	1_1_0	EXIST::FUNCTION:SRP
 UI_dup_input_boolean                    2017	1_1_0	EXIST::FUNCTION:
 PKCS7_dup                               2018	1_1_0	EXIST::FUNCTION:
-i2d_TS_REQ_fp                           2019	1_1_0	EXIST::FUNCTION:STDIO
+i2d_TS_REQ_fp                           2019	1_1_0	EXIST::FUNCTION:STDIO,TS
 i2d_OTHERNAME                           2020	1_1_0	EXIST::FUNCTION:
 EC_KEY_get0_private_key                 2021	1_1_0	EXIST::FUNCTION:EC
 SCT_get0_extensions                     2022	1_1_0	EXIST::FUNCTION:
@@ -2137,10 +2137,10 @@ 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:
 PEM_read_DSAparams                      2073	1_1_0	EXIST::FUNCTION:DSA
-TS_TST_INFO_set_ordering                2074	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_set_ordering                2074	1_1_0	EXIST::FUNCTION:TS
 MDC2_Init                               2075	1_1_0	EXIST::FUNCTION:MDC2
 i2o_SCT                                 2076	1_1_0	EXIST::FUNCTION:
-d2i_TS_STATUS_INFO                      2077	1_1_0	EXIST::FUNCTION:
+d2i_TS_STATUS_INFO                      2077	1_1_0	EXIST::FUNCTION:TS
 ERR_error_string_n                      2078	1_1_0	EXIST::FUNCTION:
 HMAC                                    2079	1_1_0	EXIST::FUNCTION:
 BN_mul                                  2080	1_1_0	EXIST::FUNCTION:
@@ -2154,14 +2154,14 @@ PKCS7_RECIP_INFO_get0_alg               2087	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_base_id                        2088	1_1_0	EXIST::FUNCTION:
 UI_method_set_opener                    2089	1_1_0	EXIST::FUNCTION:
 X509v3_get_ext_by_NID                   2090	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_policies                    2091	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_policies                    2091	1_1_0	EXIST::FUNCTION:TS
 CMS_SignerInfo_cert_cmp                 2092	1_1_0	EXIST::FUNCTION:CMS
 PEM_read                                2093	1_1_0	EXIST::FUNCTION:STDIO
 X509_STORE_set_depth                    2094	1_1_0	EXIST::FUNCTION:
 EC_KEY_METHOD_get_sign                  2095	1_1_0	EXIST::FUNCTION:EC
 EVP_CIPHER_CTX_iv                       2096	1_1_0	EXIST::FUNCTION:
-i2d_ESS_SIGNING_CERT                    2097	1_1_0	EXIST::FUNCTION:
-TS_RESP_set_tst_info                    2098	1_1_0	EXIST::FUNCTION:
+i2d_ESS_SIGNING_CERT                    2097	1_1_0	EXIST::FUNCTION:TS
+TS_RESP_set_tst_info                    2098	1_1_0	EXIST::FUNCTION:TS
 EVP_PKEY_CTX_set_data                   2099	1_1_0	EXIST::FUNCTION:
 CMS_EnvelopedData_create                2100	1_1_0	EXIST::FUNCTION:CMS
 SCT_new                                 2101	1_1_0	EXIST::FUNCTION:
@@ -2169,7 +2169,7 @@ X509_REQ_add1_attr                      2102	1_1_0	EXIST::FUNCTION:
 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:
+i2d_TS_REQ                              2106	1_1_0	EXIST::FUNCTION:TS
 OCSP_ONEREQ_add1_ext_i2d                2107	1_1_0	EXIST::FUNCTION:
 ENGINE_register_pkey_meths              2108	1_1_0	EXIST::FUNCTION:ENGINE
 ENGINE_load_public_key                  2109	1_1_0	EXIST::FUNCTION:ENGINE
@@ -2244,7 +2244,7 @@ d2i_CERTIFICATEPOLICIES                 2170	1_1_0	EXIST::FUNCTION:
 CMAC_CTX_get0_cipher_ctx                2171	1_1_0	EXIST::FUNCTION:
 X509_STORE_load_locations               2172	1_1_0	EXIST::FUNCTION:
 OBJ_find_sigid_algs                     2173	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_accuracy                2174	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:
@@ -2264,7 +2264,7 @@ X509_get0_tbs_sigalg                    2189	1_1_0	EXIST::FUNCTION:
 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
+i2d_TS_RESP_fp                          2193	1_1_0	EXIST::FUNCTION:STDIO,TS
 OCSP_BASICRESP_get_ext_count            2194	1_1_0	EXIST::FUNCTION:
 ASN1_T61STRING_new                      2195	1_1_0	EXIST::FUNCTION:
 BN_kronecker                            2196	1_1_0	EXIST::FUNCTION:
@@ -2275,19 +2275,19 @@ X509v3_delete_ext                       2200	1_1_0	EXIST::FUNCTION:
 ASN1_STRING_set0                        2201	1_1_0	EXIST::FUNCTION:
 BN_GF2m_add                             2202	1_1_0	EXIST::FUNCTION:EC2M
 CMAC_resume                             2203	1_1_0	EXIST::FUNCTION:
-TS_ACCURACY_set_millis                  2204	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_set_millis                  2204	1_1_0	EXIST::FUNCTION:TS
 X509V3_EXT_conf                         2205	1_1_0	EXIST::FUNCTION:
 i2d_DHxparams                           2206	1_1_0	EXIST::FUNCTION:DH
 EVP_CIPHER_CTX_free                     2207	1_1_0	EXIST::FUNCTION:
 WHIRLPOOL_BitUpdate                     2208	1_1_0	EXIST::FUNCTION:WHIRLPOOL
 EVP_idea_ecb                            2209	1_1_0	EXIST::FUNCTION:IDEA
-i2d_TS_ACCURACY                         2210	1_1_0	EXIST::FUNCTION:
+i2d_TS_ACCURACY                         2210	1_1_0	EXIST::FUNCTION:TS
 ASN1_VISIBLESTRING_free                 2211	1_1_0	EXIST::FUNCTION:
 NCONF_load_bio                          2212	1_1_0	EXIST::FUNCTION:
 DSA_get_default_method                  2213	1_1_0	EXIST::FUNCTION:DSA
 lh_retrieve                             2214	1_1_0	EXIST::FUNCTION:
 CRYPTO_ccm128_decrypt_ccm64             2215	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_clock_precision_digits  2216	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_clock_precision_digits  2216	1_1_0	EXIST::FUNCTION:TS
 SCT_LIST_validate                       2217	1_1_0	EXIST::FUNCTION:
 X509_PURPOSE_get_id                     2218	1_1_0	EXIST::FUNCTION:
 EC_KEY_get_ex_data                      2219	1_1_0	EXIST::FUNCTION:EC
@@ -2295,19 +2295,19 @@ EVP_MD_size                             2220	1_1_0	EXIST::FUNCTION:
 CRYPTO_malloc                           2221	1_1_0	EXIST::FUNCTION:
 ERR_load_ASN1_strings                   2222	1_1_0	EXIST::FUNCTION:
 X509_REQ_get_extension_nids             2223	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_ext_by_OBJ                   2224	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_ext_by_OBJ                   2224	1_1_0	EXIST::FUNCTION:TS
 i2d_X509                                2225	1_1_0	EXIST::FUNCTION:
 PEM_read_X509_AUX                       2226	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTX_set_flags                 2227	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_set_flags                 2227	1_1_0	EXIST::FUNCTION:TS
 IPAddressRange_new                      2228	1_1_0	EXIST::FUNCTION:RFC3779
-TS_REQ_get_exts                         2229	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_exts                         2229	1_1_0	EXIST::FUNCTION:TS
 POLICY_CONSTRAINTS_new                  2230	1_1_0	EXIST::FUNCTION:
 OTHERNAME_new                           2231	1_1_0	EXIST::FUNCTION:
 BN_rshift                               2232	1_1_0	EXIST::FUNCTION:
 i2d_GENERAL_NAMES                       2233	1_1_0	EXIST::FUNCTION:
 EC_METHOD_get_field_type                2234	1_1_0	EXIST::FUNCTION:EC
 ENGINE_set_name                         2235	1_1_0	EXIST::FUNCTION:ENGINE
-TS_TST_INFO_get_policy_id               2236	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_policy_id               2236	1_1_0	EXIST::FUNCTION:TS
 PKCS7_SIGNER_INFO_set                   2237	1_1_0	EXIST::FUNCTION:
 PEM_write_bio_PKCS8_PRIV_KEY_INFO       2238	1_1_0	EXIST::FUNCTION:
 EC_GROUP_set_curve_GF2m                 2239	1_1_0	EXIST::FUNCTION:EC,EC2M
@@ -2315,12 +2315,12 @@ 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:
-d2i_TS_TST_INFO                         2244	1_1_0	EXIST::FUNCTION:
+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
 ENGINE_get_cipher                       2246	1_1_0	EXIST::FUNCTION:ENGINE
-TS_TST_INFO_delete_ext                  2247	1_1_0	EXIST::FUNCTION:
-TS_OBJ_print_bio                        2248	1_1_0	EXIST::FUNCTION:
+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:
 ERR_load_X509_strings                   2251	1_1_0	EXIST::FUNCTION:
@@ -2351,7 +2351,7 @@ BIO_f_md                                2273	1_1_0	EXIST::FUNCTION:
 EVP_MD_CTX_pkey_ctx                     2274	1_1_0	EXIST::FUNCTION:
 ENGINE_set_default_EC                   2275	1_1_0	EXIST::FUNCTION:ENGINE
 CMS_ReceiptRequest_free                 2276	1_1_0	EXIST::FUNCTION:CMS
-TS_STATUS_INFO_get0_text                2277	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_get0_text                2277	1_1_0	EXIST::FUNCTION:TS
 CRYPTO_get_ex_new_index                 2278	1_1_0	EXIST::FUNCTION:
 ASN1_PCTX_set_flags                     2279	1_1_0	EXIST::FUNCTION:
 PEM_write_X509_CRL                      2280	1_1_0	EXIST::FUNCTION:
@@ -2362,7 +2362,7 @@ BN_ucmp                                 2284	1_1_0	EXIST::FUNCTION:
 SXNET_get_id_asc                        2285	1_1_0	EXIST::FUNCTION:
 SCT_set1_extensions                     2286	1_1_0	EXIST::FUNCTION:
 PKCS12_SAFEBAG_new                      2287	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_set_nonce                   2288	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_set_nonce                   2288	1_1_0	EXIST::FUNCTION:TS
 PEM_read_ECPrivateKey                   2289	1_1_0	EXIST::FUNCTION:EC
 RSA_free                                2290	1_1_0	EXIST::FUNCTION:RSA
 X509_CRL_INFO_new                       2291	1_1_0	EXIST::FUNCTION:
@@ -2373,13 +2373,13 @@ X509at_get_attr_count                   2295	1_1_0	EXIST::FUNCTION:
 PKCS12_init                             2296	1_1_0	EXIST::FUNCTION:
 CRYPTO_free_ex_data                     2297	1_1_0	EXIST::FUNCTION:
 EVP_aes_128_cfb8                        2298	1_1_0	EXIST::FUNCTION:AES
-ESS_ISSUER_SERIAL_free                  2299	1_1_0	EXIST::FUNCTION:
+ESS_ISSUER_SERIAL_free                  2299	1_1_0	EXIST::FUNCTION:TS
 BN_mod_exp_mont_word                    2300	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_nconf_nid                    2301	1_1_0	EXIST::FUNCTION:
 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_TST_INFO_set_accuracy                2305	1_1_0	EXIST::FUNCTION:TS
 OCSP_basic_verify                       2306	1_1_0	EXIST::FUNCTION:
 X509at_add1_attr_by_OBJ                 2307	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_asn1_add0                      2308	1_1_0	EXIST::FUNCTION:
@@ -2413,7 +2413,7 @@ ASN1_STRING_cmp                         2335	1_1_0	EXIST::FUNCTION:
 EVP_chacha20_poly1305                   2336	1_1_0	EXIST::FUNCTION:CHACHA,POLY1305
 sk_zero                                 2337	1_1_0	EXIST::FUNCTION:
 ASN1_PRINTABLE_type                     2338	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_ess_cert_id_chain           2339	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_ess_cert_id_chain           2339	1_1_0	EXIST::FUNCTION:TS
 PEM_read_DSAPrivateKey                  2340	1_1_0	EXIST::FUNCTION:DSA
 DH_generate_parameters_ex               2341	1_1_0	EXIST::FUNCTION:DH
 UI_dup_input_string                     2342	1_1_0	EXIST::FUNCTION:
@@ -2470,7 +2470,7 @@ X509_REQ_add1_attr_by_OBJ               2390	1_1_0	EXIST::FUNCTION:
 ASN1_item_ex_free                       2391	1_1_0	EXIST::FUNCTION:
 X509_SIG_new                            2392	1_1_0	EXIST::FUNCTION:
 BN_sqr                                  2393	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_set_time                    2394	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_set_time                    2394	1_1_0	EXIST::FUNCTION:TS
 OPENSSL_die                             2395	1_1_0	EXIST::FUNCTION:
 X509_LOOKUP_by_alias                    2396	1_1_0	EXIST::FUNCTION:
 EC_KEY_set_conv_form                    2397	1_1_0	EXIST::FUNCTION:EC
@@ -2484,7 +2484,7 @@ i2d_ECDSA_SIG                           2404	1_1_0	EXIST::FUNCTION:EC
 BIO_dump_indent                         2405	1_1_0	EXIST::FUNCTION:
 ENGINE_set_pkey_asn1_meths              2406	1_1_0	EXIST::FUNCTION:ENGINE
 OPENSSL_gmtime_diff                     2407	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_crypto_device               2408	1_1_0	EXIST::FUNCTION:ENGINE
+TS_CONF_set_crypto_device               2408	1_1_0	EXIST::FUNCTION:ENGINE,TS
 COMP_CTX_get_method                     2409	1_1_0	EXIST::FUNCTION:COMP
 EC_GROUP_get_cofactor                   2410	1_1_0	EXIST::FUNCTION:EC
 EVP_rc5_32_12_16_ofb                    2411	1_1_0	EXIST::FUNCTION:RC5
@@ -2509,7 +2509,7 @@ EVP_aes_256_cfb128                      2428	1_1_0	EXIST::FUNCTION:AES
 RSA_set_ex_data                         2429	1_1_0	EXIST::FUNCTION:RSA
 BN_GENCB_call                           2430	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_add_nconf_sk                 2431	1_1_0	EXIST::FUNCTION:
-i2d_TS_MSG_IMPRINT_fp                   2432	1_1_0	EXIST::FUNCTION:STDIO
+i2d_TS_MSG_IMPRINT_fp                   2432	1_1_0	EXIST::FUNCTION:STDIO,TS
 PKCS12_new                              2433	1_1_0	EXIST::FUNCTION:
 X509_REVOKED_set_serialNumber           2434	1_1_0	EXIST::FUNCTION:
 EVP_get_digestbyname                    2435	1_1_0	EXIST::FUNCTION:
@@ -2532,7 +2532,7 @@ NETSCAPE_CERT_SEQUENCE_new              2450	1_1_0	EXIST::FUNCTION:
 CRYPTO_ocb128_decrypt                   2451	1_1_0	EXIST::FUNCTION:OCB
 ASYNC_WAIT_CTX_free                     2452	1_1_0	EXIST::FUNCTION:
 d2i_PKCS7_DIGEST                        2453	1_1_0	EXIST::FUNCTION:
-d2i_TS_TST_INFO_bio                     2454	1_1_0	EXIST::FUNCTION:
+d2i_TS_TST_INFO_bio                     2454	1_1_0	EXIST::FUNCTION:TS
 BIGNUM_it                               2455	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 BIGNUM_it                               2455	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 BN_BLINDING_get_flags                   2456	1_1_0	EXIST::FUNCTION:
@@ -2543,7 +2543,7 @@ DSA_set_ex_data                         2460	1_1_0	EXIST::FUNCTION:DSA
 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_REQ_set_version                      2464	1_1_0	EXIST::FUNCTION:TS
 OCSP_REQINFO_new                        2465	1_1_0	EXIST::FUNCTION:
 Camellia_decrypt                        2466	1_1_0	EXIST::FUNCTION:CAMELLIA
 X509_signature_print                    2467	1_1_0	EXIST::FUNCTION:
@@ -2556,7 +2556,7 @@ ASIdOrRange_free                        2472	1_1_0	EXIST::FUNCTION:RFC3779
 EC_POINT_get_Jprojective_coordinates_GFp 2473	1_1_0	EXIST::FUNCTION:EC
 EVP_aes_128_cbc_hmac_sha256             2474	1_1_0	EXIST::FUNCTION:AES
 i2d_PKCS7_SIGNED                        2475	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTX_set_data                  2476	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_set_data                  2476	1_1_0	EXIST::FUNCTION:TS
 BN_pseudo_rand_range                    2477	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_add_nconf                    2478	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_CTX_ctrl                     2479	1_1_0	EXIST::FUNCTION:
@@ -2573,10 +2573,10 @@ i2d_ASN1_BIT_STRING                     2488	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_set_verifyctx             2489	1_1_0	EXIST::FUNCTION:
 X509_TRUST_add                          2490	1_1_0	EXIST::FUNCTION:
 BUF_MEM_free                            2491	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_accuracy                2492	1_1_0	EXIST::FUNCTION:
-TS_REQ_dup                              2493	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_accuracy                2492	1_1_0	EXIST::FUNCTION:TS
+TS_REQ_dup                              2493	1_1_0	EXIST::FUNCTION:TS
 ASN1_STRING_type_new                    2494	1_1_0	EXIST::FUNCTION:
-TS_STATUS_INFO_free                     2495	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_free                     2495	1_1_0	EXIST::FUNCTION:TS
 BN_mod_mul                              2496	1_1_0	EXIST::FUNCTION:
 CMS_add0_recipient_key                  2497	1_1_0	EXIST::FUNCTION:CMS
 BIO_f_zlib                              2498	1_1_0	EXIST:ZLIB:FUNCTION:COMP
@@ -2585,7 +2585,7 @@ ENGINE_set_EC                           2500	1_1_0	EXIST::FUNCTION:ENGINE
 d2i_ECPKParameters                      2501	1_1_0	EXIST::FUNCTION:EC
 idea_ofb64_encrypt                      2502	1_1_0	EXIST::FUNCTION:IDEA
 CAST_decrypt                            2503	1_1_0	EXIST::FUNCTION:CAST
-TS_STATUS_INFO_get0_failure_info        2504	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_get0_failure_info        2504	1_1_0	EXIST::FUNCTION:TS
 o2i_SCT_signature                       2505	1_1_0	EXIST::FUNCTION:
 ENGINE_unregister_pkey_meths            2506	1_1_0	EXIST::FUNCTION:ENGINE
 DISPLAYTEXT_new                         2507	1_1_0	EXIST::FUNCTION:
@@ -2672,7 +2672,7 @@ CRYPTO_clear_realloc                    2586	1_1_0	EXIST::FUNCTION:
 OPENSSL_strnlen                         2587	1_1_0	EXIST::FUNCTION:
 idea_ecb_encrypt                        2588	1_1_0	EXIST::FUNCTION:IDEA
 ASN1_STRING_set_default_mask            2589	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTX_add_flags                 2590	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_add_flags                 2590	1_1_0	EXIST::FUNCTION:TS
 FIPS_mode                               2591	1_1_0	EXIST::FUNCTION:
 d2i_ASN1_UNIVERSALSTRING                2592	1_1_0	EXIST::FUNCTION:
 NAME_CONSTRAINTS_free                   2593	1_1_0	EXIST::FUNCTION:
@@ -2706,7 +2706,7 @@ IPAddressRange_it                       2618	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 PEM_read_bio_DSAPrivateKey              2619	1_1_0	EXIST::FUNCTION:DSA
 CMS_get0_type                           2620	1_1_0	EXIST::FUNCTION:CMS
 ASN1_PCTX_free                          2621	1_1_0	EXIST::FUNCTION:
-ESS_SIGNING_CERT_new                    2622	1_1_0	EXIST::FUNCTION:
+ESS_SIGNING_CERT_new                    2622	1_1_0	EXIST::FUNCTION:TS
 X509V3_EXT_conf_nid                     2623	1_1_0	EXIST::FUNCTION:
 EC_KEY_check_key                        2624	1_1_0	EXIST::FUNCTION:EC
 PKCS5_PBKDF2_HMAC                       2625	1_1_0	EXIST::FUNCTION:
@@ -2736,7 +2736,7 @@ ASN1_item_dup                           2646	1_1_0	EXIST::FUNCTION:
 GENERAL_NAMES_it                        2647	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 GENERAL_NAMES_it                        2647	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 X509_issuer_name_hash                   2648	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_nonce                   2649	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_nonce                   2649	1_1_0	EXIST::FUNCTION:TS
 MD4_Init                                2650	1_1_0	EXIST::FUNCTION:MD4
 X509_EXTENSION_create_by_OBJ            2651	1_1_0	EXIST::FUNCTION:
 EVP_aes_256_cbc_hmac_sha1               2652	1_1_0	EXIST::FUNCTION:AES
@@ -2745,7 +2745,7 @@ EC_GROUP_dup                            2654	1_1_0	EXIST::FUNCTION:EC
 EVP_sha1                                2655	1_1_0	EXIST::FUNCTION:
 sk_new                                  2656	1_1_0	EXIST::FUNCTION:
 BN_dup                                  2657	1_1_0	EXIST::FUNCTION:
-TS_MSG_IMPRINT_print_bio                2658	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_print_bio                2658	1_1_0	EXIST::FUNCTION:TS
 CONF_module_set_usr_data                2659	1_1_0	EXIST::FUNCTION:
 EC_KEY_generate_key                     2660	1_1_0	EXIST::FUNCTION:EC
 BIO_ctrl_get_write_guarantee            2661	1_1_0	EXIST::FUNCTION:
@@ -2761,7 +2761,7 @@ RSA_public_encrypt                      2670	1_1_0	EXIST::FUNCTION:RSA
 X509_CRL_get0_extensions                2671	1_1_0	EXIST::FUNCTION:
 CMS_digest_verify                       2672	1_1_0	EXIST::FUNCTION:CMS
 ASN1_GENERALIZEDTIME_set                2673	1_1_0	EXIST::FUNCTION:
-TS_VERIFY_CTX_set_imprint               2674	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_set_imprint               2674	1_1_0	EXIST::FUNCTION:TS
 BN_RECP_CTX_set                         2675	1_1_0	EXIST::FUNCTION:
 CRYPTO_secure_zalloc                    2676	1_1_0	EXIST::FUNCTION:
 i2d_EXTENDED_KEY_USAGE                  2677	1_1_0	EXIST::FUNCTION:
@@ -2773,7 +2773,7 @@ X509_CRL_INFO_it                        2681	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 BUF_reverse                             2682	1_1_0	EXIST::FUNCTION:
 d2i_OCSP_SIGNATURE                      2683	1_1_0	EXIST::FUNCTION:
 X509_REQ_delete_attr                    2684	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_signer_cert             2685	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:
 ASN1_GENERALSTRING_it                   2687	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_GENERALSTRING_it                   2687	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
@@ -2786,7 +2786,7 @@ X509_LOOKUP_by_fingerprint              2693	1_1_0	EXIST::FUNCTION:
 EVP_CIPHER_meth_free                    2694	1_1_0	EXIST::FUNCTION:
 PKCS7_RECIP_INFO_new                    2695	1_1_0	EXIST::FUNCTION:
 d2i_ECPrivateKey_fp                     2696	1_1_0	EXIST::FUNCTION:EC,STDIO
-TS_CONF_set_ordering                    2697	1_1_0	EXIST::FUNCTION:
+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:
@@ -2805,10 +2805,10 @@ PKCS12_BAGS_free                        2712	1_1_0	EXIST::FUNCTION:
 PEM_X509_INFO_read                      2713	1_1_0	EXIST::FUNCTION:STDIO
 d2i_DSAPrivateKey                       2714	1_1_0	EXIST::FUNCTION:DSA
 i2d_PKCS8_PRIV_KEY_INFO_fp              2715	1_1_0	EXIST::FUNCTION:STDIO
-TS_RESP_print_bio                       2716	1_1_0	EXIST::FUNCTION:
+TS_RESP_print_bio                       2716	1_1_0	EXIST::FUNCTION:TS
 X509_STORE_set_default_paths            2717	1_1_0	EXIST::FUNCTION:
-d2i_TS_REQ                              2718	1_1_0	EXIST::FUNCTION:
-i2d_TS_TST_INFO_bio                     2719	1_1_0	EXIST::FUNCTION:
+d2i_TS_REQ                              2718	1_1_0	EXIST::FUNCTION:TS
+i2d_TS_TST_INFO_bio                     2719	1_1_0	EXIST::FUNCTION:TS
 CMS_sign_receipt                        2720	1_1_0	EXIST::FUNCTION:CMS
 ENGINE_set_RAND                         2721	1_1_0	EXIST::FUNCTION:ENGINE
 X509_REVOKED_get_ext_by_OBJ             2722	1_1_0	EXIST::FUNCTION:
@@ -2836,14 +2836,14 @@ ENGINE_get_load_privkey_function        2742	1_1_0	EXIST::FUNCTION:ENGINE
 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_CONF_load_key                        2746	1_1_0	EXIST::FUNCTION:TS
 d2i_OCSP_REQINFO                        2747	1_1_0	EXIST::FUNCTION:
 d2i_X509_CINF                           2748	1_1_0	EXIST::FUNCTION:
 OCSP_REQUEST_get_ext_by_critical        2749	1_1_0	EXIST::FUNCTION:
 X509_REQ_to_X509                        2750	1_1_0	EXIST::FUNCTION:
 EVP_aes_192_wrap_pad                    2751	1_1_0	EXIST::FUNCTION:AES
 PKCS7_SIGN_ENVELOPE_new                 2752	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_policy_id                    2753	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_policy_id                    2753	1_1_0	EXIST::FUNCTION:TS
 RC5_32_cbc_encrypt                      2754	1_1_0	EXIST::FUNCTION:RC5
 BN_is_zero                              2755	1_1_0	EXIST::FUNCTION:
 CT_POLICY_EVAL_CTX_new                  2756	1_1_0	EXIST::FUNCTION:
@@ -2853,7 +2853,7 @@ CRYPTO_THREAD_unlock                    2758	1_1_0	EXIST::FUNCTION:
 UI_method_set_writer                    2759	1_1_0	EXIST::FUNCTION:
 UI_dup_info_string                      2760	1_1_0	EXIST::FUNCTION:
 OPENSSL_init                            2761	1_1_0	EXIST::FUNCTION:
-TS_RESP_get_tst_info                    2762	1_1_0	EXIST::FUNCTION:
+TS_RESP_get_tst_info                    2762	1_1_0	EXIST::FUNCTION:TS
 X509_VERIFY_PARAM_get_depth             2763	1_1_0	EXIST::FUNCTION:
 EVP_SealFinal                           2764	1_1_0	EXIST::FUNCTION:RSA
 BIO_set                                 2765	1_1_0	EXIST::FUNCTION:
@@ -2904,7 +2904,7 @@ ENGINE_get_static_state                 2804	1_1_0	EXIST::FUNCTION:ENGINE
 EC_KEY_set_asn1_flag                    2805	1_1_0	EXIST::FUNCTION:EC
 EC_GFp_mont_method                      2806	1_1_0	EXIST::FUNCTION:EC
 OPENSSL_asc2uni                         2807	1_1_0	EXIST::FUNCTION:
-TS_REQ_new                              2808	1_1_0	EXIST::FUNCTION:
+TS_REQ_new                              2808	1_1_0	EXIST::FUNCTION:TS
 ENGINE_register_all_DH                  2809	1_1_0	EXIST::FUNCTION:ENGINE
 ERR_clear_error                         2810	1_1_0	EXIST::FUNCTION:
 EC_KEY_dup                              2811	1_1_0	EXIST::FUNCTION:EC
@@ -2921,13 +2921,13 @@ X509_CRL_get_issuer                     2821	1_1_0	EXIST::FUNCTION:
 d2i_SCT_LIST                            2822	1_1_0	EXIST::FUNCTION:
 EC_GFp_nist_method                      2823	1_1_0	EXIST::FUNCTION:EC
 SCT_free                                2824	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_get_msg_imprint             2825	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_msg_imprint             2825	1_1_0	EXIST::FUNCTION:TS
 v3_addr_add_range                       2826	1_1_0	EXIST::FUNCTION:RFC3779
 PKCS12_get_friendlyname                 2827	1_1_0	EXIST::FUNCTION:
 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_TST_INFO_get_ext                     2831	1_1_0	EXIST::FUNCTION:TS
 i2d_OCSP_RESPID                         2832	1_1_0	EXIST::FUNCTION:
 EVP_camellia_256_cfb8                   2833	1_1_0	EXIST::FUNCTION:CAMELLIA
 EC_KEY_get0_public_key                  2834	1_1_0	EXIST::FUNCTION:EC
@@ -2957,7 +2957,7 @@ ASN1_UTCTIME_check                      2856	1_1_0	EXIST::FUNCTION:
 ACCESS_DESCRIPTION_it                   2857	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ACCESS_DESCRIPTION_it                   2857	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 check_defer                             2858	1_1_0	EXIST::FUNCTION:
-TS_MSG_IMPRINT_get_msg                  2859	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_get_msg                  2859	1_1_0	EXIST::FUNCTION:TS
 PKCS8_add_keyusage                      2860	1_1_0	EXIST::FUNCTION:
 X509_EXTENSION_dup                      2861	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_asn1_new                       2862	1_1_0	EXIST::FUNCTION:
@@ -2967,7 +2967,7 @@ EC_GFp_nistp224_method                  2865	1_1_0	EXIST:!WIN32:FUNCTION:EC,EC_N
 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_TST_INFO_get_ext_count               2869	1_1_0	EXIST::FUNCTION:TS
 i2d_OCSP_CERTID                         2870	1_1_0	EXIST::FUNCTION:
 BN_CTX_start                            2871	1_1_0	EXIST::FUNCTION:
 BN_print                                2872	1_1_0	EXIST::FUNCTION:
@@ -2980,7 +2980,7 @@ SCT_set0_signature                      2878	1_1_0	EXIST::FUNCTION:
 X509_CRL_sign                           2879	1_1_0	EXIST::FUNCTION:
 X509_CINF_it                            2880	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 X509_CINF_it                            2880	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-TS_CONF_set_accuracy                    2881	1_1_0	EXIST::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:
@@ -3011,7 +3011,7 @@ DH_set_default_method                   2906	1_1_0	EXIST::FUNCTION:DH
 X509_ALGOR_new                          2907	1_1_0	EXIST::FUNCTION:
 EVP_aes_192_ofb                         2908	1_1_0	EXIST::FUNCTION:AES
 EVP_des_ede3_cfb1                       2909	1_1_0	EXIST::FUNCTION:DES
-TS_REQ_to_TS_VERIFY_CTX                 2910	1_1_0	EXIST::FUNCTION:
+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:
@@ -3076,13 +3076,13 @@ EVP_PKEY_print_private                  2970	1_1_0	EXIST::FUNCTION:
 ASN1_INTEGER_new                        2971	1_1_0	EXIST::FUNCTION:
 NAME_CONSTRAINTS_it                     2972	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 NAME_CONSTRAINTS_it                     2972	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-TS_REQ_get_cert_req                     2973	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_cert_req                     2973	1_1_0	EXIST::FUNCTION:TS
 BIO_pop                                 2974	1_1_0	EXIST::FUNCTION:
 SHA256_Final                            2975	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_set1_DH                        2976	1_1_0	EXIST::FUNCTION:DH
 DH_get_ex_data                          2977	1_1_0	EXIST::FUNCTION:DH
 CRYPTO_secure_malloc                    2978	1_1_0	EXIST::FUNCTION:
-TS_RESP_get_status_info                 2979	1_1_0	EXIST::FUNCTION:
+TS_RESP_get_status_info                 2979	1_1_0	EXIST::FUNCTION:TS
 HMAC_CTX_new                            2980	1_1_0	EXIST::FUNCTION:
 ENGINE_get_default_DH                   2981	1_1_0	EXIST::FUNCTION:ENGINE
 ECDSA_do_verify                         2982	1_1_0	EXIST::FUNCTION:EC
@@ -3104,7 +3104,7 @@ d2i_PROXY_CERT_INFO_EXTENSION           2997	1_1_0	EXIST::FUNCTION:
 EC_POINT_point2buf                      2998	1_1_0	EXIST::FUNCTION:EC
 RSA_padding_add_PKCS1_OAEP_mgf1         2999	1_1_0	EXIST::FUNCTION:RSA
 COMP_CTX_get_type                       3000	1_1_0	EXIST::FUNCTION:COMP
-TS_RESP_CTX_set_status_info             3001	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_status_info             3001	1_1_0	EXIST::FUNCTION:TS
 BIO_f_nbio_test                         3002	1_1_0	EXIST::FUNCTION:
 SEED_ofb128_encrypt                     3003	1_1_0	EXIST::FUNCTION:SEED
 d2i_RSAPrivateKey_bio                   3004	1_1_0	EXIST::FUNCTION:RSA
@@ -3156,7 +3156,7 @@ EVP_DecryptUpdate                       3046	1_1_0	EXIST::FUNCTION:
 CAST_cbc_encrypt                        3047	1_1_0	EXIST::FUNCTION:CAST
 BN_BLINDING_invert                      3048	1_1_0	EXIST::FUNCTION:
 SHA512_Update                           3049	1_1_0	EXIST:!VMSVAX:FUNCTION:
-ESS_ISSUER_SERIAL_new                   3050	1_1_0	EXIST::FUNCTION:
+ESS_ISSUER_SERIAL_new                   3050	1_1_0	EXIST::FUNCTION:TS
 PKCS12_SAFEBAG_get0_pkcs8               3051	1_1_0	EXIST::FUNCTION:
 X509_get_ext_by_NID                     3052	1_1_0	EXIST::FUNCTION:
 d2i_IPAddressFamily                     3053	1_1_0	EXIST::FUNCTION:RFC3779
@@ -3172,7 +3172,7 @@ ASN1_UTCTIME_set                        3062	1_1_0	EXIST::FUNCTION:
 X509_NAME_ENTRY_set_data                3063	1_1_0	EXIST::FUNCTION:
 ASN1_PCTX_set_str_flags                 3064	1_1_0	EXIST::FUNCTION:
 i2a_ASN1_INTEGER                        3065	1_1_0	EXIST::FUNCTION:
-d2i_TS_RESP                             3066	1_1_0	EXIST::FUNCTION:
+d2i_TS_RESP                             3066	1_1_0	EXIST::FUNCTION:TS
 EVP_des_ede_cfb64                       3067	1_1_0	EXIST::FUNCTION:DES
 d2i_RSAPrivateKey                       3068	1_1_0	EXIST::FUNCTION:RSA
 ERR_load_BN_strings                     3069	1_1_0	EXIST::FUNCTION:
@@ -3196,14 +3196,14 @@ X509_TRUST_set                          3086	1_1_0	EXIST::FUNCTION:
 EVP_camellia_192_ecb                    3087	1_1_0	EXIST::FUNCTION:CAMELLIA
 d2i_X509_REVOKED                        3088	1_1_0	EXIST::FUNCTION:
 d2i_IPAddressOrRange                    3089	1_1_0	EXIST::FUNCTION:RFC3779
-TS_TST_INFO_set_version                 3090	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_set_version                 3090	1_1_0	EXIST::FUNCTION:TS
 PKCS12_get0_mac                         3091	1_1_0	EXIST::FUNCTION:
 EVP_EncodeInit                          3092	1_1_0	EXIST::FUNCTION:
 X509_get0_trust_objects                 3093	1_1_0	EXIST::FUNCTION:
 d2i_ECPrivateKey_bio                    3094	1_1_0	EXIST::FUNCTION:EC
 BIO_s_secmem                            3095	1_1_0	EXIST::FUNCTION:
 ENGINE_get_default_EC                   3096	1_1_0	EXIST::FUNCTION:ENGINE
-TS_RESP_create_response                 3097	1_1_0	EXIST::FUNCTION:
+TS_RESP_create_response                 3097	1_1_0	EXIST::FUNCTION:TS
 BIO_ADDR_rawaddress                     3098	1_1_0	EXIST::FUNCTION:
 PKCS7_ENCRYPT_new                       3099	1_1_0	EXIST::FUNCTION:
 i2d_PKCS8PrivateKey_fp                  3100	1_1_0	EXIST::FUNCTION:STDIO
@@ -3235,7 +3235,7 @@ BIO_new_NDEF                            3124	1_1_0	EXIST::FUNCTION:
 EVP_aes_256_wrap                        3125	1_1_0	EXIST::FUNCTION:AES
 ASN1_STRING_print                       3126	1_1_0	EXIST::FUNCTION:
 CRYPTO_THREAD_lock_free                 3127	1_1_0	EXIST::FUNCTION:
-TS_ACCURACY_get_seconds                 3128	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_get_seconds                 3128	1_1_0	EXIST::FUNCTION:TS
 BN_options                              3129	1_1_0	EXIST::FUNCTION:
 BIO_debug_callback                      3130	1_1_0	EXIST::FUNCTION:
 EVP_MD_meth_get_update                  3131	1_1_0	EXIST::FUNCTION:
@@ -3248,11 +3248,11 @@ BN_to_ASN1_ENUMERATED                   3137	1_1_0	EXIST::FUNCTION:
 i2d_ISSUING_DIST_POINT                  3138	1_1_0	EXIST::FUNCTION:
 TXT_DB_free                             3139	1_1_0	EXIST::FUNCTION:
 ASN1_STRING_set                         3140	1_1_0	EXIST::FUNCTION:
-d2i_ESS_CERT_ID                         3141	1_1_0	EXIST::FUNCTION:
+d2i_ESS_CERT_ID                         3141	1_1_0	EXIST::FUNCTION:TS
 EVP_PKEY_meth_set_derive                3142	1_1_0	EXIST::FUNCTION:
 lh_stats                                3143	1_1_0	EXIST::FUNCTION:STDIO
 NCONF_dump_fp                           3144	1_1_0	EXIST::FUNCTION:STDIO
-TS_STATUS_INFO_print_bio                3145	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_print_bio                3145	1_1_0	EXIST::FUNCTION:TS
 sk_dup                                  3146	1_1_0	EXIST::FUNCTION:
 BF_cfb64_encrypt                        3147	1_1_0	EXIST::FUNCTION:BF
 ASN1_GENERALIZEDTIME_adj                3148	1_1_0	EXIST::FUNCTION:
@@ -3261,7 +3261,7 @@ 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:
 X509_CRL_get0_by_cert                   3153	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_set_tsa                     3154	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:
 EVP_PKEY_derive_set_peer                3156	1_1_0	EXIST::FUNCTION:
 X509V3_EXT_CRL_add_conf                 3157	1_1_0	EXIST::FUNCTION:
@@ -3303,7 +3303,7 @@ UI_method_set_flusher                   3192	1_1_0	EXIST::FUNCTION:
 RSA_new_method                          3193	1_1_0	EXIST::FUNCTION:RSA
 OCSP_request_verify                     3194	1_1_0	EXIST::FUNCTION:
 CRYPTO_THREAD_run_once                  3195	1_1_0	EXIST::FUNCTION:
-TS_REQ_print_bio                        3196	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:
 idea_set_encrypt_key                    3198	1_1_0	EXIST::FUNCTION:IDEA
 ENGINE_get_DH                           3199	1_1_0	EXIST::FUNCTION:ENGINE
@@ -3313,7 +3313,7 @@ OCSP_BASICRESP_add_ext                  3202	1_1_0	EXIST::FUNCTION:
 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:AES
-TS_ACCURACY_get_millis                  3206	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_get_millis                  3206	1_1_0	EXIST::FUNCTION:TS
 X509_CRL_get_REVOKED                    3207	1_1_0	EXIST::FUNCTION:
 X509_issuer_name_hash_old               3208	1_1_0	EXIST::FUNCTION:MD5
 i2d_PKCS12_SAFEBAG                      3209	1_1_0	EXIST::FUNCTION:
@@ -3342,9 +3342,9 @@ ENGINE_set_default_pkey_meths           3231	1_1_0	EXIST::FUNCTION:ENGINE
 DH_bits                                 3232	1_1_0	EXIST::FUNCTION:DH
 i2d_X509_ALGORS                         3233	1_1_0	EXIST::FUNCTION:
 EVP_camellia_192_cfb1                   3234	1_1_0	EXIST::FUNCTION:CAMELLIA
-TS_RESP_CTX_add_failure_info            3235	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_add_failure_info            3235	1_1_0	EXIST::FUNCTION:TS
 EVP_PBE_alg_add                         3236	1_1_0	EXIST::FUNCTION:
-ESS_CERT_ID_dup                         3237	1_1_0	EXIST::FUNCTION:
+ESS_CERT_ID_dup                         3237	1_1_0	EXIST::FUNCTION:TS
 CMS_SignerInfo_get0_signature           3238	1_1_0	EXIST::FUNCTION:CMS
 EVP_PKEY_verify_recover                 3239	1_1_0	EXIST::FUNCTION:
 i2d_PUBKEY                              3240	1_1_0	EXIST::FUNCTION:
@@ -3391,7 +3391,7 @@ d2i_DSA_PUBKEY_bio                      3279	1_1_0	EXIST::FUNCTION:DSA
 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_VERIFY_CTX_init                      3283	1_1_0	EXIST::FUNCTION:TS
 OCSP_cert_id_new                        3284	1_1_0	EXIST::FUNCTION:
 GENERAL_SUBTREE_new                     3285	1_1_0	EXIST::FUNCTION:
 sk_push                                 3286	1_1_0	EXIST::FUNCTION:
@@ -3416,7 +3416,7 @@ EVP_PKEY_set_type_str                   3303	1_1_0	EXIST::FUNCTION:
 i2d_X509_SIG                            3304	1_1_0	EXIST::FUNCTION:
 lh_strhash                              3305	1_1_0	EXIST::FUNCTION:
 X509_STORE_CTX_set_trust                3306	1_1_0	EXIST::FUNCTION:
-TS_ACCURACY_set_micros                  3307	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_set_micros                  3307	1_1_0	EXIST::FUNCTION:TS
 EVP_DigestFinal_ex                      3308	1_1_0	EXIST::FUNCTION:
 X509_get0_pubkey                        3309	1_1_0	EXIST::FUNCTION:
 X509_check_ip                           3310	1_1_0	EXIST::FUNCTION:
@@ -3426,7 +3426,7 @@ COMP_compress_block                     3313	1_1_0	EXIST::FUNCTION:COMP
 ASN1_STRING_dup                         3314	1_1_0	EXIST::FUNCTION:
 X509_LOOKUP_free                        3315	1_1_0	EXIST::FUNCTION:
 EC_GROUP_cmp                            3316	1_1_0	EXIST::FUNCTION:EC
-TS_TST_INFO_get_ext_by_critical         3317	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_get_ext_by_critical         3317	1_1_0	EXIST::FUNCTION:TS
 ECParameters_print_fp                   3318	1_1_0	EXIST::FUNCTION:EC,STDIO
 X509_REQ_sign                           3319	1_1_0	EXIST::FUNCTION:
 CRYPTO_xts128_encrypt                   3320	1_1_0	EXIST::FUNCTION:
@@ -3470,7 +3470,7 @@ X509_ATTRIBUTE_create_by_OBJ            3356	1_1_0	EXIST::FUNCTION:
 RSA_generate_key_ex                     3357	1_1_0	EXIST::FUNCTION:RSA
 CMS_SignerInfo_get0_algs                3358	1_1_0	EXIST::FUNCTION:CMS
 DIST_POINT_free                         3359	1_1_0	EXIST::FUNCTION:
-ESS_SIGNING_CERT_free                   3360	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:
 OpenSSL_version                         3362	1_1_0	EXIST::FUNCTION:
 OCSP_SINGLERESP_get_ext_by_OBJ          3363	1_1_0	EXIST::FUNCTION:
@@ -3523,7 +3523,7 @@ OCSP_REQ_CTX_set1_req                   3407	1_1_0	EXIST::FUNCTION:
 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:
-TS_VERIFY_CTX_new                       3411	1_1_0	EXIST::FUNCTION:
+TS_VERIFY_CTX_new                       3411	1_1_0	EXIST::FUNCTION:TS
 BUF_MEM_new_ex                          3412	1_1_0	EXIST::FUNCTION:
 RSA_padding_add_X931                    3413	1_1_0	EXIST::FUNCTION:RSA
 BN_get0_nist_prime_256                  3414	1_1_0	EXIST::FUNCTION:
@@ -3576,7 +3576,7 @@ EC_KEY_priv2oct                         3460	1_1_0	EXIST::FUNCTION:EC
 PKCS7_simple_smimecap                   3461	1_1_0	EXIST::FUNCTION:
 ASN1_TYPE_set_int_octetstring           3462	1_1_0	EXIST::FUNCTION:
 BIO_number_written                      3463	1_1_0	EXIST::FUNCTION:
-TS_TST_INFO_set_msg_imprint             3464	1_1_0	EXIST::FUNCTION:
+TS_TST_INFO_set_msg_imprint             3464	1_1_0	EXIST::FUNCTION:TS
 CRYPTO_get_ex_data                      3465	1_1_0	EXIST::FUNCTION:
 X509_PURPOSE_get0_sname                 3466	1_1_0	EXIST::FUNCTION:
 RSA_verify_PKCS1_PSS                    3467	1_1_0	EXIST::FUNCTION:RSA
@@ -3591,7 +3591,7 @@ EVP_PKEY_save_parameters                3475	1_1_0	EXIST::FUNCTION:
 SCT_set_source                          3476	1_1_0	EXIST::FUNCTION:
 DES_set_odd_parity                      3477	1_1_0	EXIST::FUNCTION:DES
 CMAC_CTX_free                           3478	1_1_0	EXIST::FUNCTION:
-d2i_ESS_ISSUER_SERIAL                   3479	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:
@@ -3641,7 +3641,7 @@ EVP_bf_cbc                              3524	1_1_0	EXIST::FUNCTION:BF
 DSA_do_verify                           3525	1_1_0	EXIST::FUNCTION:DSA
 EC_GROUP_get_seed_len                   3526	1_1_0	EXIST::FUNCTION:EC
 EC_POINT_set_affine_coordinates_GF2m    3527	1_1_0	EXIST::FUNCTION:EC,EC2M
-TS_REQ_set_policy_id                    3528	1_1_0	EXIST::FUNCTION:
+TS_REQ_set_policy_id                    3528	1_1_0	EXIST::FUNCTION:TS
 BIO_callback_ctrl                       3529	1_1_0	EXIST::FUNCTION:
 v2i_GENERAL_NAME                        3530	1_1_0	EXIST::FUNCTION:
 ERR_print_errors_cb                     3531	1_1_0	EXIST::FUNCTION:
@@ -3688,7 +3688,7 @@ X509_ALGOR_it                           3570	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 OCSP_CRLID_free                         3571	1_1_0	EXIST::FUNCTION:
 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:
+d2i_TS_ACCURACY                         3574	1_1_0	EXIST::FUNCTION:TS
 X509_load_crl_file                      3575	1_1_0	EXIST::FUNCTION:
 SXNET_add_id_ulong                      3576	1_1_0	EXIST::FUNCTION:
 EVP_camellia_256_cbc                    3577	1_1_0	EXIST::FUNCTION:CAMELLIA
@@ -3734,7 +3734,7 @@ CMS_unsigned_add1_attr_by_OBJ           3615	1_1_0	EXIST::FUNCTION:CMS
 PEM_write_EC_PUBKEY                     3616	1_1_0	EXIST::FUNCTION:EC
 v3_asid_add_inherit                     3617	1_1_0	EXIST::FUNCTION:RFC3779
 ERR_get_error                           3618	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_signer_digest               3619	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_signer_digest               3619	1_1_0	EXIST::FUNCTION:TS
 OBJ_new_nid                             3620	1_1_0	EXIST::FUNCTION:
 CMS_ReceiptRequest_new                  3621	1_1_0	EXIST::FUNCTION:CMS
 SRP_VBASE_get1_by_user                  3622	1_1_0	EXIST::FUNCTION:SRP
@@ -3745,9 +3745,9 @@ MD2_Update                              3626	1_1_0	EXIST::FUNCTION:MD2
 CRYPTO_THREADID_set_callback            3627	1_1_0	NOEXIST::FUNCTION:
 ENGINE_free                             3628	1_1_0	EXIST::FUNCTION:ENGINE
 d2i_X509_ATTRIBUTE                      3629	1_1_0	EXIST::FUNCTION:
-TS_RESP_free                            3630	1_1_0	EXIST::FUNCTION:
+TS_RESP_free                            3630	1_1_0	EXIST::FUNCTION:TS
 PKCS5_pbe_set                           3631	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_free                        3632	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_free                        3632	1_1_0	EXIST::FUNCTION:TS
 d2i_PUBKEY                              3633	1_1_0	EXIST::FUNCTION:
 ASYNC_cleanup_thread                    3634	1_1_0	EXIST::FUNCTION:
 SHA384_Update                           3635	1_1_0	EXIST:!VMSVAX:FUNCTION:
@@ -3768,7 +3768,7 @@ X509_free                               3648	1_1_0	EXIST::FUNCTION:
 ERR_load_ERR_strings                    3649	1_1_0	EXIST::FUNCTION:
 ASN1_const_check_infinite_end           3650	1_1_0	EXIST::FUNCTION:
 RSA_null_method                         3651	1_1_0	EXIST::FUNCTION:RSA
-TS_REQ_ext_free                         3652	1_1_0	EXIST::FUNCTION:
+TS_REQ_ext_free                         3652	1_1_0	EXIST::FUNCTION:TS
 EVP_PKEY_meth_get_encrypt               3653	1_1_0	EXIST::FUNCTION:
 Camellia_ecb_encrypt                    3654	1_1_0	EXIST::FUNCTION:CAMELLIA
 ENGINE_set_default_RSA                  3655	1_1_0	EXIST::FUNCTION:ENGINE
@@ -3776,16 +3776,16 @@ EVP_EncodeBlock                         3656	1_1_0	EXIST::FUNCTION:
 SXNETID_free                            3657	1_1_0	EXIST::FUNCTION:
 SHA1_Init                               3658	1_1_0	EXIST::FUNCTION:
 CRYPTO_atomic_add                       3659	1_1_0	EXIST::FUNCTION:
-TS_CONF_load_certs                      3660	1_1_0	EXIST::FUNCTION:
+TS_CONF_load_certs                      3660	1_1_0	EXIST::FUNCTION:TS
 PEM_write_bio_DSAPrivateKey             3661	1_1_0	EXIST::FUNCTION:DSA
 CMS_encrypt                             3662	1_1_0	EXIST::FUNCTION:CMS
 CRYPTO_nistcts128_decrypt               3663	1_1_0	EXIST::FUNCTION:
 ERR_load_DH_strings                     3664	1_1_0	EXIST::FUNCTION:DH
 EVP_MD_block_size                       3665	1_1_0	EXIST::FUNCTION:
-TS_X509_ALGOR_print_bio                 3666	1_1_0	EXIST::FUNCTION:
+TS_X509_ALGOR_print_bio                 3666	1_1_0	EXIST::FUNCTION:TS
 d2i_PKCS7_ENVELOPE                      3667	1_1_0	EXIST::FUNCTION:
 OBJ_cleanup                             3668	1_1_0	EXIST::FUNCTION:
-ESS_CERT_ID_new                         3669	1_1_0	EXIST::FUNCTION:
+ESS_CERT_ID_new                         3669	1_1_0	EXIST::FUNCTION:TS
 EC_POINT_invert                         3670	1_1_0	EXIST::FUNCTION:EC
 CAST_set_key                            3671	1_1_0	EXIST::FUNCTION:CAST
 ENGINE_get_pkey_meth                    3672	1_1_0	EXIST::FUNCTION:ENGINE
@@ -3834,10 +3834,10 @@ PKCS7_RECIP_INFO_it                     3712	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:
 ENGINE_register_all_digests             3713	1_1_0	EXIST::FUNCTION:ENGINE
 X509_REQ_get_version                    3714	1_1_0	EXIST::FUNCTION:
 i2d_ASN1_UTCTIME                        3715	1_1_0	EXIST::FUNCTION:
-TS_STATUS_INFO_new                      3716	1_1_0	EXIST::FUNCTION:
+TS_STATUS_INFO_new                      3716	1_1_0	EXIST::FUNCTION:TS
 UI_set_ex_data                          3717	1_1_0	EXIST::FUNCTION:
 ASN1_TIME_set                           3718	1_1_0	EXIST::FUNCTION:
-TS_RESP_verify_response                 3719	1_1_0	EXIST::FUNCTION:
+TS_RESP_verify_response                 3719	1_1_0	EXIST::FUNCTION:TS
 X509_REVOKED_get0_serialNumber          3720	1_1_0	EXIST::FUNCTION:
 X509_VERIFY_PARAM_free                  3721	1_1_0	EXIST::FUNCTION:
 ASN1_TYPE_new                           3722	1_1_0	EXIST::FUNCTION:
@@ -3863,13 +3863,13 @@ X509V3_EXT_val_prn                      3741	1_1_0	EXIST::FUNCTION:
 SCT_get_validation_status               3742	1_1_0	EXIST::FUNCTION:
 NETSCAPE_CERT_SEQUENCE_free             3743	1_1_0	EXIST::FUNCTION:
 EVP_PBE_scrypt                          3744	1_1_0	EXIST::FUNCTION:SCRYPT
-d2i_TS_REQ_bio                          3745	1_1_0	EXIST::FUNCTION:
+d2i_TS_REQ_bio                          3745	1_1_0	EXIST::FUNCTION:TS
 ENGINE_set_default_ciphers              3746	1_1_0	EXIST::FUNCTION:ENGINE
 X509_get_signature_nid                  3747	1_1_0	EXIST::FUNCTION:
 DES_fcrypt                              3748	1_1_0	EXIST::FUNCTION:DES
 PEM_write_bio_X509_REQ                  3749	1_1_0	EXIST::FUNCTION:
 EVP_PKEY_meth_get_sign                  3750	1_1_0	EXIST::FUNCTION:
-TS_REQ_get_nonce                        3751	1_1_0	EXIST::FUNCTION:
+TS_REQ_get_nonce                        3751	1_1_0	EXIST::FUNCTION:TS
 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:
@@ -3912,7 +3912,7 @@ CMS_signed_add1_attr                    3788	1_1_0	EXIST::FUNCTION:CMS
 EVP_CIPHER_meth_set_iv_length           3789	1_1_0	EXIST::FUNCTION:
 v3_asid_validate_path                   3790	1_1_0	EXIST::FUNCTION:RFC3779
 CMS_RecipientInfo_set0_password         3791	1_1_0	EXIST::FUNCTION:CMS
-TS_CONF_load_cert                       3792	1_1_0	EXIST::FUNCTION:
+TS_CONF_load_cert                       3792	1_1_0	EXIST::FUNCTION:TS
 i2d_ECPKParameters                      3793	1_1_0	EXIST::FUNCTION:EC
 X509_TRUST_get0                         3794	1_1_0	EXIST::FUNCTION:
 CMS_get0_RecipientInfos                 3795	1_1_0	EXIST::FUNCTION:CMS
@@ -3920,7 +3920,7 @@ EVP_PKEY_CTX_new                        3796	1_1_0	EXIST::FUNCTION:
 i2d_DSA_PUBKEY_bio                      3797	1_1_0	EXIST::FUNCTION:DSA
 X509_REQ_get_subject_name               3798	1_1_0	EXIST::FUNCTION:
 BN_div_word                             3799	1_1_0	EXIST::FUNCTION:
-TS_CONF_set_signer_key                  3800	1_1_0	EXIST::FUNCTION:
+TS_CONF_set_signer_key                  3800	1_1_0	EXIST::FUNCTION:TS
 BN_GF2m_mod_sqrt                        3801	1_1_0	EXIST::FUNCTION:EC2M
 EVP_CIPHER_nid                          3802	1_1_0	EXIST::FUNCTION:
 OBJ_txt2obj                             3803	1_1_0	EXIST::FUNCTION:
@@ -3989,8 +3989,8 @@ OCSP_REQUEST_it                         3862	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION
 OCSP_REQUEST_it                         3862	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
 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_TST_INFO_get_ext_by_OBJ              3865	1_1_0	EXIST::FUNCTION:
+i2d_TS_RESP                             3864	1_1_0	EXIST::FUNCTION:TS
+TS_TST_INFO_get_ext_by_OBJ              3865	1_1_0	EXIST::FUNCTION:TS
 d2i_PKCS7_RECIP_INFO                    3866	1_1_0	EXIST::FUNCTION:
 d2i_X509_CRL                            3867	1_1_0	EXIST::FUNCTION:
 ASN1_OCTET_STRING_dup                   3868	1_1_0	EXIST::FUNCTION:
@@ -4013,11 +4013,11 @@ i2d_X509_CRL                            3883	1_1_0	EXIST::FUNCTION:
 BIO_sock_cleanup                        3884	1_1_0	EXIST::FUNCTION:
 ASN1_INTEGER_it                         3885	1_1_0	EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE:
 ASN1_INTEGER_it                         3885	1_1_0	EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION:
-TS_ACCURACY_new                         3886	1_1_0	EXIST::FUNCTION:
+TS_ACCURACY_new                         3886	1_1_0	EXIST::FUNCTION:TS
 i2d_SXNETID                             3887	1_1_0	EXIST::FUNCTION:
 BN_mod_mul_montgomery                   3888	1_1_0	EXIST::FUNCTION:
 BN_nnmod                                3889	1_1_0	EXIST::FUNCTION:
-TS_RESP_CTX_set_status_info_cond        3890	1_1_0	EXIST::FUNCTION:
+TS_RESP_CTX_set_status_info_cond        3890	1_1_0	EXIST::FUNCTION:TS
 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:
@@ -4032,7 +4032,7 @@ d2i_OCSP_SINGLERESP                     3900	1_1_0	EXIST::FUNCTION:
 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:
-TS_MSG_IMPRINT_set_msg                  3904	1_1_0	EXIST::FUNCTION:
+TS_MSG_IMPRINT_set_msg                  3904	1_1_0	EXIST::FUNCTION:TS
 CMS_unsigned_add1_attr                  3905	1_1_0	EXIST::FUNCTION:CMS
 lh_doall                                3906	1_1_0	EXIST::FUNCTION:
 PKCS8_pkey_get0_attrs                   3907	1_1_0	EXIST::FUNCTION:
diff --git a/util/mkdef.pl b/util/mkdef.pl
index ec19078..129e6b4 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -117,6 +117,8 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
 		 	 "UNIT_TEST",
 			 # User Interface
 			 "UI",
+			 #
+			 "TS",
 			 # OCB mode
 			 "OCB",
                          # APPLINK (win build feature?)


More information about the openssl-commits mailing list