RSAKeyGenParameterSpec 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 |
|---|---|
| RSAKeyGenParameterSpec(Int32, BigInteger) |
Construye un nuevo |
| RSAKeyGenParameterSpec(IntPtr, JniHandleOwnership) |
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución. |
| RSAKeyGenParameterSpec(Int32, BigInteger, IAlgorithmParameterSpec) |
Construye un nuevo |
RSAKeyGenParameterSpec(Int32, BigInteger)
Construye un nuevo RSAKeyGenParameterSpec objeto a partir de los parámetros keyize, public-exponent value y null key especificados.
[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
Parámetros
- keysize
- Int32
el tamaño del módulo (especificado en el número de bits)
- publicExponent
- BigInteger
el exponente público
- Atributos
Comentarios
Construye un nuevo RSAKeyGenParameterSpec objeto a partir de los parámetros keyize, public-exponent value y null key especificados.
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
RSAKeyGenParameterSpec(IntPtr, JniHandleOwnership)
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.
protected RSAKeyGenParameterSpec(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Spec.RSAKeyGenParameterSpec : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Spec.RSAKeyGenParameterSpec
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
RSAKeyGenParameterSpec(Int32, BigInteger, IAlgorithmParameterSpec)
Construye un nuevo RSAKeyGenParameterSpec objeto a partir de los parámetros keyize, public-exponent value y key.
[Android.Runtime.Register(".ctor", "(ILjava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)]
public RSAKeyGenParameterSpec(int keysize, Java.Math.BigInteger? publicExponent, Java.Security.Spec.IAlgorithmParameterSpec? keyParams);
[<Android.Runtime.Register(".ctor", "(ILjava/math/BigInteger;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=35)>]
new Java.Security.Spec.RSAKeyGenParameterSpec : int * Java.Math.BigInteger * Java.Security.Spec.IAlgorithmParameterSpec -> Java.Security.Spec.RSAKeyGenParameterSpec
Parámetros
- keysize
- Int32
el tamaño del módulo (especificado en el número de bits)
- publicExponent
- BigInteger
el exponente público
- keyParams
- IAlgorithmParameterSpec
los parámetros de clave, pueden ser NULL.
- Atributos
Comentarios
Construye un nuevo RSAKeyGenParameterSpec objeto a partir de los parámetros keyize, public-exponent value y key.
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.