USE [master]
GO
/*
Indicates whether the
database
is
encrypted
or
not
encrypted.
0 =
No
database
encryption
key
present,
no
encryption
1 = Unencrypted
2 = Encryption
in
progress
3 = Encrypted
4 =
Key
change
in
progress
5 = Decryption
in
progress
6 = Protection change
in
progress (The certificate
or
asymmetric
key
that
is
encrypting the
database
encryption
key
is
being changed.)
*/
SELECT
DB_NAME(database_id), *
FROM
sys.dm_database_encryption_keys
GO
SELECT
*
FROM
sys.certificates
GO
OPEN
MASTER
KEY
DECRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
GO
BACKUP MASTER
KEY
TO
FILE =
'C:\Master.Key.bak'
ENCRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
GO
BACKUP CERTIFICATE Z10ConsultingTDECertificate
TO
FILE =
'C:\Z10ConsultingTDECertificate.cer.bak'
WITH
PRIVATE
KEY
(
ENCRYPTION
BY
PASSWORD
=
'ThisisNearlyAThrowAwayKeyThatIsonlyNeededToBeUsedIfYoureRestoringFromABackupSoYeaKeepItSafe'
,
FILE =
'C:\Z10ConsultingTDECertificate.key.bak'
)
GO
ALTER
DATABASE
Z010DB
SET
ENCRYPTION
OFF
;
GO
WHILE ((
SELECT
encryption_state
FROM
sys.dm_database_encryption_keys
WHERE
DB_NAME(database_id) =
'Z010DB'
) <> 1)
BEGIN
PRINT(
'Waiting for the encryption state to change'
)
END
GO
USE Z010DB
GO
DROP
DATABASE
ENCRYPTION
KEY
;
GO
USE [master]
GO
DROP
CERTIFICATE Z10ConsultingTDECertificate
GO
DROP
MASTER
KEY
GO
RESTORE MASTER
KEY
FROM
FILE =
'C:\Master.Key'
DECRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
ENCRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
CREATE
MASTER
KEY
ENCRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
GO
OPEN
MASTER
KEY
DECRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
GO
CREATE
CERTIFICATE Z10ConsultingTDECertificate
FROM
FILE =
'C:\Z10ConsultingTDECertificate.cer'
WITH
PRIVATE
KEY
(
FILE =
'C:\Z10ConsultingTDECertificate.key'
,
DECRYPTION
BY
PASSWORD
=
'ThisisNearlyAThrowAwayKeyThatIsonlyNeededToBeUsedIfYoureRestoringFromABackupSoYeaKeepItSafe'
)
GO
USE Z010DB
GO
CREATE
DATABASE
ENCRYPTION
KEY
WITH
ALGORITHM = AES_256
ENCRYPTION
BY
SERVER CERTIFICATE Z10ConsultingTDECertificate
GO
ALTER
DATABASE
Z010DB
SET
ENCRYPTION
ON
;
GO
IF((
SELECT
encryption_state
FROM
sys.dm_database_encryption_keys
WHERE
DB_NAME(database_id) =
'Z010DB'
) = 3)
BEGIN
PRINT(
'Encryption has been successfully deployed'
)
END
OPEN
MASTER
KEY
DECRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
GO
BACKUP MASTER
KEY
TO
FILE =
'C:\Master.Key'
ENCRYPTION
BY
PASSWORD
=
'YourPassWordStringThatShouldNotEvenReallyBeWordsMoreLikeARandomSequenceOfVariousCharacters'
GO
BACKUP CERTIFICATE Z10ConsultingTDECertificate
TO
FILE =
'C:\Z10ConsultingTDECertificate.cer'
WITH
PRIVATE
KEY
(
ENCRYPTION
BY
PASSWORD
=
'ThisisNearlyAThrowAwayKeyThatIsonlyNeededToBeUsedIfYoureRestoringFromABackupSoYeaKeepItSafe'
,
FILE =
'C:\Z10ConsultingTDECertificate.key'
)
GO
BACKUP
DATABASE
Z010DB
TO
DISK =
'C:\Z010DB_ExportableBackup_20150607.Bak'
WITH
COMPRESSION,
NOFORMAT,
STATS = 10
GO