OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifndef PKINSS3HACK_H | 5 #ifndef PKINSS3HACK_H |
6 #define PKINSS3HACK_H | 6 #define PKINSS3HACK_H |
7 | 7 |
8 #ifndef NSSDEVT_H | 8 #ifndef NSSDEVT_H |
9 #include "nssdevt.h" | 9 #include "nssdevt.h" |
10 #endif /* NSSDEVT_H */ | 10 #endif /* NSSDEVT_H */ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 NSS_EXTERN CERTCertTrust * | 70 NSS_EXTERN CERTCertTrust * |
71 nssTrust_GetCERTCertTrustForCert(NSSCertificate *c, CERTCertificate *cc); | 71 nssTrust_GetCERTCertTrustForCert(NSSCertificate *c, CERTCertificate *cc); |
72 | 72 |
73 NSS_EXTERN PRStatus | 73 NSS_EXTERN PRStatus |
74 STAN_DeleteCertTrustMatchingSlot(NSSCertificate *c); | 74 STAN_DeleteCertTrustMatchingSlot(NSSCertificate *c); |
75 | 75 |
76 NSS_EXTERN PRStatus | 76 NSS_EXTERN PRStatus |
77 STAN_ChangeCertTrust(CERTCertificate *cc, CERTCertTrust *trust); | 77 STAN_ChangeCertTrust(CERTCertificate *cc, CERTCertTrust *trust); |
78 | 78 |
79 NSS_EXTERN PRStatus | 79 NSS_EXTERN PRStatus |
80 nssPKIX509_GetIssuerAndSerialFromDER(NSSDER *der, NSSArena *arena, | 80 nssPKIX509_GetIssuerAndSerialFromDER(NSSDER *der, |
81 NSSDER *issuer, NSSDER *serial); | 81 NSSDER *issuer, NSSDER *serial); |
82 | 82 |
83 NSS_EXTERN char * | 83 NSS_EXTERN char * |
84 STAN_GetCERTCertificateName(PLArenaPool *arenaOpt, NSSCertificate *c); | 84 STAN_GetCERTCertificateName(PLArenaPool *arenaOpt, NSSCertificate *c); |
85 | 85 |
86 NSS_EXTERN char * | 86 NSS_EXTERN char * |
87 STAN_GetCERTCertificateNameForInstance(PLArenaPool *arenaOpt, | 87 STAN_GetCERTCertificateNameForInstance(PLArenaPool *arenaOpt, |
88 NSSCertificate *c, | 88 NSSCertificate *c, |
89 nssCryptokiInstance *instance); | 89 nssCryptokiInstance *instance); |
90 | 90 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 /* CERT_AddTempCertToPerm */ | 155 /* CERT_AddTempCertToPerm */ |
156 NSS_EXTERN PRStatus | 156 NSS_EXTERN PRStatus |
157 nssTrustDomain_AddTempCertToPerm | 157 nssTrustDomain_AddTempCertToPerm |
158 ( | 158 ( |
159 NSSCertificate *c | 159 NSSCertificate *c |
160 ); | 160 ); |
161 | 161 |
162 PR_END_EXTERN_C | 162 PR_END_EXTERN_C |
163 | 163 |
164 #endif /* PKINSS3HACK_H */ | 164 #endif /* PKINSS3HACK_H */ |
OLD | NEW |