summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-02-25 18:11:16 +0000
committerRich Salz <rsalz@openssl.org>2016-02-26 14:57:29 -0500
commit0cea8832df37d8fd3e664caec8abbdaa002122b1 (patch)
tree64ca3e44191f81b12c7a3f75baff67612679f85f /util
parent186d04a543498753103f4b6e99f3d4460fe2676d (diff)
Public API for Certificate Transparency
Reviewed-by: Ben Laurie <ben@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/libeay.num31
-rwxr-xr-xutil/mkdef.pl5
2 files changed, 34 insertions, 2 deletions
diff --git a/util/libeay.num b/util/libeay.num
index 3eaa9974e8..9323df0edf 100755
--- a/util/libeay.num
+++ b/util/libeay.num
@@ -4726,3 +4726,34 @@ CRYPTO_THREAD_get_local 5229 1_1_0 EXIST::FUNCTION:
CRYPTO_THREAD_get_current_id 5230 1_1_0 EXIST::FUNCTION:
CRYPTO_THREAD_compare_id 5231 1_1_0 EXIST::FUNCTION:
CRYPTO_THREAD_run_once 5232 1_1_0 EXIST::FUNCTION:
+SCT_get0_extensions 5233 1_1_0 EXIST::FUNCTION:
+SCT_get0_log_id 5234 1_1_0 EXIST::FUNCTION:
+o2i_SCT_signature 5235 1_1_0 EXIST::FUNCTION:
+i2o_SCT_signature 5236 1_1_0 EXIST::FUNCTION:
+SCT_set_timestamp 5237 1_1_0 EXIST::FUNCTION:
+i2o_SCT_LIST 5238 1_1_0 EXIST::FUNCTION:
+SCT_get_version 5239 1_1_0 EXIST::FUNCTION:
+i2d_SCT_LIST 5240 1_1_0 EXIST::FUNCTION:
+SCT_set1_log_id 5241 1_1_0 EXIST::FUNCTION:
+SCT_new 5242 1_1_0 EXIST::FUNCTION:
+SCT_get_signature_nid 5243 1_1_0 EXIST::FUNCTION:
+SCT_set0_extensions 5244 1_1_0 EXIST::FUNCTION:
+SCT_print 5245 1_1_0 EXIST::FUNCTION:
+SCT_get_timestamp 5246 1_1_0 EXIST::FUNCTION:
+SCT_set0_signature 5247 1_1_0 EXIST::FUNCTION:
+o2i_SCT 5248 1_1_0 EXIST::FUNCTION:
+SCT_set1_signature 5249 1_1_0 EXIST::FUNCTION:
+ERR_load_CT_strings 5250 1_1_0 EXIST::FUNCTION:
+SCT_set_signature_nid 5251 1_1_0 EXIST::FUNCTION:
+SCT_free 5252 1_1_0 EXIST::FUNCTION:
+SCT_set1_extensions 5253 1_1_0 EXIST::FUNCTION:
+SCT_set0_log_id 5254 1_1_0 EXIST::FUNCTION:
+d2i_SCT_LIST 5255 1_1_0 EXIST::FUNCTION:
+SCT_set_log_entry_type 5256 1_1_0 EXIST::FUNCTION:
+SCT_LIST_print 5257 1_1_0 EXIST::FUNCTION:
+SCT_get0_signature 5258 1_1_0 EXIST::FUNCTION:
+i2o_SCT 5259 1_1_0 EXIST::FUNCTION:
+o2i_SCT_LIST 5260 1_1_0 EXIST::FUNCTION:
+SCT_set_version 5261 1_1_0 EXIST::FUNCTION:
+SCT_LIST_free 5262 1_1_0 EXIST::FUNCTION:
+SCT_get_log_entry_type 5263 1_1_0 EXIST::FUNCTION:
diff --git a/util/mkdef.pl b/util/mkdef.pl
index a7abfd2d5c..a11b008d0e 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -90,8 +90,8 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
"STATIC_ENGINE", "ENGINE", "HW", "GMP",
# Entropy Gathering
"EGD",
- # X.509v3 Signed Certificate Timestamps
- "SCT",
+ # Certificate Transparency
+ "CT",
# RFC3779
"RFC3779",
# TLS
@@ -294,6 +294,7 @@ $crypto.=" include/openssl/cms.h";
$crypto.=" include/openssl/srp.h";
$crypto.=" include/openssl/modes.h";
$crypto.=" include/openssl/async.h";
+$crypto.=" include/openssl/ct.h";
my $symhacks="include/openssl/symhacks.h";