Lenguaje

KeyStore.SecretKeyEntry Constructores

Definición

Sobrecargas

Nombre Description
KeyStore.SecretKeyEntry(ISecretKey)

Construye un SecretKeyEntry objeto con un SecretKeyobjeto .

KeyStore.SecretKeyEntry(ISecretKey, ICollection<KeyStore.IEntryAttribute>)

Construye un SecretKeyEntry objeto con los SecretKey atributos de entrada y asociados.

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 .

Java documentación para java.security.KeyStore.SecretKeyEntry.KeyStore$SecretKeyEntry(javax.crypto.SecretKey).

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.

Java documentación para java.security.KeyStore.SecretKeyEntry.KeyStore$SecretKeyEntry(javax.crypto.SecretKey, java.util.Set<java.security.KeyStore.Entry.Attribute>).

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