RSAPublicKeySpec 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 |
|---|---|
| RSAPublicKeySpec(BigInteger, BigInteger) |
Crea una nueva RSAPublicKeySpec. |
| RSAPublicKeySpec(IntPtr, JniHandleOwnership) |
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución. |
| RSAPublicKeySpec(BigInteger, BigInteger, IAlgorithmParameterSpec) |
Crea una nueva RSAPublicKeySpec con parámetros de clave adicionales. |
RSAPublicKeySpec(BigInteger, BigInteger)
Crea una nueva RSAPublicKeySpec.
[Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;)V", "")]
public RSAPublicKeySpec(Java.Math.BigInteger? modulus, Java.Math.BigInteger? publicExponent);
[<Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;)V", "")>]
new Java.Security.Spec.RSAPublicKeySpec : Java.Math.BigInteger * Java.Math.BigInteger -> Java.Security.Spec.RSAPublicKeySpec
Parámetros
- modulus
- BigInteger
módulo
- publicExponent
- BigInteger
el exponente público
- Atributos
Comentarios
Crea una nueva RSAPublicKeySpec.
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
RSAPublicKeySpec(IntPtr, JniHandleOwnership)
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.
protected RSAPublicKeySpec(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Spec.RSAPublicKeySpec : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Spec.RSAPublicKeySpec
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
RSAPublicKeySpec(BigInteger, BigInteger, IAlgorithmParameterSpec)
Crea una nueva RSAPublicKeySpec con parámetros de clave adicionales.
[Android.Runtime.Register(".ctor", "(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)]
public RSAPublicKeySpec(Java.Math.BigInteger? modulus, Java.Math.BigInteger? publicExponent, 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.RSAPublicKeySpec : Java.Math.BigInteger * Java.Math.BigInteger * Java.Security.Spec.IAlgorithmParameterSpec -> Java.Security.Spec.RSAPublicKeySpec
Parámetros
- modulus
- BigInteger
módulo
- publicExponent
- BigInteger
el exponente público
- params
- IAlgorithmParameterSpec
los parámetros asociados a esta clave pueden ser NULL.
- Atributos
Comentarios
Crea una nueva RSAPublicKeySpec 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.