We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need help with int[]. I write pkcs11 wrapper using your lib ffi. I have C code:
int[]
ffi
#define CK_PTR *; typedef CK_ULONG CK_MECHANISM_TYPE; typedef CK_MECHANISM_TYPE CK_PTR CK_MECHANISM_TYPE_PTR; CK_PKCS11_FUNCTION_INFO(C_GetMechanismList) #ifdef CK_NEED_ARG_LIST ( CK_SLOT_ID slotID, /* ID of token's slot */ CK_MECHANISM_TYPE_PTR pMechanismList, /* gets mech. array */ CK_ULONG_PTR pulCount /* gets # of mechs. */ ); #endif
How can I get data from C_GetMechanismList using ffi and ref-array?
C_GetMechanismList
ref-array
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need help with
int[]
. I write pkcs11 wrapper using your libffi
. I have C code:How can I get data from
C_GetMechanismList
usingffi
andref-array
?The text was updated successfully, but these errors were encountered: