Poche cose:
- 1°:utilizzare il punto e virgola (è buona norma e in futuro sarà necessario)
- 2°:leggi Chiavi di crittografia di SQL Server e database e assicurati di avere backup del tuo SMK, DMK, ...
- 3°:Crea chiavi simmetriche identiche su due server
Puoi aggiungere KEY_SOURCE
e IDENTITY_VALUE
:
CREATE MASTER KEY ENCRYPTION BY
PASSWORD = 'Bazalt92!';
CREATE CERTIFICATE xxx
WITH SUBJECT = 'xxx';
CREATE SYMMETRIC KEY xxx
WITH ALGORITHM = aes_256,
KEY_SOURCE = 'My key generation bits. This is a shared secret!',
IDENTITY_VALUE = 'Key Identity generation bits. Also a shared secret'
ENCRYPTION BY CERTIFICATE xxx;