利用STM32F唯一96bit序列号实现反拷贝加密的源代码公开
时间:11-26
来源:互联网
点击:
//---------------------------------------------------------------------------
#include
#pragma argsused
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fwdreason, LPVOID lpvReserved)
{
return 1;
}
//---------------------------------------------------------------------------
//本示例代码用BCB5编写,很容易移植到VC++等编译环境
//导出函数mcuisp_AntiCopy,mcuisp.exe将调用mcuisp_AntiCopy函数来实现反拷贝功能
extern "C" __declspec(dllexport) int __stdcall mcuisp_AntiCopy(
unsigned char *buf, //FLASH内容存储缓冲
DWORD buflen, //FLASH代码长度(字节)
DWORD startaddress, //FLASH的地址偏移,STM32F一般为0x08000000
unsigned char const *inbuf, //前12字节为96bit的芯片序列号
DWORD inputbuflen //序列号信息的长度
);
//--
int __stdcall mcuisp_AntiCopy(
unsigned char *buf, //FLASH内容存储缓冲
DWORD buflen, //FLASH代码长度(字节)
DWORD startaddress, //FLASH的地址偏移,STM32F一般为0x08000000
unsigned char const *inbuf, //前12字节为96bit的芯片序列号
DWORD inputbuflen //序列号信息的长度
)
{
//mcuisp_AntiCopy根据FLASH内容和芯片序列号,经过运算后,修改FLASH内容
//本例中,简单的把序列号拷贝到0x08010000的位置
//可以在STM32的代码中比对0x08010000和0x1ffff7e8的内容,相符才正常运行
//实际应用中,可以采取比较复杂的算法
memcpy(buf+0x10000,inbuf,12);
return 0;
};
上述DLL与mcuisp配合,即可实现STM32F AntiCopy功能。
由于算法由用户自己把握,自由发挥,可最大限度保护用户的代码
#include
#pragma argsused
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fwdreason, LPVOID lpvReserved)
{
}
//---------------------------------------------------------------------------
//本示例代码用BCB5编写,很容易移植到VC++等编译环境
//导出函数mcuisp_AntiCopy,mcuisp.exe将调用mcuisp_AntiCopy函数来实现反拷贝功能
extern "C" __declspec(dllexport) int __stdcall mcuisp_AntiCopy(
//--
int __stdcall mcuisp_AntiCopy(
{
};
上述DLL与mcuisp配合,即可实现STM32F AntiCopy功能。
由于算法由用户自己把握,自由发挥,可最大限度保护用户的代码
STM32F序列号反拷贝加 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)