Lines Matching refs:CTLOG
13 CTLOG *CTLOG_new(EVP_PKEY *public_key, const char *name);
14 int CTLOG_new_from_base64(CTLOG ** ct_log,
16 void CTLOG_free(CTLOG *log);
17 const char *CTLOG_get0_name(const CTLOG *log);
18 void CTLOG_get0_log_id(const CTLOG *log, const uint8_t **log_id,
20 EVP_PKEY *CTLOG_get0_public_key(const CTLOG *log);
24 CTLOG_new() returns a new CTLOG that represents the Certificate Transparency
29 CTLOG_new_from_base64() also creates a new CTLOG, but takes the public key in
30 base64-encoded DER form and sets the ct_log pointer to point to the new CTLOG.
34 caller's responsibility to pass the CTLOG to CTLOG_free() once it is no longer
38 CTLOG_get0_name() returns the name of the log, as provided when the CTLOG was
39 created. Ownership of the string remains with the CTLOG.
44 the string remains with the CTLOG.
47 EVP_PKEY remains with the CTLOG.