Lines Matching refs:CTLOG
14 CTLOG *CTLOG_new_ex(EVP_PKEY *public_key, const char *name,
16 CTLOG *CTLOG_new(EVP_PKEY *public_key, const char *name);
18 int CTLOG_new_from_base64_ex(CTLOG **ct_log, const char *pkey_base64,
21 int CTLOG_new_from_base64(CTLOG ** ct_log,
23 void CTLOG_free(CTLOG *log);
24 const char *CTLOG_get0_name(const CTLOG *log);
25 void CTLOG_get0_log_id(const CTLOG *log, const uint8_t **log_id,
27 EVP_PKEY *CTLOG_get0_public_key(const CTLOG *log);
31 CTLOG_new_ex() returns a new CTLOG that represents the Certificate
40 CTLOG_new_from_base64_ex() also creates a new CTLOG, but takes the
42 the new CTLOG. The base64 will be decoded and the public key parsed. The CTLOG
51 caller's responsibility to pass the CTLOG to CTLOG_free() once it is no longer
55 CTLOG_get0_name() returns the name of the log, as provided when the CTLOG was
56 created. Ownership of the string remains with the CTLOG.
61 the string remains with the CTLOG.
64 EVP_PKEY remains with the CTLOG.