diff options
author | Rob Percival <robpercival@google.com> | 2016-03-08 20:09:06 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-03-09 17:34:48 +0100 |
commit | 14db9bbd710ac8aaaee89280e9b5ffb5afedb712 (patch) | |
tree | fcbb23bd46bfe0cdf80481f2c77af37512c7429b /include | |
parent | Makes SCT_get0_log return const CTLOG* (diff) | |
download | openssl-14db9bbd710ac8aaaee89280e9b5ffb5afedb712.tar.xz openssl-14db9bbd710ac8aaaee89280e9b5ffb5afedb712.zip |
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')
-rw-r--r-- | include/openssl/ct.h | 13 |
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|. */ |