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

Syntax

Visual Basic (Declaration)
Public MustOverride Function C_UnwrapKey ( _
	hSession As Integer, _
	pMechanism As Mechanism, _
	hUnwrappingKey As Integer, _
	pWrappedKey As IList(Of Byte), _
	attrsColl As ICollection, _
	<OutAttribute> ByRef hKey As Integer _
) As Integer
C#
public abstract int C_UnwrapKey(
	int hSession,
	Mechanism pMechanism,
	int hUnwrappingKey,
	IList<byte> pWrappedKey,
	ICollection attrsColl,
	out int hKey
)
Visual C++
public:
virtual int C_UnwrapKey(
	int hSession, 
	Mechanism^ pMechanism, 
	int hUnwrappingKey, 
	IList<unsigned char>^ pWrappedKey, 
	ICollection^ attrsColl, 
	[OutAttribute] int% hKey
) abstract
JavaScript
function c_UnwrapKey(hSession, pMechanism, hUnwrappingKey, pWrappedKey, attrsColl, hKey);

Parameters

hSession
Type: System..::..Int32
pMechanism
Type: Cryptware.NCryptoki..::..Mechanism
hUnwrappingKey
Type: System..::..Int32
pWrappedKey
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)
attrsColl
Type: System.Collections..::..ICollection
hKey
Type: System..::..Int32%

See Also