OLD | NEW |
1 /* | 1 /* |
2 * softoknt.h - public data structures for the software token library | 2 * softoknt.h - public data structures for the software token library |
3 * | 3 * |
4 * This Source Code Form is subject to the terms of the Mozilla Public | 4 * This Source Code Form is subject to the terms of the Mozilla Public |
5 * License, v. 2.0. If a copy of the MPL was not distributed with this | 5 * License, v. 2.0. If a copy of the MPL was not distributed with this |
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
7 /* $Id$ */ | |
8 | 7 |
9 #ifndef _SOFTOKNT_H_ | 8 #ifndef _SOFTOKNT_H_ |
10 #define _SOFTOKNT_H_ | 9 #define _SOFTOKNT_H_ |
11 | 10 |
12 /* | 11 /* |
13 * RSA block types | 12 * RSA block types |
14 * | 13 * |
15 * The actual values are important -- they are fixed, *not* arbitrary. | 14 * The actual values are important -- they are fixed, *not* arbitrary. |
16 * The explicit value assignments are not needed (because C would give | 15 * The explicit value assignments are not needed (because C would give |
17 * us those same values anyway) but are included as a reminder... | 16 * us those same values anyway) but are included as a reminder... |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 NSS_AUDIT_LOAD_KEY, | 49 NSS_AUDIT_LOAD_KEY, |
51 NSS_AUDIT_LOGIN, | 50 NSS_AUDIT_LOGIN, |
52 NSS_AUDIT_LOGOUT, | 51 NSS_AUDIT_LOGOUT, |
53 NSS_AUDIT_SELF_TEST, | 52 NSS_AUDIT_SELF_TEST, |
54 NSS_AUDIT_SET_PIN, | 53 NSS_AUDIT_SET_PIN, |
55 NSS_AUDIT_UNWRAP_KEY, | 54 NSS_AUDIT_UNWRAP_KEY, |
56 NSS_AUDIT_WRAP_KEY | 55 NSS_AUDIT_WRAP_KEY |
57 } NSSAuditType; | 56 } NSSAuditType; |
58 | 57 |
59 #endif /* _SOFTOKNT_H_ */ | 58 #endif /* _SOFTOKNT_H_ */ |
OLD | NEW |