rsakey.java

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

JAVA
31
字号
/*// $Log: RSAKey.java,v $// Revision 1.1.1.1  1997/11/03 22:36:58  hopwood// + Imported to CVS (tagged as 'start').//// $Endlog$*/package java.security.interfaces;import java.math.BigInteger;/** * The interface to an RSA public or private key. * * <p><b>$Revision: 1.1.1.1 $</b> * @author David Hopwood * @since  IJCE 1.0 */public interface RSAKey {    /**     * Returns the modulus.     */    BigInteger getModulus();    /**     * Returns the exponent.     */    BigInteger getExponent();}

⌨️ 快捷键说明

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