代码搜索:身份加密
找到约 5,494 项符合「身份加密」的源代码
代码结果 5,494
www.eeworm.com/read/346987/11708169
txt log_license.txt
# ---------------------------------------------------------------------------
#
# 进行对数运算的IP核,可以计算以2,10,e为底的对数,最高可输入24bit宽度的数据。
# 由AHDL语言写成,可在MaxplusII和QuartusII中使用,源代码加密。
#
# 使用方法
# 1.将以下FEATUR
www.eeworm.com/read/257441/11927288
h rc5.h
#include
#include
#include
//此程序为RC5加密算法的实现--参数32/12/16
int is_Sourcepathright(char *source_path);
int is_Destpathright(char *dest_path);
int Check(int argc,char **
www.eeworm.com/read/338615/12292054
c decode.c
//AES解密程序,将code得到的加密矩阵进行解密,得到原始矩阵
#include
#include
//#include
#define A 10
#define B 11
#define C 12
#define D 13
#define E 14
#define F 15
#define N 10
#defi
www.eeworm.com/read/231686/14223443
txt log_license.txt
# ---------------------------------------------------------------------------
#
# 进行对数运算的IP核,可以计算以2,10,e为底的对数,最高可输入24bit宽度的数据。
# 由AHDL语言写成,可在MaxplusII和QuartusII中使用,源代码加密。
#
# 使用方法
# 1.将以下FEATUR
www.eeworm.com/read/226441/14472824
dat bookinfo.dat
[General Information]
书名=C++ Builder与Windows API经典范例
作者=BEXP
SS号=010860668
加密地址=book://ssreader/e0?url=http://202.119.47.40/01/diskNAJS/NAJS85/10/!00001.pdg&pages=474&ss=010860668&candownload=1&do
www.eeworm.com/read/220903/14784356
h decrypt.h
#pragma once
#include "AES.h"
#ifndef KEY_LEN //密钥长度
#define KEY_LEN 128
#endif
#ifndef SEC_LEN //实际段长
#define SEC_LEN 64*1024
#endif
#ifndef DEC_SEC_LEN //加密后的段长
#define DEC_SEC_LEN SE
www.eeworm.com/read/114908/15034073
h kaesar.h
void kaesar_encryption(char m[],char key1) //kaesar加密算法
{
int k=int(key1);
if(k>=97)
k=k-96;
else
k=k-64;
for(int i=0;m[i]!='\0';i++)
{
if(int(m[i])>=97)
{
if(int(m[i])+k