Java™ Platform
Standard Ed. 8
compact1, compact2, compact3
java.security.spec

Class DSAGenParameterSpec

    • Constructor Summary

      Constructors 
      Constructor and Description
      DSAGenParameterSpec(int primePLen, int subprimeQLen)
      Creates a domain parameter specification for DSA parameter generation using primePLen and subprimeQLen.
      DSAGenParameterSpec(int primePLen, int subprimeQLen, int seedLen)
      Creates a domain parameter specification for DSA parameter generation using primePLen, subprimeQLen, and seedLen.
    • Constructor Detail

      • DSAGenParameterSpec

        public DSAGenParameterSpec(int primePLen,
                                   int subprimeQLen)
        Creates a domain parameter specification for DSA parameter generation using primePLen and subprimeQLen. The value of subprimeQLen is also used as the default length of the domain parameter seed in bits.
        Parameters:
        primePLen - the desired length of the prime P in bits.
        subprimeQLen - the desired length of the sub-prime Q in bits.
        Throws:
        IllegalArgumentException - if primePLen or subprimeQLen is illegal per the specification of FIPS 186-3.
      • DSAGenParameterSpec

        public DSAGenParameterSpec(int primePLen,
                                   int subprimeQLen,
                                   int seedLen)
        Creates a domain parameter specification for DSA parameter generation using primePLen, subprimeQLen, and seedLen.
        Parameters:
        primePLen - the desired length of the prime P in bits.
        subprimeQLen - the desired length of the sub-prime Q in bits.
        seedLen - the desired length of the domain parameter seed in bits, shall be equal to or greater than subprimeQLen.
        Throws:
        IllegalArgumentException - if primePLenLen, subprimeQLen, or seedLen is illegal per the specification of FIPS 186-3.
    • Method Detail

      • getPrimePLength

        public int getPrimePLength()
        Returns the desired length of the prime P of the to-be-generated DSA domain parameters in bits.
        Returns:
        the length of the prime P.
      • getSubprimeQLength

        public int getSubprimeQLength()
        Returns the desired length of the sub-prime Q of the to-be-generated DSA domain parameters in bits.
        Returns:
        the length of the sub-prime Q.
      • getSeedLength

        public int getSeedLength()
        Returns the desired length of the domain parameter seed in bits.
        Returns:
        the length of the domain parameter seed.
Java™ Platform
Standard Ed. 8

Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部