SCT_print.pod 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. =pod
  2. =head1 NAME
  3. SCT_print, SCT_LIST_print, SCT_validation_status_string -
  4. Prints Signed Certificate Timestamps in a human-readable way
  5. =head1 SYNOPSIS
  6. #include <openssl/ct.h>
  7. void SCT_print(const SCT *sct, BIO *out, int indent, const CTLOG_STORE *logs);
  8. void SCT_LIST_print(const STACK_OF(SCT) *sct_list, BIO *out, int indent,
  9. const char *separator, const CTLOG_STORE *logs);
  10. const char *SCT_validation_status_string(const SCT *sct);
  11. =head1 DESCRIPTION
  12. SCT_print() prints a single Signed Certificate Timestamp (SCT) to a L<bio> in
  13. a human-readable format. SCT_LIST_print() prints an entire list of SCTs in a
  14. similar way. A separator can be specified to delimit each SCT in the output.
  15. The output can be indented by a specified number of spaces. If a B<CTLOG_STORE>
  16. is provided, it will be used to print the description of the CT log that issued
  17. each SCT (if that log is in the CTLOG_STORE). Alternatively, NULL can be passed
  18. as the CTLOG_STORE parameter to disable this feature.
  19. SCT_validation_status_string() will return the validation status of an SCT as
  20. a human-readable string. Call SCT_validate() or SCT_LIST_validate()
  21. beforehand in order to set the validation status of an SCT first.
  22. =head1 RETURN VALUES
  23. SCT_validation_status_string() returns a null-terminated string representing
  24. the validation status of an B<SCT> object.
  25. =head1 SEE ALSO
  26. L<ct(7)>,
  27. L<bio(7)>,
  28. L<CTLOG_STORE_new(3)>,
  29. L<SCT_validate(3)>
  30. =head1 HISTORY
  31. These functions were added in OpenSSL 1.1.0.
  32. =head1 COPYRIGHT
  33. Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
  34. Licensed under the Apache License 2.0 (the "License"). You may not use
  35. this file except in compliance with the License. You can obtain a copy
  36. in the file LICENSE in the source distribution or at
  37. L<https://www.openssl.org/source/license.html>.
  38. =cut