KeyStore.SecretKeyEntry 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 |
|---|---|
| KeyStore.SecretKeyEntry(ISecretKey) |
Construye un |
| KeyStore.SecretKeyEntry(ISecretKey, ICollection<KeyStore.IEntryAttribute>) |
Construye un |
KeyStore.SecretKeyEntry(ISecretKey)
Construye un SecretKeyEntry objeto con un SecretKeyobjeto .
[Android.Runtime.Register(".ctor", "(Ljavax/crypto/SecretKey;)V", "")]
public SecretKeyEntry(Javax.Crypto.ISecretKey? secretKey);
[<Android.Runtime.Register(".ctor", "(Ljavax/crypto/SecretKey;)V", "")>]
new Java.Security.KeyStore.SecretKeyEntry : Javax.Crypto.ISecretKey -> Java.Security.KeyStore.SecretKeyEntry
Parámetros
- secretKey
- ISecretKey
el SecretKey
- Atributos
Excepciones
si secretKey es null.
Comentarios
Construye un SecretKeyEntry objeto con un SecretKeyobjeto .
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
KeyStore.SecretKeyEntry(ISecretKey, ICollection<KeyStore.IEntryAttribute>)
Construye un SecretKeyEntry objeto con los SecretKey atributos de entrada y asociados.
[Android.Runtime.Register(".ctor", "(Ljavax/crypto/SecretKey;Ljava/util/Set;)V", "", ApiSince=26)]
public SecretKeyEntry(Javax.Crypto.ISecretKey? secretKey, System.Collections.Generic.ICollection<Java.Security.KeyStore.IEntryAttribute>? attributes);
[<Android.Runtime.Register(".ctor", "(Ljavax/crypto/SecretKey;Ljava/util/Set;)V", "", ApiSince=26)>]
new Java.Security.KeyStore.SecretKeyEntry : Javax.Crypto.ISecretKey * System.Collections.Generic.ICollection<Java.Security.KeyStore.IEntryAttribute> -> Java.Security.KeyStore.SecretKeyEntry
Parámetros
- secretKey
- ISecretKey
el SecretKey
- attributes
- ICollection<KeyStore.IEntryAttribute>
los atributos
- Atributos
Comentarios
Construye un SecretKeyEntry objeto con los SecretKey atributos de entrada y asociados.
El objeto especificado attributes se clona antes de almacenarlo en el nuevo SecretKeyEntry objeto.
Agregado en la versión 1.8.
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.