资源列表
Multi
- Cryptanalysis of a multi-chaotic systems based image cryptosystem
hash
- 利用java语言实现了hash算法,算法简单,供大家参考(Implementation of hash algorithm)
zhimakaimen
- 使用openssl1.0.2,MD5加密的一个解密工具,仅供参考MD5解密方法,所以并不上传加密端(A decryption tool using OpenSSL, MD5 encrypted only for reference to the MD5 decryption method, so it does not upload the encrypted end)
3des
- 本次测试的代码是DES算法的C语言实现(VC 6.0): (1)加密 输入:8个明文字符,8个密钥字符(例如“12345678”,“12345678”) 将输入密钥和明文的8个字符各自转换为二进制,然后进行DES加密,输出加密结果 将加密过程中第1,2轮E盒扩展,S盒置换,P盒替代中间结果输出 (2)解密 输入:将加密之后得到的64比特密文作为输入 输出:经过DES解密之后,输出8比特字符(3DES encryption and decryption in C lan
AES原理及Matlab实现
- 利用Matlab实现AES,其中包括了AES中的主要算法理解,以及逐步实现AES加密过程的方法和步骤。(the implementation of AES)
基于Shamir秘密共享的云端多副本审计
- 基于Shamir秘密共享的云端多副本数据持有性审计-20150605 基于Shamir秘密共享的云端多副本数据持有性审计-20150605(Cloud multi replica data holding audit -20150605 based on Shamir secret sharing)
代码--定稿版
- 基于Android平台的文件加解密系统,是基于Android智能手机平台,使用官方所提供的Eclipse开发工具,JDK,Android ADT以及Android SDK,致力于打造Android手机文件加密解密软件,以保护广大手机用户的个人信息安全。功能包括三种算法的个人信息加密解密以及报文鉴别和数字签名。此手机加密解密软件面向所有的Android手机用户群,为他们确保手机个人信息的安全。(Based on the Android platform, the file encryption a
Advanced-Programming-Technique-master
- 改进的RSA算法 优化实现,代码通俗易懂,学习一下(The improved RSA algorithm is optimized and implemented, and the code is easy to understand and learn.)
100%%
- Video Encryption and Decryption using RSA Algorithm
BASE64
- Demo演示BASE64 编码和解码字符串,C++builder编写并调试通过(BASE64 encryption and decryption AnsiString)
AESUtil
- public static String encode(String in, String key) throws InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException, IllegalBlockSizeException, BadPaddingException { String hex = ""; byte[] bytIn = in.getBytes(
MD5
- public static String MD5(String inStr) { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance("MD5"); } catch (Exception e) { System.out.println(e.toString()); e.p