⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 conv_encrypt.java

📁 另一个使用java编写的加密通用算法包
💻 JAVA
字号:
// $Log: conv_encrypt.java,v $// Revision 1.2  1999/06/30 23:06:44  edwin// Changing package name and fixing references to moved and/or changed classes.//// Revision 1.1.1.1  1997/11/03 22:36:55  hopwood// + Imported to CVS (tagged as 'start').//// $Endlog$package cryptix.examples.pgp;import java.io.*;import cryptix.math.PseudoRandomStream;import cryptix.security.MD5;import cryptix.security.SHA;import cryptix.pgp.*;import cryptix.mime.LegacyString;/** * DOCUMENT ME. * <p> * SECURITY: this should not be public, since it can write to "stuff.txt" and * "conv.pgp". */final class conv_encrypt{    public static void main(String[] args)    throws FileNotFoundException, IOException, FormatException    {        String messageText = "The quick brown fox jumps over the lazy dog";        byte[] foo = { (byte)'x' };        byte[] ideaKey = new MD5().digest(foo);        String keySeed = "Some random data to seed PseudoRandomStream ^%$

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -