diff options
author | Martin Willi <martin@strongswan.org> | 2009-08-13 15:05:14 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-08-26 11:23:49 +0200 |
commit | cbb62e8f4c48c795a3cf63899048845ee3bfe75c (patch) | |
tree | de9adde5bcfa691b214a5423b49141c6a60991bd /src/libstrongswan/credentials/certificates/certificate.h | |
parent | f11a78f10a71756a48e318f00a0772f42226b1ef (diff) | |
download | strongswan-cbb62e8f4c48c795a3cf63899048845ee3bfe75c.tar.bz2 strongswan-cbb62e8f4c48c795a3cf63899048845ee3bfe75c.tar.xz |
handle pluto specific certificates under CRED_CERTIFICATE, not as own credential kind
Diffstat (limited to 'src/libstrongswan/credentials/certificates/certificate.h')
-rw-r--r-- | src/libstrongswan/credentials/certificates/certificate.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libstrongswan/credentials/certificates/certificate.h b/src/libstrongswan/credentials/certificates/certificate.h index 81fce5508..ef26a437a 100644 --- a/src/libstrongswan/credentials/certificates/certificate.h +++ b/src/libstrongswan/credentials/certificates/certificate.h @@ -48,7 +48,13 @@ enum certificate_type_t { /** trusted, preinstalled public key */ CERT_TRUSTED_PUBKEY, /** PGP certificate */ - CERT_PGP, + CERT_GPG, + /** Pluto cert_t (not a certificate_t), either x509 or PGP */ + CERT_PLUTO_CERT, + /** Pluto x509acert_t (not a certificate_t), attribute certificate */ + CERT_PLUTO_AC, + /** Pluto x509crl_t (not a certificate_t), certificate revocation list */ + CERT_PLUTO_CRL, }; /** |