Ein paar Dinge:
- 1.:Bitte verwenden Sie Semikolons (es ist eine gute Praxis und wird in Zukunft notwendig sein)
- 2.:Lesen Sie Verschlüsselungsschlüssel für SQL Server und Datenbanken und stellen Sie sicher, dass Sie Backups Ihres SMK, DMK, ... haben
- 3.:Identische symmetrische Schlüssel auf zwei Servern erstellen
Sie könnten KEY_SOURCE
hinzufügen und 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;