aboutsummaryrefslogtreecommitdiffstats
path: root/Source/lib/crypto/x509.h
diff options
context:
space:
mode:
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);