实例介绍
【实例截图】
【核心代码】
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
//using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices; //调用动态库一定要加入这个引用
using System.Text;//一定要加入这个
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
//常量定义
public const byte BLOCK0_EN = 0x01;//操作第0块
public const byte BLOCK1_EN = 0x02;//操作第1块
public const byte BLOCK2_EN = 0x04;//操作第2块
public const byte NEEDSERIAL = 0x08;//仅对指定序列号的卡操作
public const byte EXTERNKEY = 0x10;
public const byte NEEDHALT = 0x20;//读卡或写卡后顺便休眠该卡,休眠后,卡必须拿离开感应区,再放回感应区,才能进行第二次操作。
//------------------------------------------------------------------------------------------------------------------------------------------------------
//外部函数声明:让设备发出声响
[DllImport("OUR_MIFARE.dll", EntryPoint = "pcdbeep", CallingConvention = CallingConvention.StdCall)]
static extern byte pcdbeep(UInt32 xms);//xms单位为毫秒
//------------------------------------------------------------------------------------------------------------------------------------------------------
//只读卡号
[DllImport("OUR_MIFARE.dll", EntryPoint = "piccrequest", CallingConvention = CallingConvention.StdCall)]
public static extern byte piccrequest(byte[] serial);//devicenumber用于返回编号
//------------------------------------------------------------------------------------------------------------------------------------------------------
//读取设备编号,可做为软件加密狗用,也可以根据此编号在公司网站上查询保修期限
[DllImport("OUR_MIFARE.dll", EntryPoint = "pcdgetdevicenumber", CallingConvention = CallingConvention.StdCall)]
static extern byte pcdgetdevicenumber(byte[] devicenumber);//devicenumber用于返回编号
//------------------------------------------------------------------------------------------------------------------------------------------------------
//轻松读卡
[DllImport("OUR_MIFARE.dll", EntryPoint = "piccreadex", CallingConvention = CallingConvention.StdCall)]
static extern byte piccreadex(byte ctrlword, byte[] serial, byte area, byte keyA1B0, byte[] picckey, byte[] piccdata0_2);
//参数:说明
//ctrlword:控制字
//serial:卡序列号数组,用于指定或返回卡序列号
//area:指定读卡区号
//keyA1B0:指定用A或B密码认证,一般是用A密码,只有特殊用途下才用B密码,在这不做详细解释。
//picckey:指定卡密码,6个字节,卡出厂时的初始密码为6个0xff
//piccdata0_2:用于返回卡该区第0块到第2块的数据,共48个字节.
//------------------------------------------------------------------------------------------------------------------------------------------------------
//轻松写卡
[DllImport("OUR_MIFARE.dll", EntryPoint = "piccwriteex", CallingConvention = CallingConvention.StdCall)]
static extern byte piccwriteex(byte ctrlword, byte[] serial, byte area, byte keyA1B0, byte[] picckey, byte[] piccdata0_2);
//参数:说明
//ctrlword:控制字
//serial:卡序列号数组,用于指定或返回卡序列号
//area:指定读卡区号
//keyA1B0:指定用A或B密码认证,一般是用A密码,只有特殊用途下才用B密码,在这不做详细解释。
//picckey:指定卡密码,6个字节,卡出厂时的初始密码为6个0xff
//piccdata0_2:用于返回卡该区第0块到第2块的数据,共48个字节.
//------------------------------------------------------------------------------------------------------------------------------------------------------
//修改卡单区的密码
[DllImport("OUR_MIFARE.dll", EntryPoint = "piccchangesinglekey", CallingConvention = CallingConvention.StdCall)]
static extern byte piccchangesinglekey(byte ctrlword, byte[] serial, byte area, byte keyA1B0, byte[] piccoldkey, byte[] piccnewkey);
//参数:说明
//ctrlword:控制字
//serial:卡序列号数组,用于指定或返回卡序列号
//area:指定读卡区号
//keyA1B0:指定用A或B密码认证,一般是用A密码,只有特殊用途下才用B密码,在这不做详细解释。
//piccoldkey://旧密码
//piccnewkey://新密码.
//------------------------------------------------------------------------------------------------------------------------------------------------------
//发送显示内容到读卡器
[DllImport("OUR_MIFARE.dll", EntryPoint = "lcddispfull", CallingConvention = CallingConvention.StdCall)]
static extern byte lcddispfull(string lcdstr);
//参数:说明
//lcdstr:显示内容
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)//轻松读卡
{
byte status;//存放返回值
byte myareano;//区号
byte authmode;//密码类型,用A密码或B密码
byte myctrlword;//控制字
byte[] mypicckey = new byte[6];//密码
byte[] mypiccserial = new byte[4];//卡序列号
byte[] mypiccdata = new byte[48]; //卡数据缓冲
//控制字指定,控制字的含义请查看本公司网站提供的动态库说明
myctrlword = BLOCK0_EN BLOCK1_EN BLOCK2_EN EXTERNKEY;
//指定区号
myareano = 8;//指定为第8区
//批定密码模式
authmode = 1;//大于0表示用A密码认证,推荐用A密码认证
//指定密码
mypicckey[0] = 0xff;
mypicckey[1] = 0xff;
mypicckey[2] = 0xff;
mypicckey[3] = 0xff;
mypicckey[4] = 0xff;
mypicckey[5] = 0xff;
status = piccreadex(myctrlword, mypiccserial, myareano, authmode, mypicckey, mypiccdata);
//在下面设定断点,然后查看mypiccserial、mypiccdata,
//调用完 piccreadex函数可读出卡序列号到 mypiccserial,读出卡数据到mypiccdata,
//开发人员根据自己的需要处理mypiccserial、mypiccdata 中的数据了。
//处理返回函数
switch (status)
{
case 0:
MessageBox.Show("操作成功,数据已返回在mypiccdata数组中");
break;
//......
case 8:
MessageBox.Show("请将卡放在感应区");
break;
default:
MessageBox.Show("返回码(对应的说明请看例子中的注释):" status);
break;
}
//返回解释
/*
REQUEST 8//寻卡错误
READSERIAL 9//读序列吗错误
SELECTCARD 10//选卡错误
LOADKEY 11//装载密码错误
AUTHKEY 12//密码认证错误
READ 13//读卡错误
WRITE 14//写卡错误
NONEDLL 21//没有动态库
DRIVERORDLL 22//动态库或驱动程序异常
DRIVERNULL 23//驱动程序错误或尚未安装
TIMEOUT 24//操作超时,一般是动态库没有反映
TXSIZE 25//发送字数不够
TXCRC 26//发送的CRC错
RXSIZE 27//接收的字数不够
RXCRC 28//接收的CRC错
*/
}
private void button2_Click(object sender, EventArgs e)//轻松写卡
{
byte i;
byte status;//存放返回值
byte myareano;//区号
byte authmode;//密码类型,用A密码或B密码
byte myctrlword;//控制字
byte[] mypicckey = new byte[6];//密码
byte[] mypiccserial = new byte[4];//卡序列号
byte[] mypiccdata = new byte[48]; //卡数据缓冲
//控制字指定,控制字的含义请查看本公司网站提供的动态库说明
myctrlword = BLOCK0_EN BLOCK1_EN BLOCK2_EN EXTERNKEY;
//指定区号
myareano = 8;//指定为第8区
//批定密码模式
authmode = 1;//大于0表示用A密码认证,推荐用A密码认证
//指定密码
mypicckey[0] = 0xff;
mypicckey[1] = 0xff;
mypicckey[2] = 0xff;
mypicckey[3] = 0xff;
mypicckey[4] = 0xff;
mypicckey[5] = 0xff;
//指定卡数据
for (i = 0; i < 48; i )
{
mypiccdata[i] = i;
}
status = piccwriteex(myctrlword, mypiccserial, myareano, authmode, mypicckey, mypiccdata);
//在下面设定断点,然后查看mypiccserial、mypiccdata,
//调用完 piccreadex函数可读出卡序列号到 mypiccserial,读出卡数据到mypiccdata,
//开发人员根据自己的需要处理mypiccserial、mypiccdata 中的数据了。
//处理返回函数
switch (status)
{
case 0:
MessageBox.Show("操作成功,mypiccdata数组中的数据已写入卡中");
break;
//......
case 8:
MessageBox.Show("请将卡放在感应区");
break;
default:
MessageBox.Show("返回码(对应的说明请看例子中的注释):" status);
break;
}
//返回解释
/*
REQUEST 8//寻卡错误
READSERIAL 9//读序列吗错误
SELECTCARD 10//选卡错误
LOADKEY 11//装载密码错误
AUTHKEY 12//密码认证错误
READ 13//读卡错误
WRITE 14//写卡错误
NONEDLL 21//没有动态库
DRIVERORDLL 22//动态库或驱动程序异常
DRIVERNULL 23//驱动程序错误或尚未安装
TIMEOUT 24//操作超时,一般是动态库没有反映
TXSIZE 25//发送字数不够
TXCRC 26//发送的CRC错
RXSIZE 27//接收的字数不够
RXCRC 28//接收的CRC错
*/
}
private void button4_Click(object sender, EventArgs e)
{
pcdbeep(50);
}
private void button3_Click(object sender, EventArgs e)
{
byte status;//存放返回值
byte myareano;//区号
byte authmode;//密码类型,用A密码或B密码
byte myctrlword;//控制字
byte[] piccoldkey = new byte[6];//旧密码
byte[] mypiccserial = new byte[4];//卡序列号
byte[] piccnewkey = new byte[6]; //新密码.
//控制字指定,控制字的含义请查看本公司网站提供的动态库说明
myctrlword = 0;
//指定区号
myareano = 8;//指定为第8区
//批定密码模式
authmode = 1;//大于0表示用A密码认证,推荐用A密码认证
//指定旧密码
piccoldkey[0] = 0xff;
piccoldkey[1] = 0xff;
piccoldkey[2] = 0xff;
piccoldkey[3] = 0xff;
piccoldkey[4] = 0xff;
piccoldkey[5] = 0xff;
//指定新密码,注意:指定新密码时一定要记住,否则有可能找不回密码,导致该卡报废。
piccnewkey[0] = 0xff;
piccnewkey[1] = 0xff;
piccnewkey[2] = 0xff;
piccnewkey[3] = 0xff;
piccnewkey[4] = 0xff;
piccnewkey[5] = 0xff;
status = piccchangesinglekey(myctrlword, mypiccserial, myareano, authmode, piccoldkey, piccnewkey);
//在下面设定断点,然后查看mypiccserial、mypiccdata,
//调用完 piccreadex函数可读出卡序列号到 mypiccserial,读出卡数据到mypiccdata,
//开发人员根据自己的需要处理mypiccserial、mypiccdata 中的数据了。
//处理返回函数
switch (status)
{
case 0:
MessageBox.Show("操作成功,密码已被修改!");
break;
//......
case 8:
MessageBox.Show("请将卡放在感应区");
break;
default:
MessageBox.Show("返回码(对应的说明请看例子中的注释):" status);
break;
}
//返回解释
/*
REQUEST 8//寻卡错误
READSERIAL 9//读序列吗错误
SELECTCARD 10//选卡错误
LOADKEY 11//装载密码错误
AUTHKEY 12//密码认证错误
READ 13//读卡错误
WRITE 14//写卡错误
NONEDLL 21//没有动态库
DRIVERORDLL 22//动态库或驱动程序异常
DRIVERNULL 23//驱动程序错误或尚未安装
TIMEOUT 24//操作超时,一般是动态库没有反映
TXSIZE 25//发送字数不够
TXCRC 26//发送的CRC错
RXSIZE 27//接收的字数不够
RXCRC 28//接收的CRC错
*/
}
private void button8_Click(object sender, EventArgs e)//读取设备编号,可做为软件加密狗用,也可以根据此编号在公司网站上查询保修期限
{
byte[] devno = new byte[4];
if (pcdgetdevicenumber(devno) == 0)
{
MessageBox.Show(System.Convert.ToString(devno[0]) "-" System.Convert.ToString(devno[1]) "-" System.Convert.ToString(devno[2]) "-" System.Convert.ToString(devno[3]));
//ShowMessage(IntToStr(devno[0]) "-" IntToStr(devno[1]) "-" IntToStr(devno[2]) "-" IntToStr(devno[3]));
}
}
private void button9_Click(object sender, EventArgs e)
{
string strls;
strls = textBox1.Text;
lcddispfull(strls);
}
}
}
标签: IC卡
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明


支持(0) 盖楼(回复)