You are creating an ASP.NET application by using the .NET Framework 3.5.
The application stores sensitive profile data in a Microsoft SQL Server 2008 database.
You need to ensure that no profile data is stored in clear text.
What should you do?
A.
Enable the secure sockets layer encryption for the SQL Server connections.
B.
Use the aspnet_regiis tool to encrypt the connection string that is used to connect to the SQL Server 2008 database.
C.
Create a strongly typed custom Profile class. In the Profile class, encrypt the provided information before storing it in the database.
D.
Create a custom profile provider. In the custom provider, ensure that the provided information is encrypted before storing it in the database.