RSAKeyGenParameterSpec Constructors

Definition

Overloads

RSAKeyGenParameterSpec(Int32, BigInteger)

Constructs a new RSAParameterSpec object from the given keysize and public-exponent value.

RSAKeyGenParameterSpec(IntPtr, JniHandleOwnership)

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

RSAKeyGenParameterSpec(Int32, BigInteger)

Constructs a new RSAParameterSpec object from the given keysize and public-exponent value.

[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 RSAParameterSpec object from the given keysize and public-exponent value.

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