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

Syntax

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

Parameters

hSession
Type: System..::..Int32
part
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)
encrypt
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)

See Also