SIGNBYCERT (Transact-SQL)
適用於:SQL Server Azure SQL 資料庫 Azure SQL 受控執行個體
以憑證簽署文字並傳回簽章。
語法
SignByCert ( certificate_ID , @cleartext [ , 'password' ] )
引數
certificate_ID
為目前資料庫中憑證的識別碼。 certificate_ID 為 int。
@cleartext
為 nvarchar、char、varchar 或 nchar 類型的變數,其中包含將簽署的資料。
' password '
這是用來加密憑證私密金鑰的密碼。 password 為 nvarchar(128)。
傳回型別
varbinary,大小上限為 8,000 位元組。
備註
需要憑證的 CONTROL 權限。
範例
下列範例使用憑證 ABerglundCert07
簽署 @SensitiveData
中的文字,且先使用密碼 "pGFD4bb925DGvbd2439587y" 將憑證解密。 然後將純文字和簽章插入資料表 SignedData04
。
DECLARE @SensitiveData NVARCHAR(max);
SET @SensitiveData = N'Saddle Price Points are
2, 3, 5, 7, 11, 13, 17, 19, 23, 29';
INSERT INTO [SignedData04]
VALUES( N'data signed by certificate ''ABerglundCert07''',
@SensitiveData, SignByCert( Cert_Id( 'ABerglundCert07' ),
@SensitiveData, N'pGFD4bb925DGvbd2439587y' ));
GO
另請參閱
VERIFYSIGNEDBYCERT (Transact-SQL)
CERT_ID (Transact-SQL)
CREATE CERTIFICATE (Transact-SQL)
ALTER CERTIFICATE (Transact-SQL)
DROP CERTIFICATE (Transact-SQL)
加密階層