sys.dm_cryptographic_provider_algorithms (Transact-SQL)sys.dm_cryptographic_provider_algorithms (Transact-SQL)
SQL Server
Azure SQL Database
Azure Synapse Analytics (SQL DW)
Parallel Data Warehouse
SQL Server
Azure SQL Database
Azure Synapse Analytics (SQL DW)
Parallel Data Warehouse
Retourne les algorithmes pris en charge par un fournisseur de gestion de clés Extensible (EKM).Returns the algorithms supported by an Extensible Key Management (EKM) provider.
Conventions de la syntaxe Transact-SQL
Transact-SQL Syntax Conventions
SyntaxeSyntax
sys.dm_cryptographic_provider_algorithms ( provider_id )
ArgumentsArguments
provider_idprovider_id
Numéro d'identification du fournisseur EKM, sans valeur par défaut.Identification number of the EKM provider, with no default.
Tables retournéesTables Returned
Nom de la colonneColumn name | Type de donnéesData type | DescriptionDescription |
---|---|---|
algorithm_idalgorithm_id | Intint | Numéro d'identification de l'algorithme.Is the identification number of the algorithm. |
algorithm_tagalgorithm_tag | nvarchar(60)nvarchar(60) | Balise d'identification de l'algorithme.Is the identification tag of the algorithm. |
key_typekey_type | nvarchar(128)nvarchar(128) | Indique le type de clé.Shows the key type. Retourne ASYMMETRIC KEY ou SYMMETRIC KEY.Returns either ASYMMETRIC KEY or SYMMETRIC KEY. |
key_lengthkey_length | intint | Indique la longueur de la clé en bits.Indicates the key length in bits. |
AutorisationsPermissions
L'utilisateur doit être membre du rôle de base de données public.The user must be a member of the public database role.
ExemplesExamples
L'exemple suivant affiche les options d'un fournisseur portant le numéro d'identification 1234567
.The following example shows the provider options for a provider with the identification number of 1234567
.
SELECT * FROM sys.dm_cryptographic_provider_algorithms(1234567);
GO
Voir aussiSee Also
Gestion de clés extensible (EKM) Extensible Key Management (EKM)
Fonctions et vues de gestion dynamique relatives à la sécurité (Transact-SQL)Security-Related Dynamic Management Views and Functions (Transact-SQL)
Commentaires
Chargement du commentaire...