RSAPrivateKeySpec Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
| Nombre | Description |
|---|---|
| RSAPrivateKeySpec(BigInteger, BigInteger) |
Crea una nueva RSAPrivateKeySpec. |
| RSAPrivateKeySpec(IntPtr, JniHandleOwnership) |
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución. |
| RSAPrivateKeySpec(BigInteger, BigInteger, IAlgorithmParameterSpec) |
Crea una nueva RSAPrivateKeySpec con parámetros de clave adicionales. |
RSAPrivateKeySpec(BigInteger, BigInteger)
Crea una nueva RSAPrivateKeySpec.
[Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;)V", "")]
public RSAPrivateKeySpec(Java.Math.BigInteger? modulus, Java.Math.BigInteger? privateExponent);
[<Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;)V", "")>]
new Java.Security.Spec.RSAPrivateKeySpec : Java.Math.BigInteger * Java.Math.BigInteger -> Java.Security.Spec.RSAPrivateKeySpec
Parámetros
- modulus
- BigInteger
módulo
- privateExponent
- BigInteger
exponente privado
- Atributos
Comentarios
Crea una nueva RSAPrivateKeySpec.
Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.
Se aplica a
RSAPrivateKeySpec(IntPtr, JniHandleOwnership)
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.
protected RSAPrivateKeySpec(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Spec.RSAPrivateKeySpec : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Spec.RSAPrivateKeySpec
Parámetros
- javaReference
-
IntPtr
nativeint
que IntPtrcontiene una referencia de objeto Java Native Interface (JNI).
- transfer
- JniHandleOwnership
un JniHandleOwnershipvalor de tipo que indica cómo controlar javaReference
Comentarios
Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.
Se aplica a
RSAPrivateKeySpec(BigInteger, BigInteger, IAlgorithmParameterSpec)
Crea una nueva RSAPrivateKeySpec con parámetros de clave adicionales.
[Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)]
public RSAPrivateKeySpec(Java.Math.BigInteger? modulus, Java.Math.BigInteger? privateExponent, Java.Security.Spec.IAlgorithmParameterSpec? params);
[<Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)>]
new Java.Security.Spec.RSAPrivateKeySpec : Java.Math.BigInteger * Java.Math.BigInteger * Java.Security.Spec.IAlgorithmParameterSpec -> Java.Security.Spec.RSAPrivateKeySpec
Parámetros
- modulus
- BigInteger
módulo
- privateExponent
- BigInteger
exponente privado
- params
- IAlgorithmParameterSpec
los parámetros asociados a esta clave pueden ser NULL.
- Atributos
Comentarios
Crea una nueva RSAPrivateKeySpec con parámetros de clave adicionales.
Agregado en 11.
Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.