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

  • RSAPublicKeySpec

    public RSAPublicKeySpec(BigInteger modulus,
                            BigInteger publicExponent,
                            AlgorithmParameterSpec params)
    
    Creates a new RSAPublicKeySpec with additional key parameters.
    Parameters:
    modulus - the modulus
    publicExponent - the public 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