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 #ifdef DEBUG | |
6 static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 /* | 5 /* |
10 * Hacks to integrate NSS 3.4 and NSS 4.0 certificates. | 6 * Hacks to integrate NSS 3.4 and NSS 4.0 certificates. |
11 */ | 7 */ |
12 | 8 |
13 #ifndef NSSPKI_H | 9 #ifndef NSSPKI_H |
14 #include "nsspki.h" | 10 #include "nsspki.h" |
15 #endif /* NSSPKI_H */ | 11 #endif /* NSSPKI_H */ |
16 | 12 |
17 #ifndef PKI_H | 13 #ifndef PKI_H |
18 #include "pki.h" | 14 #include "pki.h" |
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 td = STAN_GetDefaultTrustDomain(); | 1422 td = STAN_GetDefaultTrustDomain(); |
1427 cc = STAN_GetDefaultCryptoContext(); | 1423 cc = STAN_GetDefaultCryptoContext(); |
1428 printf("\n\nCertificates in the cache:\n"); | 1424 printf("\n\nCertificates in the cache:\n"); |
1429 nssTrustDomain_DumpCacheInfo(td, cert_dump_iter, NULL); | 1425 nssTrustDomain_DumpCacheInfo(td, cert_dump_iter, NULL); |
1430 printf("\n\nCertificates in the temporary store:\n"); | 1426 printf("\n\nCertificates in the temporary store:\n"); |
1431 if (cc->certStore) { | 1427 if (cc->certStore) { |
1432 nssCertificateStore_DumpStoreInfo(cc->certStore, cert_dump_iter, NULL); | 1428 nssCertificateStore_DumpStoreInfo(cc->certStore, cert_dump_iter, NULL); |
1433 } | 1429 } |
1434 } | 1430 } |
1435 | 1431 |
OLD | NEW |