RSAOtherPrimeInfo Constructors  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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(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
- 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.
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.