CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 密码明文

搜索资源列表

  1. des1

    0下载:
  2. DES密码加密/解密算法的C++实现 DES是一种明文分组64比特,有效密钥56比特,输入密文64比特,具有16轮迭代的分组对称密码算法-DES C++ implementation
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:4006
    • 提供者:聂春雷
  1. encrypt_de

    0下载:
  2. 这个代码是一个密码以明文或密文中字符串和加密/解密根据用户定义的键值。-This code is a password in plain text or cipher text string encryption/decryption based on user-defined key.
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-23
    • 文件大小:8301
    • 提供者:绿叶红花
  1. DES

    0下载:
  2. DES密码加密算法 对8字符明文进行加密 输出密文-DES password encryption algorithm to 8 characters text is encrypted output ciphertext
  3. 所属分类:Console

    • 发布日期:2017-12-08
    • 文件大小:3791
    • 提供者:wangaohui
  1. MD5-Encryption-Algorithm-VCPP

    0下载:
  2. MD5是一个安全的散列算法,输入两个不同的明文不会得到相同的输出值,根据输出值,不能得到原始的明文,即其过程不可逆;所以要解密MD5没有现成的算法,只能用穷举法,把可能出现的明文,用MD5算法散列之后,把得到的散列值和原始的数据形成一个一对一的映射表,通过比在表中比破解密码的MD5算法散列值,通过匹配从映射表中找出破解密码所对应的原始明文。 对信息系统或者网站系统来说,MD5算法主要用在用户注册口令的加密,对于普通强度的口令加密,可以通过以下三种方式进行破解: (1)在线查询密码。一些在
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:
    • 文件大小:274155
    • 提供者:Johnson
  1. VCKaisa

    1下载:
  2. 使用vc编写的简单的实现凯撒密码代码。语法是,将输入的明文根据其ascll码加上输入的密钥之后换位为相应ascll的密文。-Using vc to write the simple implementation of Caesar cipher code. According to its syntax is that the input plaintext ascll code plus the input key after transposition for the correspondi
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-06
    • 文件大小:66841
    • 提供者:
  1. MD5

    0下载:
  2. 一个MD5码和sha加密类,可以对明文进行加密。可以用于注册用户密码-An MD5 code and sha encryption type, you can encrypt the plaintext. Can be used to register the user password
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-20
    • 文件大小:4813
    • 提供者:莫名
  1. Kugou

    0下载:
  2. 读取酷狗本地保存密码工具,注意是密码MD5值哟,并不是明文密码-Read Cool Dog locally saved passwords tool, note the password MD5 value yo, is not clear-text passwords
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-14
    • 文件大小:365255
    • 提供者:jha334201553
  1. Des

    0下载:
  2. DES密码的C语言实现。 输入为同目录下存放明文的1.txt文件,存放密钥的key.txt文件。输出为加密后的2.txt文件,以及2.解密后的3.txt。-DES passwords C language. Enter the same directory stored plaintext 1.txt, stored keys key.txt . 2.txt the encrypted output file, and 2. Decrypted 3.txt.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-14
    • 文件大小:18008
    • 提供者:VongRuohang
  1. VigenereCode

    0下载:
  2. 演示vigenere密码算法,给出密码表,输入明文得到密文,方便作业、演示、学习-Demo vigenere cryptographic algorithm, given the password table, enter the plaintext ciphertext, convenient operation, demos, learning
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:209275
    • 提供者:david
  1. mixed-encrypt-system

    1下载:
  2. 本系统实现了一个基本的混合密码系统。它使用DES作为对称密钥算法,RSA作为公开密钥算法。本系统特点如下: 1:提供了俩个加密接口。混合加密,DES加密。 2:本系统的DES可以进行1次DES加密(标准DES加密)和3次DES加密。它会根据密钥长度,自动选择加密方案。当密钥长度在64位以内时它将使用标准DES加密,当密钥长度超过64位后,系统将设置第2密钥,并启用3次DES加密。其密钥长度可达112位,并且它还具有很强的扩展性,提供了3种加解密接口:文件接口,文件句柄接口(可以供其他加密
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-19
    • 文件大小:5545671
    • 提供者:gu
  1. Centralized-symmetric-key

    3下载:
  2. 完成集中式对称密钥的分配工作 说明:作为通讯的双方A和B,都已经分别和KDC拥有会话密钥Ka和Kb,但A、B之间事先没有保密通道,需要依赖KDC为它们的会话分配临时密钥Ks。在完成会话密钥Ks的分配后,A利用Ks对特定文件(test-1.txt)进行加密,并发送给B;B利用Ks对密文进行解密,并对比解密后的明文信息同原来的文件是否一致。 要求: (1)JAVA语言编程实现,基于DES完成对称密码技术的加/解密(JAVA有库函数支持); (2)通信内容为一文本文件(test-1.t
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2015-10-19
    • 文件大小:4096
    • 提供者:丁元元
  1. RSA

    0下载:
  2. RSA密码算法的C++实现(输入明文输出密码)-RSA cryptographic algorithm C++ achieved (outputs the input plaintext password)
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:202090
    • 提供者:齐菁
  1. Win2000GetPassword

    0下载:
  2. 该程序可以获得NT/Win2K当前登录用户的明文密码(需要管理员权限)。-The program can obtain the current logged-on user NT/Win2K plaintext password (requires administrator privileges).
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-15
    • 文件大小:6406
    • 提供者:guizi
  1. Kaisa

    0下载:
  2. 凯撒密码加密、解密算法Java实现,明文的输入有判断-Caesar cipher encryption, decryption algorithm implemented in Java, the plaintext input has to judge
  3. 所属分类:Crack_Hack

    • 发布日期:2017-04-13
    • 文件大小:2776
    • 提供者:唐烨
  1. Desktop

    0下载:
  2. 1、 凯撒密码是一种古老的对称加密体制,它的基本思想是:通过把字母移动一定的位数来实现加密和解密。例如,如果密匙是把明文字母的位数向后移动三位,那么明文字母A就变成了密文的D,依次类推,得到明文字符集与密文字符集如下: 明码表:A B C D E F G H I J K L M N O P Q R S T U V W X Y Z密码表:D E F G H I J K L M N O P Q R S T U V W X Y Z A B C 由此可见,位数就是凯撒密码加密和解密的密钥。
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1147
    • 提供者:Ivy
  1. Vigenere

    2下载:
  2. 要求实现Vigenere密码算法。 明文从文本文件中提取,密文存入文件。 编码采用ASCII码,模运算以256取模,密码采用单词方式(如"computer")。-Required to achieve Vigenere cipher algorithm. Expressly extracted from the text file into a file ciphertext. Encoded using ASCII code, modular arithmetic modulo 256
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-09
    • 文件大小:152415
    • 提供者:朱楠
  1. caesar

    0下载:
  2. 凯撒密码——输入一行明文(英文),会得到25种通过凯撒加密方法得到的密文。-Caesar password- Enter a line of plain text (in English), you will get 25 kinds of encryption methods obtained by Caesar ciphertext.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:611
    • 提供者:WongMan
  1. DES

    0下载:
  2. 利用Java API实现DES对称密码加密,首先获得秘钥,其次利用该秘钥对明文加密,最后利用秘钥对密文解密得到明文-Implement DES encrypt and decrypt using Java API.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-15
    • 文件大小:7750
    • 提供者:李亚慧
  1. RSA

    0下载:
  2. js写的RSA加密算法,可用于在html前端加密,防止登陆过程中密码以明文的形式传输出去-js wrote the RSA encryption algorithm that can be used in the html front-end encryption, password login process to prevent the transmission went out in the form of plain text
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-02
    • 文件大小:10452
    • 提供者:yql
  1. mimikatz-

    0下载:
  2. 用来读取明文密码的 2008也可以 请在远控下使用-2008 to read the plaintext password can also use in the remote control under
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:231596
    • 提供者:1
« 1 2 3 4 5 6 78 9 »
搜珍网 www.dssz.com