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

📄 rsakeygenobserver.java

📁 RSA加解密算法
💻 JAVA
字号:
/* * Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) * All rights reserved. * * This library and applications are FREE FOR COMMERCIAL AND NON-COMMERCIAL USE * as long as the conditions within the COPYRIGHT file are adhered to. * */package cryptix.security.rsa;import cryptix.math.BigNum;import cryptix.math.BigInteger;import cryptix.math.RandomStream;import cryptix.math.TestPrime;import cryptix.math.TestPrimeObserver;/** * This class is an RSA key generator callback for monitoring progress * * <p>Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) * All rights reserved. */public interface RSAKeyGenObserver extends TestPrimeObserver{	/** the RSA Key Generator is searching for a suitable P */	public static final int FINDING_P = 5;	/** the RSA Key Generator is searching for a suitable Q */	public static final int FINDING_Q = 6;	/** the RSA Key Generator is generation a key from P and Q */	public static final int KEY_RESOLVING = 7;	/** the RSA Key Generator has finished */	public static final int KEY_GEN_DONE = 8;}

⌨️ 快捷键说明

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