| 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 /* | 5 /* |
| 6 * cert.h - public data structures and prototypes for the certificate library | 6 * cert.h - public data structures and prototypes for the certificate library |
| 7 * | 7 * |
| 8 * $Id: cert.h,v 1.90 2012/09/19 15:08:07 kaie%kuix.de Exp $ | 8 * $Id: cert.h,v 1.89 2012/04/25 14:49:26 gerv%gerv.net Exp $ |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef _CERT_H_ | 11 #ifndef _CERT_H_ |
| 12 #define _CERT_H_ | 12 #define _CERT_H_ |
| 13 | 13 |
| 14 #include "utilrename.h" | 14 #include "utilrename.h" |
| 15 #include "plarena.h" | 15 #include "plarena.h" |
| 16 #include "plhash.h" | 16 #include "plhash.h" |
| 17 #include "prlong.h" | 17 #include "prlong.h" |
| 18 #include "prlog.h" | 18 #include "prlog.h" |
| (...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1641 /* | 1641 /* |
| 1642 * Destroy the arrays inside flags, | 1642 * Destroy the arrays inside flags, |
| 1643 * and destroy the object pointed to by flags, too. | 1643 * and destroy the object pointed to by flags, too. |
| 1644 */ | 1644 */ |
| 1645 extern void | 1645 extern void |
| 1646 CERT_DestroyCERTRevocationFlags(CERTRevocationFlags *flags); | 1646 CERT_DestroyCERTRevocationFlags(CERTRevocationFlags *flags); |
| 1647 | 1647 |
| 1648 SEC_END_PROTOS | 1648 SEC_END_PROTOS |
| 1649 | 1649 |
| 1650 #endif /* _CERT_H_ */ | 1650 #endif /* _CERT_H_ */ |
| OLD | NEW |