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 DEV_H | 5 #ifndef DEV_H |
6 #define DEV_H | 6 #define DEV_H |
7 | 7 |
8 /* | 8 /* |
9 * dev.h | 9 * dev.h |
10 * | 10 * |
11 * Low-level methods for interaction with cryptoki devices | 11 * Low-level methods for interaction with cryptoki devices |
12 */ | 12 */ |
13 | 13 |
14 #ifdef DEBUG | |
15 static const char DEV_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
16 #endif /* DEBUG */ | |
17 | |
18 #ifndef NSSDEV_H | 14 #ifndef NSSDEV_H |
19 #include "nssdev.h" | 15 #include "nssdev.h" |
20 #endif /* NSSDEV_H */ | 16 #endif /* NSSDEV_H */ |
21 | 17 |
22 #ifndef DEVT_H | 18 #ifndef DEVT_H |
23 #include "devt.h" | 19 #include "devt.h" |
24 #endif /* DEVT_H */ | 20 #endif /* DEVT_H */ |
25 | 21 |
26 PR_BEGIN_EXTERN_C | 22 PR_BEGIN_EXTERN_C |
27 | 23 |
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 nssToken_IsPrivateKeyAvailable | 929 nssToken_IsPrivateKeyAvailable |
934 ( | 930 ( |
935 NSSToken *token, | 931 NSSToken *token, |
936 NSSCertificate *c, | 932 NSSCertificate *c, |
937 nssCryptokiObject *instance | 933 nssCryptokiObject *instance |
938 ); | 934 ); |
939 | 935 |
940 PR_END_EXTERN_C | 936 PR_END_EXTERN_C |
941 | 937 |
942 #endif /* DEV_H */ | 938 #endif /* DEV_H */ |
OLD | NEW |