Lines Matching refs:is

46 The Time-Stamp Protocol (TSP) is defined by RFC 3161. TSP is a protocol used to
49 requests to the TSA. Usually, the TSA is referred to as the server side, and the
50 requesting entity is referred to as the client.
57 For all the following methods, unless noted otherwise, I<ctx> is the
64 TS_VERIFY_CTX_free() frees up a B<TS_VERIFY_CTX> object. I<ctx> is the
65 verification context to be freed. If I<ctx> is NULL, the call is ignored.
73 TS_VERIFY_CTX_set0_data() sets the data to be verified. I<b> is the B<BIO> with
74 the data. A previously assigned B<BIO> is freed.
76 TS_VERIFY_CTX_set0_imprint() sets the message imprint. I<hexstr> is the
77 message imprint to be assigned. A previously assigned imprint is freed.
79 TS_VERIFY_CTX_set0_store() sets the store for the verification context. I<s> is
80 the store to be assigned. A previously assigned store is freed.
82 TS_VERIFY_CTX_set0_certs() is used to set the server's certificate chain when
83 verifying a TST. I<certs> is a stack of B<X509> certificates.
86 B<TS_VERIFY_CTX> object and initializes it. I<ctx> is the verification context
87 created in advance. If I<ctx> is NULL, the call is ignored.
94 TS_VERIFY_CTX_set_data() is used to set the BIO with the data to be verified.
95 A previously assigned BIO is B<not freed> by this call. I<b> is the B<BIO>
98 TS_VERIFY_CTX_set_imprint() is used to set the message imprint. A previously
99 assigned imprint B<is freed> by this call. I<hexstr> is the string with the
102 TS_VERIFY_CTX_set_store() is used to set the certificate store. A previously
103 assigned store is B<not freed> by this call. I<s> is the store to assign.
105 TS_VERIFY_CTX_set_certs() is used to set the server's certificate chain.
106 A previously assigned stack is B<not freed> by this call. I<certs> is a stack
109 TS_VERIFY_CTS_set_certs() is a misspelled version of TS_VERIFY_CTX_set_certs()
143 compatibility reasons, but it is deprecated in OpenSSL 3.0.0.