Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Side by Side Diff: mozilla/security/nss/lib/pk11wrap/secmodti.h

Issue 11362174: Update NSS to NSS 3.14 pre-release snapshot 2012-06-28 01:00:00 PDT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Update the snapshot timestamp in README.chromium Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 * Internal header file included only by files in pkcs11 dir, or in 5 * Internal header file included only by files in pkcs11 dir, or in
6 * pkcs11 specific client and server files. 6 * pkcs11 specific client and server files.
7 */ 7 */
8 8
9 #ifndef _SECMODTI_H_ 9 #ifndef _SECMODTI_H_
10 #define _SECMODTI_H_ 1 10 #define _SECMODTI_H_ 1
11 #include "prmon.h" 11 #include "prmon.h"
12 #include "prtypes.h" 12 #include "prtypes.h"
13 #include "nssilckt.h" 13 #include "nssilckt.h"
14 #include "pk11init.h"
15 #include "secmodt.h" 14 #include "secmodt.h"
16 #include "pkcs11t.h" 15 #include "pkcs11t.h"
17 16
18 #include "nssdevt.h" 17 #include "nssdevt.h"
19 18
20 /* internal data structures */ 19 /* internal data structures */
21 20
22 /* Traverse slots callback */ 21 /* Traverse slots callback */
23 typedef struct pk11TraverseSlotStr { 22 typedef struct pk11TraverseSlotStr {
24 SECStatus (*callback)(PK11SlotInfo *,CK_OBJECT_HANDLE, void *); 23 SECStatus (*callback)(PK11SlotInfo *,CK_OBJECT_HANDLE, void *);
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 }; 178 };
180 179
181 180
182 #define MAX_TEMPL_ATTRS 16 /* maximum attributes in template */ 181 #define MAX_TEMPL_ATTRS 16 /* maximum attributes in template */
183 182
184 /* This mask includes all CK_FLAGs with an equivalent CKA_ attribute. */ 183 /* This mask includes all CK_FLAGs with an equivalent CKA_ attribute. */
185 #define CKF_KEY_OPERATION_FLAGS 0x000e7b00UL 184 #define CKF_KEY_OPERATION_FLAGS 0x000e7b00UL
186 185
187 186
188 #endif /* _SECMODTI_H_ */ 187 #endif /* _SECMODTI_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698