aboutsummaryrefslogtreecommitdiffstats
path: root/Source/lib/crypto/x509.h
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-04-24 10:40:10 +0000
committerMartin Willi <martin@strongswan.org>2006-04-24 10:40:10 +0000
commita8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0 (patch)
tree91b37f9344855204233631622d5b13a7056084b1 /Source/lib/crypto/x509.h
parentfcfeb3220fbd4e25b0ac63c541c18e8ae1f30766 (diff)
downloadstrongswan-a8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0.tar.bz2
strongswan-a8c09d8cc0044fbff6c89c2e8966427ee7ed1ef0.tar.xz
- identification_t supports now almost all id types
- x509 certificates work with identification_t now - fixes here, fixes there
Diffstat (limited to 'Source/lib/crypto/x509.h')
-rwxr-xr-xSource/lib/crypto/x509.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/lib/crypto/x509.h b/Source/lib/crypto/x509.h
index cd2f08ee1..077238eab 100755
--- a/Source/lib/crypto/x509.h
+++ b/Source/lib/crypto/x509.h
@@ -58,14 +58,22 @@ struct x509_t {
/**
* @brief Get the certificate issuers ID.
*
- * @todo implement!
+ * The resulting ID is always a identification_t
+ * of type ID_DER_ASN1_DN.
+ *
+ * @param this calling object
+ * @return issuers ID
*/
identification_t *(*get_issuer) (x509_t *this);
/**
* @brief Get the subjects ID.
*
- * @todo implement!
+ * The resulting ID is always a identification_t
+ * of type ID_DER_ASN1_DN.
+ *
+ * @param this calling object
+ * @return subjects ID
*/
identification_t *(*get_subject) (x509_t *this);