TS_RESP_CTX_new.pod 1.5 KB

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