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 #ifndef DEVT_H | 5 #ifndef DEVT_H |
6 #define DEVT_H | 6 #define DEVT_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char DEVT_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 /* | 8 /* |
13 * devt.h | 9 * devt.h |
14 * | 10 * |
15 * This file contains definitions for the low-level cryptoki devices. | 11 * This file contains definitions for the low-level cryptoki devices. |
16 */ | 12 */ |
17 | 13 |
18 #ifndef NSSBASET_H | 14 #ifndef NSSBASET_H |
19 #include "nssbaset.h" | 15 #include "nssbaset.h" |
20 #endif /* NSSBASET_H */ | 16 #endif /* NSSBASET_H */ |
21 | 17 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 typedef struct nssSlotListStr nssSlotList; | 147 typedef struct nssSlotListStr nssSlotList; |
152 | 148 |
153 struct NSSAlgorithmAndParametersStr | 149 struct NSSAlgorithmAndParametersStr |
154 { | 150 { |
155 CK_MECHANISM mechanism; | 151 CK_MECHANISM mechanism; |
156 }; | 152 }; |
157 | 153 |
158 PR_END_EXTERN_C | 154 PR_END_EXTERN_C |
159 | 155 |
160 #endif /* DEVT_H */ | 156 #endif /* DEVT_H */ |
OLD | NEW |