Posts by Maico • 161 points
1 post
-
1
votes1
answer474
viewsA: Code to generate user password hash in Oracle 10G with C#?
Follow the PHP code converted to C#. public static string HashOracle(string usuario, string senha) { senha = (usuario + senha).ToUpper(); senha = senha + "".PadLeft(3 - ((senha.Length - 1) & 3),…