代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/328880/12996773
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// BlowFish Encrypt Tool.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#inc
www.eeworm.com/read/328855/12998061
txt java中常用的加密算法应用.txt
Java中常用的加密算法应用
1. MD5加密,常用于加密用户名密码,当用户验证时。
protected byte[] encrypt(byte[] obj) ...{
try ...{
MessageDigest md5 = MessageDigest.getInstance("MD5");
md5.update(obj);
retu
www.eeworm.com/read/140371/13085585
dsw crypto.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/140309/13088659
c desc.c
/*
DESC.C - Data Encryption Standard routines for RSAEURO
Copyright (c) J.S.A.Kapp 1994 - 1996.
RSAEURO - RSA Library compatible with RSAREF(tm) 2.0.
All functions prototypes are the Same as
www.eeworm.com/read/140309/13088856
c desc.c
/*
DESC.C - Data Encryption Standard routines for RSAEURO
Copyright (c) J.S.A.Kapp 1994 - 1996.
RSAEURO - RSA Library compatible with RSAREF(tm) 2.0.
All functions prototypes are the
www.eeworm.com/read/325544/13197406
h main.h
//Main.h
//
//程序主函数
void main (void);
//程序结构
void Menu (void); //菜单
void Input (void); //用户输入
void Process (void); //过程处理
bool Quit (void); //退出处理
void Show (void); //察看文件
www.eeworm.com/read/324420/13263768
txt visual c 中调用dll实现数据加密.txt
Visual C 中调用DLL实现数据加密
摘 要 介绍了动态链接库这种模块复用方法及在VC中对它的调用,并给出了一个通过复用来实现数据加密的具体实例。
关键词 VC DLL 模块复用 数据加密
引言
模块化思想贯穿于软件工程各个发展阶段,模块复用是构建大系统的一种重要思想。模块复用方法有:函数、函数库、动态链接库、COM。其都是基于模块化的基本思想。函数是 ...