1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | TS_RESP_CTX_new_ex, TS_RESP_CTX_new,
|
---|
6 | TS_RESP_CTX_free - Timestamp response context object creation
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | #include <openssl/ts.h>
|
---|
11 |
|
---|
12 | TS_RESP_CTX *TS_RESP_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
|
---|
13 | TS_RESP_CTX *TS_RESP_CTX_new(void);
|
---|
14 | void TS_RESP_CTX_free(TS_RESP_CTX *ctx);
|
---|
15 |
|
---|
16 | =head1 DESCRIPTION
|
---|
17 |
|
---|
18 | Creates a response context that can be used for generating responses.
|
---|
19 |
|
---|
20 | TS_RESP_CTX_new_ex() allocates and initializes a TS_RESP_CTX structure with a
|
---|
21 | library context of I<libctx> and a property query of I<propq>.
|
---|
22 | The library context and property query can be used to select which providers
|
---|
23 | supply the fetched algorithms.
|
---|
24 |
|
---|
25 | TS_RESP_CTX_new() is similar to TS_RESP_CTX_new_ex() but sets the library context
|
---|
26 | and property query to NULL. This results in the default (NULL) library context
|
---|
27 | being used for any operations requiring algorithm fetches.
|
---|
28 |
|
---|
29 | TS_RESP_CTX_free() frees the B<TS_RESP_CTX> object I<ctx>.
|
---|
30 |
|
---|
31 | =head1 RETURN VALUES
|
---|
32 |
|
---|
33 | If the allocation fails, TS_RESP_CTX_new_ex() and TS_RESP_CTX_new() return NULL,
|
---|
34 | otherwise it returns a pointer to the newly allocated structure.
|
---|
35 |
|
---|
36 | =head1 HISTORY
|
---|
37 |
|
---|
38 | The function TS_RESP_CTX_new_ex() was added in OpenSSL 3.0.
|
---|
39 |
|
---|
40 | =head1 COPYRIGHT
|
---|
41 |
|
---|
42 | Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
43 |
|
---|
44 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
45 | this file except in compliance with the License. You can obtain a copy
|
---|
46 | in the file LICENSE in the source distribution or at
|
---|
47 | L<https://www.openssl.org/source/license.html>.
|
---|
48 |
|
---|
49 | =cut
|
---|