conv_encrypt.java

来自「另一个使用java编写的加密通用算法包」· Java 代码 · 共 35 行

JAVA
35
字号
// $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 + =
减小字号Ctrl + -
显示快捷键?