搜索资源列表
ScreenCopyV1
- 1: 注册系统热键(还有自定义消息函数) 2:托盘图标的简单建立 3:选择文件夹的对话框 4:打开和关闭一应用程序(打开进程) 5:对文件的超简单读和写 6:找到程序自己所在的路径 7:包含列举所有进程-1 : Registration System hotkeys (and the news function from the definition) 2 : Icon in the establishment of three simple : choose the f
MD5
- 一个MD5消息摘要算法的实现程序。感谢原作者。
MD5demo
- MD消息摘要程序,MD5以512位分组来处理输入的信息,且每一分组又被划分为16个32位子分组,经过了一系列的处理后,算法的输出由四个32位分组组成,将这四个32位分组级联后将生成一个128位散列值。-MD news summary procedures, MD5 to 512 groups to deal with the importation of information and each group was divided into 16 groups of 32 seats, afte
Masher
- 一个java语言下的生成消息摘要的程序,可用于验证来源和确定身份-a generation of news summary of the procedures can be used to verify the source and identification
SHA1.rar
- 根据SHA-1信息摘要算法,实现对任意数据的SHA-1消息摘要算,输入信息可以是二进制,十六进制,ASCII码,汉字或英文,或者是文本文档,等各种类型的文件,运行软件后生成固定长度的消息摘要,程序能提供良好地用户界面,According to SHA-1 message digest algorithm to achieve for arbitrary data, SHA-1 message digest calculation, input information can be binary,
rsa_des
- 混合加密程序,RSA算法加密DES密钥,DES算法加密消息.很多通讯系统都是这样加密的-Hybrid encryption, RSA key DES encryption algorithm, DES encryption algorithm message. A lot of communication systems, are encrypted
1730309Rsa
- 混合加密程序,RSA算法加密DES密钥,DES算法加密消息.很多通讯系统都是这样加密的 -Hybrid encryption, RSA key DES encryption algorithm, DES encryption algorithm message. A lot of communication systems are encrypted so
md5RSA
- 本程序实现了消息摘要和数字签名,涉及到的算法有md5和RSA,是一个不错的程序,希望对大家有所帮助-This procedure achieved a message digest and digital signatures are involved in the md5 algorithm and RSA, is a good program, I hope all of you to help! ! !
MD5-VC6
- 本程序实现了MD5消息摘要算法对输入的文字或选择的文件进行消息摘要.-This program implements MD5 message digest algorithm to input text or select a file message digest
md5
- MD5 的消息映射验证程序,MFC,实现了基本的原理-The implementation of MD5
RSA-
- 本程序实现网络安全通信中的消息数字签名及认证,同时对通信消息进行RSA加密。程序可自主设定加密密钥及各种参数!对密码编程者很有帮助!-The program s secure communications network a message digital signatures and authentication, and RSA encryption of communication messages. Encryption program can be set independently
SHA
- 一款简单的SHA消息摘要算法实现程序。利用Java语言编写。实现方法简单清晰。-SHA message digest algorithm to achieve a simple procedure. Using the Java language. The implementation is simple and clear.
signAndVerifyMessage
- 此程序是利用数字证书签名消息并验证消息签名-The use of digital certificates signed message and verify the message signature
rsa
- 1.问题描述 RSA密码系统可具体描述为:取两个大素数p和q,令n=pq,N=(p-1)(q-1),随机选择整数d,满足gcd(d,N)=1,ed=1 modN。 公开密钥:k1=(n,e) 私有密钥:k2=(p,q,d) 加密算法:对于待加密消息m,其对应的密文为c=E(m)=me(modn) 解密算法:D(c)=cd(modn) 2.基本要求 p,q,d,e参数选取合理,程序要求界面友好,自动化程度高。 4. 实现提示 要实现一个真实的RSA密码系统,主要考虑对大整数的处理。P