Question

Talk about the types of encryption for the database ?

Talk about the types of encryption for the database ?

Homework Answers

Answer #1

Database encryption method:-

It’s possible to encrypt data at a number of levels, from the application to the database engine. For an MSP             ( Managed Service Providers) considering how to help a customer choose an encryption method, it’s important to be clear on the purposes and requirements of these different encryption methods:

  • API Method: This is application-level encryption that is appropriate across any database product (Oracle, MSSQL, etc). Queries within the encrypted columns are modified within the application, requiring hands-on work. If a business has an abundance of data, this can be a time-consuming approach. Additionally, encryption that functions at the application level can lead to increased performance issues.
  • Plug-In Method: In this case, you’ll attach an encryption module, or “package,” onto the database management system. This method works independently of the application, requires less code management and modification, and is more flexible—you can apply this to both commercial and open-source databases. With this option, you will typically use column-level encryption.
  • TDE Method: Transparent data encryption (TDE) executes encryption and decryption within the database engine itself. This method doesn’t require code modification of the database or application and is easier for admins to manage. Since it’s a particularly popular method of database encryption, TDE is explored in further detail below.
Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
When we talk about the cultural adjustments, what types of adjustments do you think are required...
When we talk about the cultural adjustments, what types of adjustments do you think are required in the international arena? This is a pressing problem that has cropped up in previous discussions and continues to be highly relevant. How would you deal with issues concerning compensation and self-family difficulties?
Talk about the hardest behavior in your life so far. Talk about changing the behavior. Why...
Talk about the hardest behavior in your life so far. Talk about changing the behavior. Why is this behavior hard to change? How was the behavior taught to you? Do you like the behavior but want to change it? Tell why you like the behavior and why you want to change it?
talk about Carbon Zinc Cell
talk about Carbon Zinc Cell
talk about checking resistors with an ohmmeter
talk about checking resistors with an ohmmeter
List the types of transaction logs that can be used in a database and it's usage.
List the types of transaction logs that can be used in a database and it's usage.
If the useful life of the Data Encryption Standard (DES) was about 20 years (1977–1999), how...
If the useful life of the Data Encryption Standard (DES) was about 20 years (1977–1999), how long do you predict the useful life of the Advanced Encryption System (AES) will be? Justify your answer?
Talk about gender prejiduce in the United States.
Talk about gender prejiduce in the United States.
About encryption, and from a service perspective, discuss what is an important difference between symmetric-key and...
About encryption, and from a service perspective, discuss what is an important difference between symmetric-key and public-key systems.
talk about USING INVOICES VS. SALES RECEIPTS
talk about USING INVOICES VS. SALES RECEIPTS
clc; clear; % OneTimePad Cipher Encryption % Input: plainText % key, for encryption key as long...
clc; clear; % OneTimePad Cipher Encryption % Input: plainText % key, for encryption key as long as plain text % Output: cipherText % plainText=upper('Hello') key=upper('XMCKL'); % process the plain text and key k1=double(key)-65; p1=double(plainText)-65; % Encrypt C1= p1+k1; C1= mod(C1,26)+65; %diaplay the cipher text CipherText=char(C1) Does anyone no how I would go about making this encryption encrypt and decrypt using both uppercase and lower case letters?