chuyiwen_gmsv/include/des.h

24 lines
1.1 KiB
C
Raw Permalink Normal View History

2016-12-24 08:45:52 +08:00
//////////////////////////////////////////////////////////////////////////
2017-01-13 23:37:03 +08:00
//////////////////////////////////////////////////////////////////////////
2016-12-24 08:45:52 +08:00
/*
2017-01-13 23:37:03 +08:00
Provided by , Northeastern University (www.neu.edu.cn)
2016-12-24 08:45:52 +08:00
Email: blackdrn@sohu.com
This product is free for use.
*/
//////////////////////////////////////////////////////////////////////////
#include <stdbool.h>
enum {ENCRYPT,DECRYPT};
//enum bool{false,true}; // if bool is not supported,use this or just replace with char
// and use 1 for true,0 for false;
//////////////////////////////////////////////////////////////////////////
2017-01-13 23:37:03 +08:00
// Type—ENCRYPT:加密,DECRYPT:解密
// 输出缓冲区(Out)的长度 >= ((datalen+7)/8)*8,即比datalen大的且是8的倍数的最小正整数
// In 可以= Out,此时加/解密后将覆盖输入缓冲区(In)的内容
// 当keylen>8时系统自动使用3次DES加/解密,否则使用标准DES加/解密.超过16字节后只取前16字节
2016-12-24 08:45:52 +08:00
bool Des_Go(char *Out,char *In,long datalen,const char *Key,int keylen,bool Type);
//////////////////////////////////////////////////////////////////////////