| OLD | NEW |
| 1 /* ***** BEGIN LICENSE BLOCK ***** | 1 /* ***** BEGIN LICENSE BLOCK ***** |
| 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 3 * | 3 * |
| 4 * The contents of this file are subject to the Mozilla Public License Version | 4 * The contents of this file are subject to the Mozilla Public License Version |
| 5 * 1.1 (the "License"); you may not use this file except in compliance with | 5 * 1.1 (the "License"); you may not use this file except in compliance with |
| 6 * the License. You may obtain a copy of the License at | 6 * the License. You may obtain a copy of the License at |
| 7 * http://www.mozilla.org/MPL/ | 7 * http://www.mozilla.org/MPL/ |
| 8 * | 8 * |
| 9 * Software distributed under the License is distributed on an "AS IS" basis, | 9 * Software distributed under the License is distributed on an "AS IS" basis, |
| 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 * and other provisions required by the GPL or the LGPL. If you do not delete | 31 * and other provisions required by the GPL or the LGPL. If you do not delete |
| 32 * the provisions above, a recipient may use your version of this file under | 32 * the provisions above, a recipient may use your version of this file under |
| 33 * the terms of any one of the MPL, the GPL or the LGPL. | 33 * the terms of any one of the MPL, the GPL or the LGPL. |
| 34 * | 34 * |
| 35 * ***** END LICENSE BLOCK ***** */ | 35 * ***** END LICENSE BLOCK ***** */ |
| 36 | 36 |
| 37 #ifndef NSSPKI_H | 37 #ifndef NSSPKI_H |
| 38 #define NSSPKI_H | 38 #define NSSPKI_H |
| 39 | 39 |
| 40 #ifdef DEBUG | 40 #ifdef DEBUG |
| 41 static const char NSSPKI_CVS_ID[] = "@(#) $RCSfile: nsspki.h,v $ $Revision: 1.12
$ $Date: 2007/07/11 04:47:42 $"; | 41 static const char NSSPKI_CVS_ID[] = "@(#) $RCSfile: nsspki.h,v $ $Revision: 1.13
$ $Date: 2010/05/21 00:02:48 $"; |
| 42 #endif /* DEBUG */ | 42 #endif /* DEBUG */ |
| 43 | 43 |
| 44 /* | 44 /* |
| 45 * nsspki.h | 45 * nsspki.h |
| 46 * | 46 * |
| 47 * This file prototypes the methods of the top-level PKI objects. | 47 * This file prototypes the methods of the top-level PKI objects. |
| 48 */ | 48 */ |
| 49 | 49 |
| 50 #ifndef NSSDEVT_H | 50 #ifndef NSSDEVT_H |
| 51 #include "nssdevt.h" | 51 #include "nssdevt.h" |
| 52 #endif /* NSSDEVT_H */ | 52 #endif /* NSSDEVT_H */ |
| 53 | 53 |
| 54 #ifndef NSSPKIT_H | 54 #ifndef NSSPKIT_H |
| 55 #include "nsspkit.h" | 55 #include "nsspkit.h" |
| 56 #endif /* NSSPKIT_H */ | 56 #endif /* NSSPKIT_H */ |
| 57 | 57 |
| 58 #ifndef NSSPKI1_H | |
| 59 #include "nsspki1.h" | |
| 60 #endif /* NSSPKI1_H */ | |
| 61 | |
| 62 #ifndef BASE_H | 58 #ifndef BASE_H |
| 63 #include "base.h" | 59 #include "base.h" |
| 64 #endif /* BASE_H */ | 60 #endif /* BASE_H */ |
| 65 | 61 |
| 66 PR_BEGIN_EXTERN_C | 62 PR_BEGIN_EXTERN_C |
| 67 | 63 |
| 68 /* | 64 /* |
| 69 * A note about interfaces | 65 * A note about interfaces |
| 70 * | 66 * |
| 71 * Although these APIs are specified in C, a language which does | 67 * Although these APIs are specified in C, a language which does |
| (...skipping 3123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3195 * NSSPKIXTrust *NSSCertificate_GetPKIXTrustObject(NSSCertificate *c); | 3191 * NSSPKIXTrust *NSSCertificate_GetPKIXTrustObject(NSSCertificate *c); |
| 3196 * PRStatus NSSCertificate_SetPKIXTrustObject(NSSCertificate *c, NSPKIXTrust *t)
; | 3192 * PRStatus NSSCertificate_SetPKIXTrustObject(NSSCertificate *c, NSPKIXTrust *t)
; |
| 3197 * | 3193 * |
| 3198 * I want to hold off on any general trust object until we've investigated | 3194 * I want to hold off on any general trust object until we've investigated |
| 3199 * other models more thoroughly. | 3195 * other models more thoroughly. |
| 3200 */ | 3196 */ |
| 3201 | 3197 |
| 3202 PR_END_EXTERN_C | 3198 PR_END_EXTERN_C |
| 3203 | 3199 |
| 3204 #endif /* NSSPKI_H */ | 3200 #endif /* NSSPKI_H */ |
| OLD | NEW |