int stdcall YW_ DownLoadKey
(
int ReaderID,
int KeyIndex,
unsigned char * Key
);
参数 |
类型 |
方向 |
含义 |
ReaderID |
int |
IN |
所要获取的设备标示ID,范围0x0000-0xFFFF,如果未知,则ReaderID=0 |
KeyIndex |
int |
IN |
待写入密钥存储的序号(0~31),共可存储32个密钥,该密钥是先写入读卡器保存,到卡片验证密钥的时候可以指定序号去验证。 |
Key |
unsigned char * |
IN |
密钥,每个密钥6个字节 |
返 回 值:大于0为命令发送成功,小于0为命令发送失败
int stdcall YW_ DownLoadKey(int ReaderID, int KeyIndex,unsigned char * Key);
function YW_DownLoadKey(ReaderID: Integer;KeyIndex: Integer;Key: PChar): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_DownLoadKey Lib "YW60x.dll" (ByVal ReaderID As Long, ByVal KeyIndex As Long, ByRef Key As Byte) As Long
public int YW_DownLoadKey(int ReaderID,int KeyIndex, Pointer Key)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_DownLoadKey");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1,KeyIndex);
fuc.setParameter(2,Key);
fuc.invoke();
ret = fuc.getRetValAsInt();
}
catch(NativeException e)
{
ret = -1;
}
catch(IllegalAccessException e)
{
ret = -2;
}
return ret;
}
[DllImport("YW60x.dll")]
public static extern int YW_DownLoadKey(int ReaderID,int KeyIndex, byte [] Key);
public FUNCTION long YW_DownLoadKey (long lReaderID , long KeyIndex , ref char Key[]) library "YW60x.dll"