aboutsummaryrefslogtreecommitdiffstats
path: root/include/openssl/ct.h
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-03-08 19:09:06 +0000
committerRich Salz <rsalz@openssl.org>2016-03-09 11:34:48 -0500
commit14db9bbd710ac8aaaee89280e9b5ffb5afedb712 (patch)
treefcbb23bd46bfe0cdf80481f2c77af37512c7429b /include/openssl/ct.h
parent21b908a8f95a4b2e095c64876c6991020e6c099e (diff)
downloadopenssl-14db9bbd710ac8aaaee89280e9b5ffb5afedb712.tar.gz
Removes SCT_LIST_set_source and SCT_LIST_set0_logs
Both of these functions can easily be implemented by callers instead. Reviewed-by: Emilia Käsper <emilia@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include/openssl/ct.h')
-rw-r--r--include/openssl/ct.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/openssl/ct.h b/include/openssl/ct.h
index 80ade2577e..98b2231400 100644
--- a/include/openssl/ct.h
+++ b/include/openssl/ct.h
@@ -307,12 +307,6 @@ sct_source_t SCT_get_source(const SCT *sct);
__owur int SCT_set_source(SCT *sct, sct_source_t source);
/*
- * Sets the source of all of the SCTs to the same value.
- * Returns the number of SCTs whose source was set successfully.
- */
-__owur int SCT_LIST_set_source(const STACK_OF(SCT) *scts, sct_source_t source);
-
-/*
* Gets information about the log the SCT came from, if set.
*/
const CTLOG *SCT_get0_log(const SCT *sct);
@@ -325,13 +319,6 @@ const CTLOG *SCT_get0_log(const SCT *sct);
int SCT_set0_log(SCT *sct, const CTLOG_STORE* ct_logs);
/*
- * Looks up information about the logs the SCTs came from using a CT log store.
- * Returns the number of SCTs that now have a log set.
- * If any SCTs already have a log set, they will be skipped.
- */
-int SCT_LIST_set0_logs(STACK_OF(SCT) *sct_list, const CTLOG_STORE *ct_logs);
-
-/*
* Pretty-prints an |sct| to |out|.
* It will be indented by the number of spaces specified by |indent|.
*/