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

📄 estest.java

📁 另一个使用java编写的加密通用算法包
💻 JAVA
字号:
// $Log: esTest.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 java.util.Vector;import cryptix.security.rsa.*;import cryptix.pgp.*;import cryptix.util.EmailAddress;/** * Encrypts and signs a string (messageText) and writes the ciphertext to es-test.asc * Demonstrates the ArmouredMessage, Passphrase, PublicKeyRing, * SecretKeyRing and EmailAddress classes. * Run this in your PGP directory, or provide the full path to your keyrings. * <p><b>$Revision: 1.2 $</b> * @author Ian Brown **/public final class esTest{    public static final void main(String argv[]) throws FileNotFoundException, IOException, DecryptException, FormatException    {    SecretKeyRing secretKeyRing;    PublicKeyRing publicKeyRing;    cryptix.security.rsa.SecretKey myKey;    PublicKey toKey;    Vector to = new Vector();    ArmouredMessage message;    FileOutputStream fos;    EmailAddress myAddress = new EmailAddress("Edwin Woudt testing Cryptix PGP <edwin@cryptix.org>") ;    //String myAddress = "Ian Brown <Ian.Brown@ncl.ac.uk>";    EmailAddress toAddress = new EmailAddress("Edwin Woudt testing Cryptix PGP <edwin@cryptix.org>");    String messageText = "Put your test message here." + Armoury.LINEFEED        + "It can be as Happy Xmas as you like.";     if (argv.length < 1)    {        System.out.println("Usage: java esTest passphrase");        return;    }    System.out.println("Writing a signed version of '" + messageText + "' encrypted for " + toAddress + " to es-test.asc.");    // Get keys     secretKeyRing = new SecretKeyRing("secring.pgp");    publicKeyRing = new PublicKeyRing("pubring.pgp");     myKey = secretKeyRing.getKey(myAddress, new Passphrase(argv[0]));    if (myKey == null)    {        System.err.println("Couldn't find key for " + myAddress.toString());        System.exit(1);    }    toKey = publicKeyRing.getKey(toAddress);    if (toKey != null) to.addElement(toKey);    else System.err.println("Couldn't find key for " + toAddress.toString());    // Message will be encrypted and signed    message = new ArmouredMessage(messageText, myKey, to);    // Write clearsigned message to a file    fos = new FileOutputStream("es-test.asc");    new PrintStream(fos).print(message.ciphertext());    fos.close();    }}

⌨️ 快捷键说明

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