diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-11-10 23:54:04 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-11-10 23:54:04 +0100 |
commit | f565d0c575f9d7e4a53e10ee447871fea21cb2e3 (patch) | |
tree | 950b57b988a21db56ded2da3892cfad4dea6b9d4 /src/pluto/crl.h | |
parent | cc543182bcf79b306188262b5537bc55f89c0965 (diff) | |
download | strongswan-f565d0c575.tar.bz2 strongswan-f565d0c575.tar.xz |
merged pluto's PGP certificate parsing with charon's
Diffstat (limited to 'src/pluto/crl.h')
-rw-r--r-- | src/pluto/crl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pluto/crl.h b/src/pluto/crl.h index bac0717a0..43bafe145 100644 --- a/src/pluto/crl.h +++ b/src/pluto/crl.h @@ -26,7 +26,6 @@ struct x509crl { certificate_t *crl; x509crl_t *next; linked_list_t *distributionPoints; - chunk_t signature; }; /* apply a strict CRL policy @@ -46,7 +45,7 @@ extern long crl_check_interval; extern void load_crls(void); extern void check_crls(void); extern bool insert_crl(x509crl_t *crl, char *crl_uri, bool cache_crl); -extern cert_status_t verify_by_crl(const x509cert_t *cert, time_t *until, +extern cert_status_t verify_by_crl(cert_t *cert, time_t *until, time_t *revocationDate, crl_reason_t *revocationReason); extern void list_crls(bool utc, bool strict); |