SignByAsymKey (Transact-SQL)
使用非对称密钥签署纯文本
语法
SignByAsymKey( Asym_Key_ID , @plaintext [ , 'password' ] )
参数
Asym_Key_ID
当前数据库中非对称密钥的 ID。Asym_Key_ID 的数据类型为int。@plaintext
类型为 nvarchar、char、varchar 或 nchar 的变量,其中包含将使用非对称密钥进行签名的数据。password
用于保护私钥的密码。password 的数据类型为 nvarchar(128)。
返回类型
最大大小为 8,000 个字节的 varbinary。
注释
需要对非对称密钥具有 CONTROL 权限。
示例
以下示例创建表 SignedData04,该表用于存储纯文本和它的签名。然后,它在表中插入以非对称密钥 PrimeKey 签署的记录,该密钥首先以密码 'pGFD4bb925DGvbd2439587y' 进行解密。
-- Create a table in which to store the data
CREATE TABLE [SignedData04]( Description nvarchar(max), Data nvarchar(max), DataSignature varbinary(8000) );
GO
-- Store data together with its signature
DECLARE @clear_text_data nvarchar(max);
set @clear_text_data = N'Important numbers 2, 3, 5, 7, 11, 13, 17,
19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79,
83, 89, 97';
INSERT INTO [SignedData04]
VALUES( N'data encrypted by asymmetric key ''PrimeKey''',
@clear_text_data, SignByAsymKey( AsymKey_Id( 'PrimeKey' ),
@clear_text_data, N'pGFD4bb925DGvbd2439587y' ));
GO