代码搜索:加密芯片
找到约 10,000 项符合「加密芯片」的源代码
代码结果 10,000
www.eeworm.com/read/289572/8543297
asm 实验三 数据加密.asm
;数据加密程序
;输入一个字符串,对其进行加密并输入(加密算法自选)。
print macro string ;宏——字符串输出
local string
lea dx,string
mov ah,9
int 21h
endm
data segment
mess1 db 0dh,0ah,'Input the initial c
www.eeworm.com/read/388853/8571252
txt sha1加密.txt
模块:
'--------------------------------------------------------------------------------------------------------------------------
'Attribute VB_Name = "SHA1"
Option Explicit
' TITLE:
www.eeworm.com/read/186790/8909857
pdf 黑客-加密和解密.pdf
www.eeworm.com/read/186726/8913861
txt 加密解密函数.txt
function passformat(pws:String; isRead:Boolean):String;
var
temp_pws:String[30];
pws_length,
i:ShortInt;
begin
randomize; //初始化随机数产生器
pws_length := 0;
if isR
www.eeworm.com/read/185233/9048768
c des加密算法.c
#include "stdio.h"
#include "iostream.h"
#include "memory.h"
//////////////////////////////////////////////////////////////////////////
static void F_func(bool In
www.eeworm.com/read/378881/9214065