Home
last modified time | relevance | path

Searched refs:ckLastPartLength (Results 1 – 1 of 1) sorted by relevance

/dports/security/iaikpkcs11wrapper/src/native/common/
H A Dpkcs11wrapper.c1991 CK_ULONG ckLastPartLength = 0; in Java_iaik_pkcs_pkcs11_wrapper_PKCS11Implementation_C_1DecryptFinal() local
2006 rv = (*ckpFunctions->C_DecryptFinal)(ckSessionHandle, NULL_PTR, &ckLastPartLength); in Java_iaik_pkcs_pkcs11_wrapper_PKCS11Implementation_C_1DecryptFinal()
2009 ckpLastPart = (CK_BYTE_PTR) malloc(ckLastPartLength * sizeof(CK_BYTE)); in Java_iaik_pkcs_pkcs11_wrapper_PKCS11Implementation_C_1DecryptFinal()
2010 if (ckpLastPart == NULL && ckLastPartLength !=0) { throwOutOfMemoryError(env); return NULL; } in Java_iaik_pkcs_pkcs11_wrapper_PKCS11Implementation_C_1DecryptFinal()
2012 rv = (*ckpFunctions->C_DecryptFinal)(ckSessionHandle, ckpLastPart, &ckLastPartLength); in Java_iaik_pkcs_pkcs11_wrapper_PKCS11Implementation_C_1DecryptFinal()
2014 jLastPart = ckByteArrayToJByteArray(env, ckpLastPart, ckLastPartLength); in Java_iaik_pkcs_pkcs11_wrapper_PKCS11Implementation_C_1DecryptFinal()