Latest update.
This commit is contained in:
@@ -100,6 +100,9 @@ struct sct_ctx_st {
|
||||
size_t prederlen;
|
||||
/* milliseconds since epoch (to check that the SCT isn't from the future) */
|
||||
uint64_t epoch_time_in_ms;
|
||||
|
||||
OPENSSL_CTX *libctx;
|
||||
char *propq;
|
||||
};
|
||||
|
||||
/* Context when evaluating whether a Certificate Transparency policy is met */
|
||||
@@ -109,12 +112,15 @@ struct ct_policy_eval_ctx_st {
|
||||
CTLOG_STORE *log_store;
|
||||
/* milliseconds since epoch (to check that SCTs aren't from the future) */
|
||||
uint64_t epoch_time_in_ms;
|
||||
|
||||
OPENSSL_CTX *libctx;
|
||||
char *propq;
|
||||
};
|
||||
|
||||
/*
|
||||
* Creates a new context for verifying an SCT.
|
||||
*/
|
||||
SCT_CTX *SCT_CTX_new(void);
|
||||
SCT_CTX *SCT_CTX_new(OPENSSL_CTX *ctx, const char *propq);
|
||||
/*
|
||||
* Deletes an SCT verification context.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user