模块  java.base
软件包  java.security.spec

Class RSAPublicKeySpec

    • 构造方法详细信息

      • RSAPublicKeySpec

        public RSAPublicKeySpec​(BigInteger modulus,
                                BigInteger publicExponent)
        创建一个新的RSAPublicKeySpec。
        参数
        modulus - 模数
        publicExponent - 公共指数
      • RSAPublicKeySpec

        public RSAPublicKeySpec​(BigInteger modulus,
                                BigInteger publicExponent,
                                AlgorithmParameterSpec params)
        使用其他关键参数创建新的RSAPublicKeySpec。
        参数
        modulus - 模数
        publicExponent - 公共指数
        params - 与此键关联的参数可以为null
        从以下版本开始:
        11
    • 方法详细信息

      • getModulus

        public BigInteger getModulus()
        返回模数。
        结果
        模数
      • getPublicExponent

        public BigInteger getPublicExponent()
        返回公共指数。
        结果
        公众指数
      • getParams

        public AlgorithmParameterSpec getParams()
        返回与此键关联的参数,如果不存在,则可以为null。
        结果
        与此键关联的参数
        从以下版本开始:
        11