RSAKeyGenParameterSpec Constructors

Definition

Overloads

RSAKeyGenParameterSpec(Int32, BigInteger)

Constructs a new RSAKeyGenParameterSpec object from the given keysize, public-exponent value, and null key parameters.

RSAKeyGenParameterSpec(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

RSAKeyGenParameterSpec(Int32, BigInteger, IAlgorithmParameterSpec)

Constructs a new RSAKeyGenParameterSpec object from the given keysize, public-exponent value, and key parameters.

RSAKeyGenParameterSpec(Int32, BigInteger)

Constructs a new RSAKeyGenParameterSpec object from the given keysize, public-exponent value, and null key parameters.

[Android.Runtime.Register(".ctor", "(ILjava/math/BigInteger;)V", "")]
public RSAKeyGenParameterSpec (int keysize, Java.Math.BigInteger? publicExponent);
[<Android.Runtime.Register(".ctor", "(ILjava/math/BigInteger;)V", "")>]
new Java.Security.Spec.RSAKeyGenParameterSpec : int * Java.Math.BigInteger -> Java.Security.Spec.RSAKeyGenParameterSpec

Parameters

keysize
Int32

the modulus size (specified in number of bits)

publicExponent
BigInteger

the public exponent

Attributes

Remarks

Constructs a new RSAKeyGenParameterSpec object from the given keysize, public-exponent value, and null key parameters.

Java documentation for java.security.spec.RSAKeyGenParameterSpec.RSAKeyGenParameterSpec(int, java.math.BigInteger).

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

RSAKeyGenParameterSpec(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected RSAKeyGenParameterSpec (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Spec.RSAKeyGenParameterSpec : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Spec.RSAKeyGenParameterSpec

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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

RSAKeyGenParameterSpec(Int32, BigInteger, IAlgorithmParameterSpec)

Constructs a new RSAKeyGenParameterSpec object from the given keysize, public-exponent value, and key parameters.

[Android.Runtime.Register(".ctor", "(ILjava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)]
public RSAKeyGenParameterSpec (int keysize, Java.Math.BigInteger? publicExponent, Java.Security.Spec.IAlgorithmParameterSpec? keyParams);
[<Android.Runtime.Register(".ctor", "(ILjava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)>]
new Java.Security.Spec.RSAKeyGenParameterSpec : int * Java.Math.BigInteger * Java.Security.Spec.IAlgorithmParameterSpec -> Java.Security.Spec.RSAKeyGenParameterSpec

Parameters

keysize
Int32

the modulus size (specified in number of bits)

publicExponent
BigInteger

the public exponent

keyParams
IAlgorithmParameterSpec

the key parameters, may be null

Attributes

Remarks

Constructs a new RSAKeyGenParameterSpec object from the given keysize, public-exponent value, and key parameters.

Added in 11.

Java documentation for java.security.spec.RSAKeyGenParameterSpec.RSAKeyGenParameterSpec(int, java.math.BigInteger, java.security.spec.AlgorithmParameterSpec).

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