summaryrefslogtreecommitdiff
path: root/src/ne_ssl.h
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2007-07-14 08:01:58 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2007-07-14 08:01:58 +0000
commit8a868f63876a93a915d5176999c9b508d30d1a75 (patch)
treed695def0a78e84c07fa69adba244dcd5dc77bff6 /src/ne_ssl.h
parent4b7ea28a652a9c63201a064eb24767a9687bf4d5 (diff)
downloadneon-8a868f63876a93a915d5176999c9b508d30d1a75.tar.gz
* src/ne_ssl.h: Docs cleanup.
git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1184 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src/ne_ssl.h')
-rw-r--r--src/ne_ssl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ne_ssl.h b/src/ne_ssl.h
index d771ee8..ded5ed1 100644
--- a/src/ne_ssl.h
+++ b/src/ne_ssl.h
@@ -117,8 +117,8 @@ void ne_ssl_cert_free(ne_ssl_certificate *cert);
typedef struct ne_ssl_client_cert_s ne_ssl_client_cert;
/* Read a client certificate and private key from a PKCS12 file;
- * returns NULL if the file could not be parsed. If the client cert
- * is encrypted, it must be decrypted before use. */
+ * returns NULL if the file could not be parsed, or otherwise
+ * returning a client certificate object. */
ne_ssl_client_cert *ne_ssl_clicert_read(const char *filename);
/* Returns the "friendly name" given for the client cert, or NULL if
@@ -139,7 +139,7 @@ int ne_ssl_clicert_decrypt(ne_ssl_client_cert *ccert, const char *password);
* returns NULL). */
const ne_ssl_certificate *ne_ssl_clicert_owner(const ne_ssl_client_cert *ccert);
-/* Deallocate memory associated with a client certificate. */
+/* Destroy a client certificate object. */
void ne_ssl_clicert_free(ne_ssl_client_cert *ccert);