| 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 | 5 #ifdef DEBUG |
| 6 static const char CVS_ID[] = "@(#) $RCSfile: pki3hack.c,v $ $Revision: 1.109 $ $
Date: 2012/07/27 21:41:52 $"; | 6 static const char CVS_ID[] = "@(#) $RCSfile: pki3hack.c,v $ $Revision: 1.108 $ $
Date: 2012/05/17 21:39:40 $"; |
| 7 #endif /* DEBUG */ | 7 #endif /* DEBUG */ |
| 8 | 8 |
| 9 /* | 9 /* |
| 10 * Hacks to integrate NSS 3.4 and NSS 4.0 certificates. | 10 * Hacks to integrate NSS 3.4 and NSS 4.0 certificates. |
| 11 */ | 11 */ |
| 12 | 12 |
| 13 #ifndef NSSPKI_H | 13 #ifndef NSSPKI_H |
| 14 #include "nsspki.h" | 14 #include "nsspki.h" |
| 15 #endif /* NSSPKI_H */ | 15 #endif /* NSSPKI_H */ |
| 16 | 16 |
| (...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1366 td = STAN_GetDefaultTrustDomain(); | 1366 td = STAN_GetDefaultTrustDomain(); |
| 1367 cc = STAN_GetDefaultCryptoContext(); | 1367 cc = STAN_GetDefaultCryptoContext(); |
| 1368 printf("\n\nCertificates in the cache:\n"); | 1368 printf("\n\nCertificates in the cache:\n"); |
| 1369 nssTrustDomain_DumpCacheInfo(td, cert_dump_iter, NULL); | 1369 nssTrustDomain_DumpCacheInfo(td, cert_dump_iter, NULL); |
| 1370 printf("\n\nCertificates in the temporary store:\n"); | 1370 printf("\n\nCertificates in the temporary store:\n"); |
| 1371 if (cc->certStore) { | 1371 if (cc->certStore) { |
| 1372 nssCertificateStore_DumpStoreInfo(cc->certStore, cert_dump_iter, NULL); | 1372 nssCertificateStore_DumpStoreInfo(cc->certStore, cert_dump_iter, NULL); |
| 1373 } | 1373 } |
| 1374 } | 1374 } |
| 1375 | 1375 |
| OLD | NEW |