summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-08-23 18:11:13 +0100
committerMatt Caswell <matt@openssl.org>2016-08-24 13:58:19 +0100
commite12981019aa44d162a5ec553a1cfadf3b5754c9a (patch)
tree6b7e3aef048f0c175535a46f86b37a2c251a6620
parenta0a9f36ebf70c4705d08eb93e23ae64bd28a0bbd (diff)
Removes the SCT_verify* POD
SCT_verify_v1 has been removed and SCT_verify is no longer part of the public API. Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
-rw-r--r--doc/crypto/SCT_verify.pod44
1 files changed, 0 insertions, 44 deletions
diff --git a/doc/crypto/SCT_verify.pod b/doc/crypto/SCT_verify.pod
deleted file mode 100644
index 815f8e7aa9..0000000000
--- a/doc/crypto/SCT_verify.pod
+++ /dev/null
@@ -1,44 +0,0 @@
-=pod
-
-=head1 NAME
-
-SCT_verify, SCT_verify_v1 -
-verifies a Signed Certificate Timestamp's signature
-
-=head1 SYNOPSIS
-
- #include <openssl/ct.h>
-
- int SCT_verify(const SCT_CTX *sctx, const SCT *sct);
- int SCT_verify_v1(SCT *sct, X509 *cert, X509 *preissuer, X509_PUBKEY *log_pubkey, X509 *issuer_cert);
-
-=head1 DESCRIPTION
-
-
-
-=head1 NOTES
-
-
-
-=head1 RETURN VALUES
-
-
-
-=head1 SEE ALSO
-
-L<ct(3)>
-
-=head1 HISTORY
-
-These functions were added in OpenSSL 1.1.0.
-
-=head1 COPYRIGHT
-
-Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
-
-Licensed under the OpenSSL license (the "License"). You may not use
-this file except in compliance with the License. You can obtain a copy
-in the file LICENSE in the source distribution or at
-L<https://www.openssl.org/source/license.html>.
-
-=cut