Differences From Artifact [86bd0fe2e2]:
- File test.c — part of check-in [b6b2190360] at 2012-07-21 06:09:55 on branch dodcerts-on-seperate-slot — Added support for treating the DoD certs as a seperate slot (user: rkeene, size: 23271) [annotate] [blame] [check-ins using] [more...]
To Artifact [7438606333]:
- File
test.c
— part of check-in
[5027cbae9b]
at
2011-08-26 05:29:43
on branch trunk
— Updated to include DoD root CAs as objects in the PKCS#11 module
Updated to include Netscape Trust Objects (https://developer.mozilla.org/index.php?title=en/NSS/PKCS_%2311_Netscape_Trust) in PKCS#11 module
Added more attributes to scan for to test driver (user: rkeene, size: 23112) [annotate] [blame] [check-ins using]
︙ | |||
234 235 236 237 238 239 240 | 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | - | printf(" Slot %lu:\n", currSlot); chk_rv = C_GetSlotInfo(slots[currSlot], &slotInfo); if (chk_rv != CKR_OK) { return(1); } |
︙ | |||
326 327 328 329 330 331 332 | 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | - - - - - | } printf("\n"); } } chk_rv = C_OpenSession(slots[0], CKF_SERIAL_SESSION, NULL, NULL, &hSession); if (chk_rv == CKR_OK) { |
︙ |