//-----***-unsigned char DesTempkey(bool SysKind)-***-----// //---功能描述:用临时密钥(分散密钥)加密数据,DES[14]={0x80,0xFA,0x00,0x00,0x08}。 //---输入条件:SysKind=0--->EasmChip的操作,SysKind=1-->CpuCard的操作。 //---输出项目:RetData=0x00操作成功;RetData=0xFF此操作失败。 unsigned char DesTempkey(bool SysKind) { unsigned char i; CmdBuf[CLA] = 0x80; CmdBuf[INS] = 0xfa; CmdBuf[P01] = 0x00; CmdBuf[P02] = 0x00; CmdBuf[P03] = 0x08;//-------------------------------------------------------要加密的数据长度 for(i = 0; i < 3; i ++) { CosCommand(SysKind,2,8); if( SwBuf[0] == 0x61 ) { if(GetResponse(SysKind,SwBuf[1]=SwBuf[1]&0x0f) == 0) { break; } } } if(i < 3) { return 0x00; } else { return 0xff; } } MSP430操作CPU卡原程序-----本人作品禁止任何形式的转载
相关链接:http://blog.21ic.com/user1/405/archives/2009/54998.html |