Azure ARM uniqueString function mimic
问题 I need to deploy Sql Databases into an Azure Sql Server using to ways: the ARM template way, and a more custom way using C# code. There's a ARM template function called uniqueString(string) that generate a pseudo random hash of a given string. It's a deterministic pure function. I need to find a way to exactly mimic the behaviour of this function from my C# code. ie I need to reproduce this function into my C# code. Where can i find the algorithm used by the ARM Api ? MSDN reference for