Microsoft.Data.SqlClient.SqlClientEncryptionAlgorithm
Abstract base class for all TCE encryption algorithms. It exposes two functions
[. Encrypt - This function is used by SqlClient under the covers to transparently encrypt TCE enabled column data.
\. Decrypt - This function is used by SqlClient under the covers to transparently decrypt TCE enabled column data.
namespace Microsoft.Data.SqlClient
{
internal abstract class SqlClientEncryptionAlgorithm
{
protected SqlClientEncryptionAlgorithm();
}
}