Searched defs:ckPartLength (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_dual.c75 CK_ULONG ckPartLength, ckEncryptedPartLength = 0; local
83 jByteArrayToCKByteArray(env, jPart, &ckpPart, &ckPartLength);
86 rv = (*ckpFunctions->C_DigestEncryptUpdate)(ckSessionHandle, ckpPart, ckPartLength, NULL_PTR, &ckEncryptedPartLength);
99 rv = (*ckpFunctions->C_DigestEncryptUpdate)(ckSessionHandle, ckpPart, ckPartLength, ckpEncryptedPart, &ckEncryptedPartLength);
127 CK_ULONG ckPartLength = 0, ckEncryptedPartLength; local
138 rv = (*ckpFunctions->C_DecryptDigestUpdate)(ckSessionHandle, ckpEncryptedPart, ckEncryptedPartLength, NULL_PTR, &ckPartLength);
144 ckpPart = (CK_BYTE_PTR) malloc(ckPartLength * sizeof(CK_BYTE));
151 rv = (*ckpFunctions->C_DecryptDigestUpdate)(ckSessionHandle, ckpEncryptedPart, ckEncryptedPartLength, ckpPart, &ckPartLength);
153 jPart = ckByteArrayToJByteArray(env, ckpPart, ckPartLength);
179 CK_ULONG ckPartLength, ckEncryptedPartLengt local
231 CK_ULONG ckPartLength = 0, ckEncryptedPartLength; local
[all...]

Completed in 31 milliseconds