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

📄 guitest.java

📁 java写的椭圆曲线加密(ECC)算法源码
💻 JAVA
字号:
package ecc.gui;import ecc.*;import ecc.elliptic.*;import ecc.rsa.*;public class GUITest{    public static void main(String[] args){	try{	    long time = System.currentTimeMillis();	    EllipticCurve ec = new EllipticCurve(new secp256r1());	    ECCryptoSystem cs = new ECCryptoSystem(ec);	    	    View v = new View(600,600, new RSACryptoSystem());	}	catch(Exception e){	    System.out.println("Error initializing system... exit(0)");	    System.exit(0);	}    }}

⌨️ 快捷键说明

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