michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef CK_H michael@0: #define CK_H michael@0: michael@0: /* michael@0: * ck.h michael@0: * michael@0: * This header file consolidates all header files needed by the source michael@0: * files implementing the NSS Cryptoki Framework. This makes managing michael@0: * the source files a bit easier. michael@0: */ michael@0: michael@0: /* Types */ michael@0: michael@0: #ifndef NSSBASET_H michael@0: #include "nssbaset.h" michael@0: #endif /* NSSBASET_H */ michael@0: michael@0: #ifndef NSSCKT_H michael@0: #include "nssckt.h" michael@0: #endif /* NSSCKT_H */ michael@0: michael@0: #ifndef NSSCKFT_H michael@0: #include "nssckft.h" michael@0: #endif /* NSSCKFT_H */ michael@0: michael@0: #ifndef NSSCKEPV_H michael@0: #include "nssckepv.h" michael@0: #endif /* NSSCKEPV_H */ michael@0: michael@0: #ifndef NSSCKFWT_H michael@0: #include "nssckfwt.h" michael@0: #endif /* NSSCKFWT_H */ michael@0: michael@0: #ifndef NSSCKMDT_H michael@0: #include "nssckmdt.h" michael@0: #endif /* NSSCKMDT_H */ michael@0: michael@0: #ifndef CKT_H michael@0: #include "ckt.h" michael@0: #endif /* CKT_H */ michael@0: michael@0: #ifndef CKFWTM_H michael@0: #include "ckfwtm.h" michael@0: #endif /* CKFWTM_H */ michael@0: michael@0: /* Prototypes */ michael@0: michael@0: #ifndef NSSBASE_H michael@0: #include "nssbase.h" michael@0: #endif /* NSSBASE_H */ michael@0: michael@0: #ifndef NSSCKG_H michael@0: #include "nssckg.h" michael@0: #endif /* NSSCKG_H */ michael@0: michael@0: #ifndef NSSCKFW_H michael@0: #include "nssckfw.h" michael@0: #endif /* NSSCKFW_H */ michael@0: michael@0: #ifndef NSSCKFWC_H michael@0: #include "nssckfwc.h" michael@0: #endif /* NSSCKFWC_H */ michael@0: michael@0: #ifndef CKFW_H michael@0: #include "ckfw.h" michael@0: #endif /* CKFW_H */ michael@0: michael@0: #ifndef CKFWM_H michael@0: #include "ckfwm.h" michael@0: #endif /* CKFWM_H */ michael@0: michael@0: #ifndef CKMD_H michael@0: #include "ckmd.h" michael@0: #endif /* CKMD_H */ michael@0: michael@0: /* NSS-private */ michael@0: michael@0: /* nss_ZNEW and the like. We might want to publish the memory APIs.. */ michael@0: michael@0: #ifndef BASE_H michael@0: #include "base.h" michael@0: #endif /* BASE_H */ michael@0: michael@0: #endif /* CK_H */