constructor:RSAPrivateKeySpec(java.math.BigInteger, java.math.BigInteger, java.security.spec.AlgorithmParameterSpec) [ADDED]

  • RSAPrivateKeySpec

    public RSAPrivateKeySpec(BigInteger modulus,
                             BigInteger privateExponent,
                             AlgorithmParameterSpec params)
    
    Creates a new RSAPrivateKeySpec with additional key parameters.
    Parameters:
    modulus - the modulus
    privateExponent - the private exponent
    params - the parameters associated with this key, may be null
    Since:
    8

method:getParams() [ADDED]

  • getParams

    public AlgorithmParameterSpec getParams()
    
    Returns the parameters associated with this key, may be null if not present.
    Returns:
    the parameters associated with this key
    Since:
    8

© 2019 Oracle Corporation and/or its affiliates