Differences From Artifact [5989078539]:
- File test.c — part of check-in [ebb5a279f5] at 2010-05-13 18:26:16 on branch trunk — Corrected warning (user: rkeene, size: 18814) [annotate] [blame] [check-ins using]
To Artifact [24213eb4b1]:
- File
test.c
— part of check-in
[8aec474c2b]
at
2010-10-10 09:10:13
on branch trunk
— CACKey 0.5.20
Updated CACKey to not require pReserved to be set to NULL
Fixed bug where Sign and Decrypt operations would not terminate correctly (user: rkeene, size: 18778) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
121 122 123 124 125 126 127 | initargs.CreateMutex = NULL; initargs.DestroyMutex = NULL; initargs.LockMutex = NULL; initargs.UnlockMutex = NULL; initargs.flags = CKF_OS_LOCKING_OK; initargs.pReserved = NULL; | < | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | initargs.CreateMutex = NULL; initargs.DestroyMutex = NULL; initargs.LockMutex = NULL; initargs.UnlockMutex = NULL; initargs.flags = CKF_OS_LOCKING_OK; initargs.pReserved = NULL; chk_rv = C_Initialize(&initargs); if (chk_rv != CKR_OK) { initargs.CreateMutex = NULL; initargs.DestroyMutex = NULL; initargs.LockMutex = NULL; initargs.UnlockMutex = NULL; |
︙ | ︙ |