다음을 통해 공유


DSAGenParameterSpec Constructors

Definition

Overloads

DSAGenParameterSpec(Int32, Int32)

Creates a domain parameter specification for DSA parameter generation using primePLen and subprimeQLen.

DSAGenParameterSpec(Int32, Int32, Int32)

Creates a domain parameter specification for DSA parameter generation using primePLen, subprimeQLen, and seedLen.

DSAGenParameterSpec(Int32, Int32)

Creates a domain parameter specification for DSA parameter generation using primePLen and subprimeQLen.

[Android.Runtime.Register(".ctor", "(II)V", "", ApiSince=35)]
public DSAGenParameterSpec (int primePLen, int subprimeQLen);
[<Android.Runtime.Register(".ctor", "(II)V", "", ApiSince=35)>]
new Java.Security.Spec.DSAGenParameterSpec : int * int -> Java.Security.Spec.DSAGenParameterSpec

Parameters

primePLen
Int32

the desired length of the prime P in bits.

subprimeQLen
Int32

the desired length of the sub-prime Q in bits.

Attributes

Remarks

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.

Java documentation for java.security.spec.DSAGenParameterSpec.DSAGenParameterSpec(int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DSAGenParameterSpec(Int32, Int32, Int32)

Creates a domain parameter specification for DSA parameter generation using primePLen, subprimeQLen, and seedLen.

[Android.Runtime.Register(".ctor", "(III)V", "", ApiSince=35)]
public DSAGenParameterSpec (int primePLen, int subprimeQLen, int seedLen);
[<Android.Runtime.Register(".ctor", "(III)V", "", ApiSince=35)>]
new Java.Security.Spec.DSAGenParameterSpec : int * int * int -> Java.Security.Spec.DSAGenParameterSpec

Parameters

primePLen
Int32

the desired length of the prime P in bits.

subprimeQLen
Int32

the desired length of the sub-prime Q in bits.

seedLen
Int32

the desired length of the domain parameter seed in bits, shall be equal to or greater than subprimeQLen.

Attributes

Remarks

Creates a domain parameter specification for DSA parameter generation using primePLen, subprimeQLen, and seedLen.

Java documentation for java.security.spec.DSAGenParameterSpec.DSAGenParameterSpec(int, int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to