AzureDataProtectionKeyVaultKeyBuilderExtensions.ProtectKeysWithAzureKeyVault Método
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
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, String, IKeyEncryptionKeyResolver) |
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure KeyVault. |
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, String, Func<IServiceProvider,IKeyEncryptionKeyResolver>) |
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure Key Vault. |
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, String, Func<IServiceProvider,TokenCredential>) |
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure Key Vault. |
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, Uri, TokenCredential) |
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure KeyVault. |
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, String, IKeyEncryptionKeyResolver)
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure KeyVault.
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder ProtectKeysWithAzureKeyVault (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, string keyIdentifier, Azure.Core.Cryptography.IKeyEncryptionKeyResolver keyResolver);
static member ProtectKeysWithAzureKeyVault : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * string * Azure.Core.Cryptography.IKeyEncryptionKeyResolver -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function ProtectKeysWithAzureKeyVault (builder As IDataProtectionBuilder, keyIdentifier As String, keyResolver As IKeyEncryptionKeyResolver) As IDataProtectionBuilder
Parámetros
- builder
- IDataProtectionBuilder
Instancia del generador que se va a modificar.
- keyIdentifier
- String
El identificador de clave de Azure Key Vault que se usa para el cifrado de claves.
- keyResolver
- IKeyEncryptionKeyResolver
que IKeyEncryptionKeyResolver se va a usar para Key Vault acceso.
Devoluciones
El valor builder
.
Se aplica a
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, String, Func<IServiceProvider,IKeyEncryptionKeyResolver>)
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure Key Vault.
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder ProtectKeysWithAzureKeyVault (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, string keyIdentifier, Func<IServiceProvider,Azure.Core.Cryptography.IKeyEncryptionKeyResolver> keyResolverFactory);
static member ProtectKeysWithAzureKeyVault : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * string * Func<IServiceProvider, Azure.Core.Cryptography.IKeyEncryptionKeyResolver> -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function ProtectKeysWithAzureKeyVault (builder As IDataProtectionBuilder, keyIdentifier As String, keyResolverFactory As Func(Of IServiceProvider, IKeyEncryptionKeyResolver)) As IDataProtectionBuilder
Parámetros
- builder
- IDataProtectionBuilder
Instancia del generador que se va a modificar.
- keyIdentifier
- String
El identificador de clave de Azure Key Vault que se usa para el cifrado de claves.
- keyResolverFactory
- Func<IServiceProvider,IKeyEncryptionKeyResolver>
Delegado de fábrica que se va a crear IKeyEncryptionKeyResolver para Key Vault acceso.
Devoluciones
El valor builder
.
Se aplica a
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, String, Func<IServiceProvider,TokenCredential>)
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure Key Vault.
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder ProtectKeysWithAzureKeyVault (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, string keyIdentifier, Func<IServiceProvider,Azure.Core.TokenCredential> tokenCredentialFactory);
static member ProtectKeysWithAzureKeyVault : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * string * Func<IServiceProvider, Azure.Core.TokenCredential> -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function ProtectKeysWithAzureKeyVault (builder As IDataProtectionBuilder, keyIdentifier As String, tokenCredentialFactory As Func(Of IServiceProvider, TokenCredential)) As IDataProtectionBuilder
Parámetros
- builder
- IDataProtectionBuilder
Instancia del generador que se va a modificar.
- keyIdentifier
- String
El identificador de clave de Azure Key Vault que se usa para el cifrado de claves.
- tokenCredentialFactory
- Func<IServiceProvider,TokenCredential>
Delegado de fábrica que se va a crear para TokenCredential autenticar Key Vault acceso.
Devoluciones
El valor builder
.
Se aplica a
ProtectKeysWithAzureKeyVault(IDataProtectionBuilder, Uri, TokenCredential)
Configura el sistema de protección de datos para proteger las claves con la clave especificada en Azure KeyVault.
public static Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder ProtectKeysWithAzureKeyVault (this Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder builder, Uri keyIdentifier, Azure.Core.TokenCredential tokenCredential);
static member ProtectKeysWithAzureKeyVault : Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder * Uri * Azure.Core.TokenCredential -> Microsoft.AspNetCore.DataProtection.IDataProtectionBuilder
<Extension()>
Public Function ProtectKeysWithAzureKeyVault (builder As IDataProtectionBuilder, keyIdentifier As Uri, tokenCredential As TokenCredential) As IDataProtectionBuilder
Parámetros
- builder
- IDataProtectionBuilder
Instancia del generador que se va a modificar.
- keyIdentifier
- Uri
El identificador de clave de Azure Key Vault que se usa para el cifrado de claves.
- tokenCredential
- TokenCredential
Credencial de token que se va a usar para la autenticación.
Devoluciones
El valor builder
.
Se aplica a
Azure SDK for .NET