diff options
Diffstat (limited to 'src/_cffi_src/openssl/ct.py')
-rw-r--r-- | src/_cffi_src/openssl/ct.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/ct.py b/src/_cffi_src/openssl/ct.py index 4aa36899..71125dd1 100644 --- a/src/_cffi_src/openssl/ct.py +++ b/src/_cffi_src/openssl/ct.py @@ -44,6 +44,8 @@ ct_log_entry_type_t SCT_get_log_entry_type(const SCT *); size_t SCT_get0_log_id(const SCT *, unsigned char **); +size_t SCT_get0_signature(const SCT *, unsigned char **); + uint64_t SCT_get_timestamp(const SCT *); int SCT_set_source(SCT *, sct_source_t); @@ -89,6 +91,7 @@ typedef void Cryptography_STACK_OF_SCT; sct_version_t (*SCT_get_version)(const SCT *) = NULL; ct_log_entry_type_t (*SCT_get_log_entry_type)(const SCT *) = NULL; size_t (*SCT_get0_log_id)(const SCT *, unsigned char **) = NULL; +size_t (*SCT_get0_signature)(const SCT *, unsigned char **) = NULL; uint64_t (*SCT_get_timestamp)(const SCT *) = NULL; int (*SCT_set_source)(SCT *, sct_source_t) = NULL; |