Greetings,
Does anyone know of any implementation of AES encryption compatible between C # and SQL? I want to encrypt in C # and decrypt in SQL.
Greetings,
Does anyone know of any implementation of AES encryption compatible between C # and SQL? I want to encrypt in C # and decrypt in SQL.
You can deploy the encryption library in .NET and install it directly on your MS SQL Server service.
Once the assembly has been properly installed on the server, its classes can be configured and accessed as in the example below:
CREATE PROCEDURE teste
AS
EXTERNAL NAME Biblioteca.Classe.MetodoTeste
Source: 'Deploying CLR Database Objects' , MSDN.