Comment puis-je convertir le résultat haché, qui est un tableau d'octets, en chaîne?
byte[] bytePassword = Encoding.UTF8.GetBytes(password);
using (MD5 md5 = MD5.Create())
{
byte[] byteHashedPassword = md5.ComputeHash(bytePassword);
}
J'ai besoin de convertir byteHashedPassword
en chaîne.