sql >> Base de Datos >  >> RDS >> Sqlserver

Hashing de más de 8000 bytes en SQL Server

Podría escribir una función SQL CLR:

[Microsoft.SqlServer.Server.SqlFunction]
public static SqlBinary BigHashBytes(SqlString algorithm, SqlString data)
{
    var algo = HashAlgorithm.Create(algorithm.Value);

    var bytes = Encoding.UTF8.GetBytes(data.Value);

    return new SqlBinary(algo.ComputeHash(bytes));
}

Y luego se puede llamar en SQL así:

--these return the same value
select HASHBYTES('md5', 'test stuff')
select dbo.BigHashBytes('md5', 'test stuff')

Los BigHashBytes solo es necesario si la longitud es superior a 8k.