Domanda

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?

È stato utile?

Soluzione

        string s = "abc";
        byte[] data = Encoding.Unicode.GetBytes(s);
        SHA1 algorithm = SHA1.Create();
        byte[] hash = algorithm.ComputeHash(data);
        string base64 = Convert.ToBase64String(hash);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top