📄 testgnucrypto.java
字号:
import gnu.crypto.cipher.CipherFactory;import gnu.crypto.cipher.IBlockCipher;import java.util.Iterator;class TestGnuCrypto{ // default ctor public static final void main(String[] args) { String cipher; IBlockCipher algorithm; for (Iterator it = CipherFactory.getNames().iterator(); it.hasNext(); ) { cipher = (String) it.next(); try { algorithm = null; algorithm = CipherFactory.getInstance(cipher); } catch (InternalError x) { x.printStackTrace(System.err); } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -