diff options
Diffstat (limited to 'security/manager/ssl/nsNSSCertHelper.h')
-rw-r--r-- | security/manager/ssl/nsNSSCertHelper.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/security/manager/ssl/nsNSSCertHelper.h b/security/manager/ssl/nsNSSCertHelper.h new file mode 100644 index 000000000..d84e1b39f --- /dev/null +++ b/security/manager/ssl/nsNSSCertHelper.h @@ -0,0 +1,23 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef nsNSSCertHelper_h +#define nsNSSCertHelper_h + +#ifndef INET6_ADDRSTRLEN +#define INET6_ADDRSTRLEN 46 +#endif + +#include "certt.h" +#include "nsString.h" + +uint32_t +getCertType(CERTCertificate *cert); + +nsresult +GetCertFingerprintByOidTag(CERTCertificate* nsscert, + SECOidTag aOidTag, + nsCString &fp); + +#endif // nsNSSCertHelper_h |