Namespace:  Cryptware.NCryptoki
Assembly:  NCryptoki (in NCryptoki.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Function C_SignRecover ( _
	hSession As Integer, _
	data As IList(Of Byte), _
	signature As IList(Of Byte) _
) As Integer
C#
public abstract int C_SignRecover(
	int hSession,
	IList<byte> data,
	IList<byte> signature
)
Visual C++
public:
virtual int C_SignRecover(
	int hSession, 
	IList<unsigned char>^ data, 
	IList<unsigned char>^ signature
) abstract
JavaScript
function c_SignRecover(hSession, data, signature);

Parameters

hSession
Type: System..::..Int32
data
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)
signature
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)

See Also