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

Syntax

Visual Basic (Declaration)
Public MustOverride Function C_DeriveKey ( _
	hSession As Integer, _
	pMechanism As Mechanism, _
	hBaseKey As Integer, _
	pTemplate As ICollection, _
	<OutAttribute> ByRef phKey As Integer _
) As Integer
C#
public abstract int C_DeriveKey(
	int hSession,
	Mechanism pMechanism,
	int hBaseKey,
	ICollection pTemplate,
	out int phKey
)
Visual C++
public:
virtual int C_DeriveKey(
	int hSession, 
	Mechanism^ pMechanism, 
	int hBaseKey, 
	ICollection^ pTemplate, 
	[OutAttribute] int% phKey
) abstract
JavaScript
function c_DeriveKey(hSession, pMechanism, hBaseKey, pTemplate, phKey);

Parameters

hSession
Type: System..::..Int32
pMechanism
Type: Cryptware.NCryptoki..::..Mechanism
hBaseKey
Type: System..::..Int32
pTemplate
Type: System.Collections..::..ICollection
phKey
Type: System..::..Int32%

See Also