📄 rsaprivatekeyspec.java
字号:
/* * @(#)RSAPrivateKeySpec.java 1.9 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.security.spec;import java.math.BigInteger;/** * This class specifies an RSA private key. * * @author Jan Luehe * * @version 1.9 03/01/23 * * @see java.security.Key * @see java.security.KeyFactory * @see KeySpec * @see PKCS8EncodedKeySpec * @see RSAPublicKeySpec * @see RSAPrivateCrtKeySpec */public class RSAPrivateKeySpec implements KeySpec { private BigInteger modulus; private BigInteger privateExponent; /** * Creates a new RSAPrivateKeySpec. * * @param modulus the modulus * @param privateExponent the private exponent */ public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent) { this.modulus = modulus; this.privateExponent = privateExponent; } /** * Returns the modulus. * * @return the modulus */ public BigInteger getModulus() { return this.modulus; } /** * Returns the private exponent. * * @return the private exponent */ public BigInteger getPrivateExponent() { return this.privateExponent; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -