TS_RESP_CTX_new.3ossl - Man Page

Timestamp response context object creation

Synopsis

 #include <openssl/ts.h>

 TS_RESP_CTX *TS_RESP_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
 TS_RESP_CTX *TS_RESP_CTX_new(void);
 void TS_RESP_CTX_free(TS_RESP_CTX *ctx);

Description

Creates a response context that can be used for generating responses.

TS_RESP_CTX_new_ex() allocates and initializes a TS_RESP_CTX structure with a library context of libctx and a property query of propq. The library context and property query can be used to select which providers supply the fetched algorithms.

TS_RESP_CTX_new() is similar to TS_RESP_CTX_new_ex() but sets the library context and property query to NULL. This results in the default (NULL) library context being used for any operations requiring algorithm fetches.

TS_RESP_CTX_free() frees the TS_RESP_CTX object ctx.

Return Values

If the allocation fails, TS_RESP_CTX_new_ex() and TS_RESP_CTX_new() return NULL, otherwise it returns a pointer to the newly allocated structure.

History

The function TS_RESP_CTX_new_ex() was added in OpenSSL 3.0.

Referenced By

ossl-guide-migration.7ossl(7).

The man pages TS_RESP_CTX_free.3ossl(3) and TS_RESP_CTX_new_ex.3ossl(3) are aliases of TS_RESP_CTX_new.3ossl(3).

2024-04-04 3.2.1 OpenSSL