Tagged: Encryption SQL Server

Encryption Operations in SQL Server

Hello everyone, In this article, I will try to give information about encryption operations in SQL Server. In SQL Server, in some cases, you may want to encrypt the data you have. You can easily do this using the code below. DECLARE @TestData NVARCHAR(MAX) = N’Yavuz Selim Kart’; SELECT HASHBYTES(‘MD2’,...

Don`t copy text!