2018-05-04 16:08:28 +02:00
|
|
|
/* 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/. */
|
2015-10-21 05:03:22 +02:00
|
|
|
|
|
|
|
#ifndef _CERTDB_H_
|
|
|
|
#define _CERTDB_H_
|
|
|
|
|
|
|
|
|
|
|
|
/* common flags for all types of certificates */
|
cherry-picked mozilla NSS upstream changes (to rev b07697c94038, which is on par with 3.16.2):
bug753136, bug999893, bug1011090, bug1009785, bug1009794, bug421391, bug1011229, bug1013088, bug996237, bug970539, bug1016567, bug485732, bug334013, bug959864, bug1016836, bug1016811, bug1018536, bug996250, bug1009227, bug963150, bug1007126, bug952572, bug1021102, bug1020395, bug902171
2018-07-11 14:39:02 +02:00
|
|
|
#define CERTDB_TERMINAL_RECORD (1u<<0)
|
|
|
|
#define CERTDB_TRUSTED (1u<<1)
|
|
|
|
#define CERTDB_SEND_WARN (1u<<2)
|
|
|
|
#define CERTDB_VALID_CA (1u<<3)
|
|
|
|
#define CERTDB_TRUSTED_CA (1u<<4) /* trusted for issuing server certs */
|
|
|
|
#define CERTDB_NS_TRUSTED_CA (1u<<5)
|
|
|
|
#define CERTDB_USER (1u<<6)
|
|
|
|
#define CERTDB_TRUSTED_CLIENT_CA (1u<<7) /* trusted for issuing client certs */
|
|
|
|
#define CERTDB_INVISIBLE_CA (1u<<8) /* don't show in UI */
|
|
|
|
#define CERTDB_GOVT_APPROVED_CA (1u<<9) /* can do strong crypto in export ver */
|
2015-10-21 05:03:22 +02:00
|
|
|
|
2018-05-04 16:08:28 +02:00
|
|
|
/* old usage, to keep old programs compiling */
|
|
|
|
/* On Windows, Mac, and Linux (and other gcc platforms), we can give compile
|
|
|
|
* time deprecation warnings when applications use the old CERTDB_VALID_PEER
|
|
|
|
* define */
|
|
|
|
#if __GNUC__ > 3
|
|
|
|
#if (__GNUC__ == 4) && (__GNUC_MINOR__ < 5)
|
|
|
|
typedef unsigned int __CERTDB_VALID_PEER __attribute__((deprecated));
|
|
|
|
#else
|
|
|
|
typedef unsigned int __CERTDB_VALID_PEER __attribute__((deprecated
|
|
|
|
("CERTDB_VALID_PEER is now CERTDB_TERMINAL_RECORD")));
|
|
|
|
#endif
|
|
|
|
#define CERTDB_VALID_PEER ((__CERTDB_VALID_PEER) CERTDB_TERMINAL_RECORD)
|
|
|
|
#else
|
|
|
|
#ifdef _WIN32
|
|
|
|
#pragma deprecated(CERTDB_VALID_PEER)
|
|
|
|
#endif
|
|
|
|
#define CERTDB_VALID_PEER CERTDB_TERMINAL_RECORD
|
|
|
|
#endif
|
2015-10-21 05:03:22 +02:00
|
|
|
|
|
|
|
SEC_BEGIN_PROTOS
|
|
|
|
|
|
|
|
CERTSignedCrl *
|
|
|
|
SEC_FindCrlByKey(CERTCertDBHandle *handle, SECItem *crlKey, int type);
|
|
|
|
|
|
|
|
CERTSignedCrl *
|
|
|
|
SEC_FindCrlByName(CERTCertDBHandle *handle, SECItem *crlKey, int type);
|
|
|
|
|
|
|
|
CERTSignedCrl *
|
|
|
|
SEC_FindCrlByDERCert(CERTCertDBHandle *handle, SECItem *derCrl, int type);
|
|
|
|
|
|
|
|
PRBool
|
2018-05-04 16:08:28 +02:00
|
|
|
SEC_CertNicknameConflict(const char *nickname, const SECItem *derSubject,
|
2015-10-21 05:03:22 +02:00
|
|
|
CERTCertDBHandle *handle);
|
|
|
|
CERTSignedCrl *
|
|
|
|
SEC_NewCrl(CERTCertDBHandle *handle, char *url, SECItem *derCrl, int type);
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
SEC_DeletePermCRL(CERTSignedCrl *crl);
|
|
|
|
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
SEC_LookupCrls(CERTCertDBHandle *handle, CERTCrlHeadNode **nodes, int type);
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
SEC_DestroyCrl(CERTSignedCrl *crl);
|
|
|
|
|
|
|
|
CERTSignedCrl* SEC_DupCrl(CERTSignedCrl* acrl);
|
|
|
|
|
|
|
|
SECStatus
|
|
|
|
CERT_AddTempCertToPerm(CERTCertificate *cert, char *nickname,
|
|
|
|
CERTCertTrust *trust);
|
|
|
|
|
|
|
|
SECStatus SEC_DeletePermCertificate(CERTCertificate *cert);
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
SEC_CrlIsNewer(CERTCrl *inNew, CERTCrl *old);
|
|
|
|
|
cherry-picked mozilla NSS upstream changes (to rev 82de44ead36f, which is on par with 3.18):
bug1095307, bug1073330(backout), bug1084986, bug1050069, bug942172, bug1054547, bug532081, bug1096348, bug1058870, bug1093940, bug1102985, bug1112461, bug1094492, bug112029, bug1119983, bug1120685, bug1120691, bug1113632, bug863076, bug1082973, bug1124539, bug1117617, bug1117621, bug1121273, bug753136, bug921684, bug1132818, bug1125375, bug647690, bug1055441, bug1134455, bug975010, bug950369, bug1128367, bug1129573, bug1136095, bug1117897, bug1113453, bug1061725, bug1073330, bug1111901, bug1083900, bug1136095, bug1138820, bug1096741, bug1134548, bug345725, bug950348, bug950344, bug1151037, bug991783, bug1153994
2018-07-11 16:42:30 +02:00
|
|
|
/*
|
|
|
|
** Extract the validity times from a CRL
|
|
|
|
** "crl" is the CRL
|
|
|
|
** "notBefore" is the start of the validity period (last update)
|
|
|
|
** "notAfter" is the end of the validity period (next update)
|
|
|
|
*/
|
|
|
|
SECStatus
|
|
|
|
SEC_GetCrlTimes(CERTCrl *crl, PRTime *notBefore, PRTime *notAfter);
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Check the validity times of a crl vs. time 't', allowing
|
|
|
|
** some slop for broken clocks and stuff.
|
|
|
|
** "crl" is the certificate to be checked
|
|
|
|
** "t" is the time to check against
|
|
|
|
*/
|
2015-10-21 05:03:22 +02:00
|
|
|
SECCertTimeValidity
|
|
|
|
SEC_CheckCrlTimes(CERTCrl *crl, PRTime t);
|
|
|
|
|
|
|
|
SEC_END_PROTOS
|
|
|
|
|
|
|
|
#endif /* _CERTDB_H_ */
|