HMAC function, stubs and interfaces for compute hash

Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
This commit is contained in:
Vincent Sylvester
2025-04-17 21:19:07 +02:00
committed by UbitUmarov
parent 70eafec6fa
commit 28266fc7b6
3 changed files with 61 additions and 2 deletions

View File

@@ -2870,5 +2870,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_LSL_Functions.llHMAC(private_key, message, algo);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_String llComputeHash(LSL_String message, LSL_String algo)
{
return m_LSL_Functions.llComputeHash(message, algo);
}
}
}