Find out what encryptor name my database is usingWhy use asymmetric keys in SQL Server?How to restore symmetric key on the new database?How does Transparent Data Encryption actually work?Restore db with encrypted column in SQL Server, without overwriting existing Service Master Keyhow to decrypt one encrypted column with lost passwordBACKUP MASTER KEY failing with cannot find symmetric master key because it does not existSymmetric Key Creation QuestionHow to protect a symmetric key?Recreate symmetric key of unknown CREATE SYMMETRIC KEYWhat are implications for changing encryption from TRIPLE_DES to AES_128?
How do I talk to my wife about unrealistic expectations?
Array or vector? Two dimensional array or matrix?
Computer name naming convention for security
Find out what encryptor name my database is using
Gaining Proficiency in Vehicles (water)
With a data transfer of 50 GB estimated 5 hours, are USB-C claimed speeds inaccurate or to blame?
Why won't the U.S. sign a peace treaty with North Korea?
Chilling water in copper vessel
Other Space Shuttle O-ring failures
Tesco's Burger Relish Best Before End date number
Moving millions of files to a different directory with specfic name patterns
Need a non-volatile memory IC with near unlimited read/write operations capability
Is it ok for parents to kiss and romance with each other while their 2- to 8-year-old child watches?
Deck of Cards with Shuffle and Sort functionality
Writing an ace/aro character?
Wires do not connect in Circuitikz
Delete elements less than the last largest element
What kind of Chinook helicopter/airplane hybrid is this?
What is the meaning of "prairie-dog" in this sentence?
Why is a mixture of two normally distributed variables only bimodal if their means differ by at least two times the common standard deviation?
This LM317 diagram doesn't make any sense to me
How do I explain that I don't want to maintain old projects?
stuck in/at beta
Publishing papers seem natural to many, while I find it really hard to think novel stuff to pursue till publication. How to cope up with this?
Find out what encryptor name my database is using
Why use asymmetric keys in SQL Server?How to restore symmetric key on the new database?How does Transparent Data Encryption actually work?Restore db with encrypted column in SQL Server, without overwriting existing Service Master Keyhow to decrypt one encrypted column with lost passwordBACKUP MASTER KEY failing with cannot find symmetric master key because it does not existSymmetric Key Creation QuestionHow to protect a symmetric key?Recreate symmetric key of unknown CREATE SYMMETRIC KEYWhat are implications for changing encryption from TRIPLE_DES to AES_128?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to find what encryptor name my database is using to encrypted. This is database encryption thing.
This is the syntax I see up site of Micosoft.
CREATE DATABASE ENCRYPTION KEY
WITH ALGORITHM = AES_192
ENCRYPTION BY SERVER
CERTIFICATE Encryptor_Name
[ ; ]
Now I don't know if a symmetric key or a certificate is used to encrypt database.
The encryptor_name for one encrypted with certificate is I find in sys.certificates
of master database. It is name
of the row display in sys.certificates
What about the ASSYMETRIC KEY. Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use. (my English is not good. Please suffer me).
sql-server
New contributor
add a comment |
I want to find what encryptor name my database is using to encrypted. This is database encryption thing.
This is the syntax I see up site of Micosoft.
CREATE DATABASE ENCRYPTION KEY
WITH ALGORITHM = AES_192
ENCRYPTION BY SERVER
CERTIFICATE Encryptor_Name
[ ; ]
Now I don't know if a symmetric key or a certificate is used to encrypt database.
The encryptor_name for one encrypted with certificate is I find in sys.certificates
of master database. It is name
of the row display in sys.certificates
What about the ASSYMETRIC KEY. Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use. (my English is not good. Please suffer me).
sql-server
New contributor
add a comment |
I want to find what encryptor name my database is using to encrypted. This is database encryption thing.
This is the syntax I see up site of Micosoft.
CREATE DATABASE ENCRYPTION KEY
WITH ALGORITHM = AES_192
ENCRYPTION BY SERVER
CERTIFICATE Encryptor_Name
[ ; ]
Now I don't know if a symmetric key or a certificate is used to encrypt database.
The encryptor_name for one encrypted with certificate is I find in sys.certificates
of master database. It is name
of the row display in sys.certificates
What about the ASSYMETRIC KEY. Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use. (my English is not good. Please suffer me).
sql-server
New contributor
I want to find what encryptor name my database is using to encrypted. This is database encryption thing.
This is the syntax I see up site of Micosoft.
CREATE DATABASE ENCRYPTION KEY
WITH ALGORITHM = AES_192
ENCRYPTION BY SERVER
CERTIFICATE Encryptor_Name
[ ; ]
Now I don't know if a symmetric key or a certificate is used to encrypt database.
The encryptor_name for one encrypted with certificate is I find in sys.certificates
of master database. It is name
of the row display in sys.certificates
What about the ASSYMETRIC KEY. Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use. (my English is not good. Please suffer me).
sql-server
sql-server
New contributor
New contributor
New contributor
asked 11 hours ago
Da WeiDa Wei
82 bronze badges
82 bronze badges
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Now I don't know if a symmetric key or a certificate is used to encrypt database. The encryptor_name for one encrypted with certificate is I find in sys.certificates of master database. It is name of the row display in sys.certificates
If you look in sys.database_encryption_keys it'll tell you what database is encrypted using TDE (filter out TempDB [dbid 2]) along with the type of encryptor (cert/asymmetric key), and the thumbprint of that encryptor which can be used to find the encryptor in either the certificates or asymmetric keys catalog.
What about the ASSYMETRIC KEY.Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use.
To use an asymmetric key as an encryptor you'll need a hardware security module (HSM) or a software emulation of an HSM such as Azure Key Vault (AKV) which has a complete walk through. Other than the specific Azure part of AKV, the same steps would be taken for an on-prem HSM.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "182"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Da Wei is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f242257%2ffind-out-what-encryptor-name-my-database-is-using%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Now I don't know if a symmetric key or a certificate is used to encrypt database. The encryptor_name for one encrypted with certificate is I find in sys.certificates of master database. It is name of the row display in sys.certificates
If you look in sys.database_encryption_keys it'll tell you what database is encrypted using TDE (filter out TempDB [dbid 2]) along with the type of encryptor (cert/asymmetric key), and the thumbprint of that encryptor which can be used to find the encryptor in either the certificates or asymmetric keys catalog.
What about the ASSYMETRIC KEY.Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use.
To use an asymmetric key as an encryptor you'll need a hardware security module (HSM) or a software emulation of an HSM such as Azure Key Vault (AKV) which has a complete walk through. Other than the specific Azure part of AKV, the same steps would be taken for an on-prem HSM.
add a comment |
Now I don't know if a symmetric key or a certificate is used to encrypt database. The encryptor_name for one encrypted with certificate is I find in sys.certificates of master database. It is name of the row display in sys.certificates
If you look in sys.database_encryption_keys it'll tell you what database is encrypted using TDE (filter out TempDB [dbid 2]) along with the type of encryptor (cert/asymmetric key), and the thumbprint of that encryptor which can be used to find the encryptor in either the certificates or asymmetric keys catalog.
What about the ASSYMETRIC KEY.Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use.
To use an asymmetric key as an encryptor you'll need a hardware security module (HSM) or a software emulation of an HSM such as Azure Key Vault (AKV) which has a complete walk through. Other than the specific Azure part of AKV, the same steps would be taken for an on-prem HSM.
add a comment |
Now I don't know if a symmetric key or a certificate is used to encrypt database. The encryptor_name for one encrypted with certificate is I find in sys.certificates of master database. It is name of the row display in sys.certificates
If you look in sys.database_encryption_keys it'll tell you what database is encrypted using TDE (filter out TempDB [dbid 2]) along with the type of encryptor (cert/asymmetric key), and the thumbprint of that encryptor which can be used to find the encryptor in either the certificates or asymmetric keys catalog.
What about the ASSYMETRIC KEY.Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use.
To use an asymmetric key as an encryptor you'll need a hardware security module (HSM) or a software emulation of an HSM such as Azure Key Vault (AKV) which has a complete walk through. Other than the specific Azure part of AKV, the same steps would be taken for an on-prem HSM.
Now I don't know if a symmetric key or a certificate is used to encrypt database. The encryptor_name for one encrypted with certificate is I find in sys.certificates of master database. It is name of the row display in sys.certificates
If you look in sys.database_encryption_keys it'll tell you what database is encrypted using TDE (filter out TempDB [dbid 2]) along with the type of encryptor (cert/asymmetric key), and the thumbprint of that encryptor which can be used to find the encryptor in either the certificates or asymmetric keys catalog.
What about the ASSYMETRIC KEY.Can you give give me examples to encrypt database with it, then the script to display information of the encryptor_name that it use.
To use an asymmetric key as an encryptor you'll need a hardware security module (HSM) or a software emulation of an HSM such as Azure Key Vault (AKV) which has a complete walk through. Other than the specific Azure part of AKV, the same steps would be taken for an on-prem HSM.
answered 4 hours ago
Sean GallardySean Gallardy
18.2k2 gold badges28 silver badges56 bronze badges
18.2k2 gold badges28 silver badges56 bronze badges
add a comment |
add a comment |
Da Wei is a new contributor. Be nice, and check out our Code of Conduct.
Da Wei is a new contributor. Be nice, and check out our Code of Conduct.
Da Wei is a new contributor. Be nice, and check out our Code of Conduct.
Da Wei is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f242257%2ffind-out-what-encryptor-name-my-database-is-using%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown