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

Syntax

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

Parameters

hSession
Type: System..::..Int32
oldpin
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)
newpin
Type: System.Collections.Generic..::..IList<(Of <(Byte>)>)

See Also