public CKR C_EX_GetTokenInfoExtended(NativeULong slotId, ref CK_TOKEN_INFO_EXTENDED info)
        {
            if (_disposed)
                throw new ObjectDisposedException(GetType().FullName);

            NativeULong rv = _rutokenDelegates.C_EX_GetTokenInfoExtended(slotId, ref info);
            return (CKR)rv;
        }
Exemple #2
0
 internal static extern NativeULong C_EX_GetTokenInfoExtended(NativeULong slotId, ref CK_TOKEN_INFO_EXTENDED info);