mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Makes CTLOG_STORE_get0_log_by_id return const CTLOG*
Reviewed-by: Emilia Käsper <emilia@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
98af731064
commit
12d2d28185
@ -334,14 +334,14 @@ EVP_PKEY *CTLOG_get0_public_key(const CTLOG *log)
|
|||||||
* Given a log ID, finds the matching log.
|
* Given a log ID, finds the matching log.
|
||||||
* Returns NULL if no match found.
|
* Returns NULL if no match found.
|
||||||
*/
|
*/
|
||||||
CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
|
const CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
|
||||||
const uint8_t *log_id,
|
const uint8_t *log_id,
|
||||||
size_t log_id_len)
|
size_t log_id_len)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < sk_CTLOG_num(store->logs); ++i) {
|
for (i = 0; i < sk_CTLOG_num(store->logs); ++i) {
|
||||||
CTLOG *log = sk_CTLOG_value(store->logs, i);
|
const CTLOG *log = sk_CTLOG_value(store->logs, i);
|
||||||
if (memcmp(log->log_id, log_id, log_id_len) == 0)
|
if (memcmp(log->log_id, log_id, log_id_len) == 0)
|
||||||
return log;
|
return log;
|
||||||
}
|
}
|
||||||
|
@ -539,9 +539,9 @@ void CTLOG_STORE_free(CTLOG_STORE *store);
|
|||||||
* Finds a CT log in the store based on its log ID.
|
* Finds a CT log in the store based on its log ID.
|
||||||
* Returns the CT log, or NULL if no match is found.
|
* Returns the CT log, or NULL if no match is found.
|
||||||
*/
|
*/
|
||||||
CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
|
const CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
|
||||||
const uint8_t *log_id,
|
const uint8_t *log_id,
|
||||||
size_t log_id_len);
|
size_t log_id_len);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Loads a CT log list into a |store| from a |file|.
|
* Loads a CT log list into a |store| from a |file|.
|
||||||
|
Loading…
Reference in New Issue
Block a user