diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-02-08 07:29:59 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-02-08 07:29:59 +0000 |
commit | f7f3d915b13c817b54a7f8d1025b89d8c1c1022e (patch) | |
tree | 198899bd8eac373f6c2ce5ee42e3f0f39ff79ba6 /includes | |
parent | d2aa8b508b479128ee411e9ec6876df7a8995091 (diff) | |
download | gnutls-f7f3d915b13c817b54a7f8d1025b89d8c1c1022e.tar.gz |
*** empty log message ***
Diffstat (limited to 'includes')
-rw-r--r-- | includes/gnutls/x509.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/gnutls/x509.h b/includes/gnutls/x509.h index 6acc72748d..dfc4fd775f 100644 --- a/includes/gnutls/x509.h +++ b/includes/gnutls/x509.h @@ -96,6 +96,13 @@ int gnutls_x509_certificate_get_extension_by_oid(gnutls_x509_certificate cert, c int gnutls_x509_certificate_to_xml(gnutls_x509_certificate cert, gnutls_datum* res, int detail); +/* RDN handling */ +int gnutls_x509_rdn_get(const gnutls_datum * idn, + char *buf, unsigned int *sizeof_buf); + +int gnutls_x509_rdn_get_by_oid(const gnutls_datum * idn, const char* oid, + char *buf, unsigned int *sizeof_buf); + /* CRL handling functions */ |