keyringtesttoo.java

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

JAVA
41
字号
/*// $Log: KeyRingTestToo.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.security.rsa.*;import cryptix.pgp.*;public final class KeyRingTestToo{    public static final void    main(String argv[])    {        if (argv.length < 1)        {            System.out.println("Usage: java cryptix.pgp_examples.KeyRingTestToo keyring-name");            return;        }        try        {            new KeyRingTest(argv[0]).list(System.out);        }        catch(FileNotFoundException fnfe)        {            System.out.println("File : " + argv[0] + " Not found.");        }        catch(Exception e)        {            e.printStackTrace(System.out);        }    }}

⌨️ 快捷键说明

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