Ok i want to generate a sha1 hash from plaintext textbox then convert the hash to base64 to store in a mysql database how do i do it?

有帮助吗?

解决方案

        string s = "abc";
        byte[] data = Encoding.Unicode.GetBytes(s);
        SHA1 algorithm = SHA1.Create();
        byte[] hash = algorithm.ComputeHash(data);
        string base64 = Convert.ToBase64String(hash);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top