RSAOtherPrimeInfo Constructors

Definition

Overloads

RSAOtherPrimeInfo(IntPtr, JniHandleOwnership)

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

RSAOtherPrimeInfo(BigInteger, BigInteger, BigInteger)

Creates a new RSAOtherPrimeInfo given the prime, primeExponent, and crtCoefficient as defined in PKCS#1.

RSAOtherPrimeInfo(IntPtr, JniHandleOwnership)

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

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

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

RSAOtherPrimeInfo(BigInteger, BigInteger, BigInteger)

Creates a new RSAOtherPrimeInfo given the prime, primeExponent, and crtCoefficient as defined in PKCS#1.

[Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V", "")]
public RSAOtherPrimeInfo (Java.Math.BigInteger? prime, Java.Math.BigInteger? primeExponent, Java.Math.BigInteger? crtCoefficient);
[<Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V", "")>]
new Java.Security.Spec.RSAOtherPrimeInfo : Java.Math.BigInteger * Java.Math.BigInteger * Java.Math.BigInteger -> Java.Security.Spec.RSAOtherPrimeInfo

Parameters

prime
BigInteger

the prime factor of n.

primeExponent
BigInteger

the exponent.

crtCoefficient
BigInteger

the Chinese Remainder Theorem coefficient.

Attributes

Remarks

Creates a new RSAOtherPrimeInfo given the prime, primeExponent, and crtCoefficient as defined in PKCS#1.

Java documentation for java.security.spec.RSAOtherPrimeInfo.RSAOtherPrimeInfo(java.math.BigInteger, java.math.BigInteger, 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