# HG changeset patch # User Sascha Wilde # Date 1396432088 -7200 # Node ID ea9c5bbc6496672e7a64844a9cc3e700d778b935 # Parent 9d2ac9b6a5b052d75c18e36a2423e2ac596b1129 Added missing function documentation. diff -r 9d2ac9b6a5b0 -r ea9c5bbc6496 cinst/mozilla.c --- a/cinst/mozilla.c Wed Apr 02 10:31:08 2014 +0200 +++ b/cinst/mozilla.c Wed Apr 02 11:48:08 2014 +0200 @@ -355,6 +355,14 @@ return name; } +/** + * @brief Convert a base64 encoded DER certificate to SECItem + * @param[in] b64 pointer to the base64 encoded certificate + * @param[in] b64len length of the base64 encoded certificate + * @param[out] secitem pointer to the SECItem in which to store the + * raw DER certifiacte. + * @returns true on success and false on failure + */ static bool base64_to_secitem(char *b64, size_t b64len, SECItem *secitem) {