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

搜索资源列表

  1. DesEncrypt

    0下载:
  2. * 使用DES加密与解密,可对byte[],String类型进行加密与解密 密文可使用String,byte[]存储. * * 方法: void getKey(String strKey)从strKey的字条生成一个Key * * String getEncString(String strMing)对strMing进行加密,返回String密文 String * getDesString(String strMi)对strMin进行解密,返回String明文
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1285
    • 提供者:tulip
  1. DesEncrypt

    0下载:
  2. DES加密DES,使用java编译,使用DES加密与解密,可对byte[],String类型进行加密与解密 密文可使用String,byte[]存储.。-DES encryption DES, using the java compiler, using DES encryption and decryption, can byte [], String type of encryption and decrypt the ciphertext can use String, byte [] m
  3. 所属分类:Java Develop

    • 发布日期:2017-03-30
    • 文件大小:1609
    • 提供者:wheat
  1. DESjava

    0下载:
  2. DES对称分组密码系统的Java实现,这是一个用java编写的关于密钥的经典程序-DES对称分组密码系统的Java实现
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:5627
    • 提供者:Cynthia
  1. des

    0下载:
  2. 一个比较通用的DES的算法代码,功能实现了字符的DESL加解密,需要设定8位长度的密钥-A generic DES algorithm code, function the characters DESL encryption and decryption, you need to set the length of eight key
  3. 所属分类:Java Develop

    • 发布日期:2017-11-15
    • 文件大小:6346
    • 提供者:changweizhang
  1. DESUtil

    0下载:
  2. 用java实现的DES加密算法,输入明文,然后输出密文!-Using java implementation of the DES encryption algorithm, the input plaintext and then outputs the ciphertext!
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:6534
    • 提供者:杨丁彬
  1. textencryption

    0下载:
  2. java DES加密和解密的简单源码介绍,生成密钥后直接解密,不存在密钥保存问题-java DES encryption and decryption of simple source introduced directly after decryption key generation, key storage problem does not exist
  3. 所属分类:Java Develop

    • 发布日期:2017-03-24
    • 文件大小:762
    • 提供者:yin
  1. Main

    0下载:
  2. 实现DES加密,通过输入明文可以得到密文,然后输入密文可以得到明文,为了解DES加密提供帮助-DES encryption, can be obtained by entering the plaintext ciphertext and plaintext input ciphertext can get, help to understand the DES encryption
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2058
    • 提供者:严峻
  1. DES

    0下载:
  2. DES加密算法,输入任意长度密文,密文八字节,适合高校-DES encryption algorithm, enter any cipher, ciphertext eight bytes for college
  3. 所属分类:Applet

    • 发布日期:2017-04-08
    • 文件大小:2774
    • 提供者:文柳
  1. desAlgorithm

    0下载:
  2. 对称密码技术的实现 (1)熟悉相应的DES加密/解密函数的使用,在单机完成对特定文件(test-1.txt)的单重DES加密/解密; (2)针对DES密钥特点(8字节,64比特位,其中真正起作用的为56比特位),设计一次一密的密钥产生机制(即每次会话所使用的密钥都是临时随机产生的) -Achieve symmetric cryptographic techniques (1) be familiar with the appropriate use of DES encryption
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:6218
    • 提供者:王同学
  1. KDC

    8下载:
  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. 所属分类:Java Develop

    • 发布日期:2015-10-19
    • 文件大小:2112512
    • 提供者:王同学
  1. InfoSecurity

    4下载:
  2. 完成分布式对称密钥分配 说明:作为通讯的双方A和B已经共享一个会话主密钥Km。在完成会话密钥Ks的分配后,A利用Ks对特定文件(test-1.txt)进行加密,并发送给B;B利用Ks对密文进行解密,并对比解密后的明文信息同原来的文件是否一致。 要求: (1)JAVA语言编程实现,基于DES完成对称密码技术的加/解密(JAVA有库函数支持); (2)通信内容为一文本文件(test-1.txt); (3)基于网络完成密钥分配工作(作为通信的双方A、B应部署于两台主机上); (
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:15236
    • 提供者:王同学
  1. DES

    0下载:
  2. 通过编程实现DES算法, 理解对称加密和Feistel密码结构的基本原理, 掌握DES算法加解密的流程 实验要求 利用C++、 Java实现DES算法, 要求使用面向对象的方法, 分别实现文件的加密和解密方法、 密钥的生成方法。-Through the programming DES algorithm to understand the symmetric encryption and Feistel password structure of the basic principles,
  3. 所属分类:JavaScript

    • 发布日期:2017-12-10
    • 文件大小:4556
    • 提供者:方方
搜珍网 www.dssz.com