web-dev-qa-db-fra.com

Comment puis-je SHA512 une chaîne en C #?

J'essaie d'écrire une fonction pour prendre une chaîne et la sha512 comme ça?

public string SHA512(string input)
{
     string hash;

     ~magic~

     return hash;
}

Quelle devrait être la magie?

28
James

Votre code est correct, mais vous devez disposer de l'instance SHA512Managed:

using (SHA512 shaM = new SHA512Managed())
{
   hash = shaM.ComputeHash(data);
}

512 bits sont 64 octets.

Pour convertir une chaîne en un tableau d'octets, vous devez spécifier un codage. UTF8 est acceptable si vous souhaitez créer un code de hachage:

var data = Encoding.UTF8.GetBytes("text");    
using (...
53
Carsten Schütte

C'est l'un de mes projets:

public static string SHA512(string input)
{
    var bytes = System.Text.Encoding.UTF8.GetBytes(input);
    using (var hash = System.Security.Cryptography.SHA512.Create())
    {
        var hashedInputBytes = hash.ComputeHash(bytes);

        // Convert to text
        // StringBuilder Capacity is 128, because 512 bits / 8 bits in byte * 2 symbols for byte 
        var hashedInputStringBuilder = new System.Text.StringBuilder(128);
        foreach (var b in hashedInputBytes)
            hashedInputStringBuilder.Append(b.ToString("X2"));
        return hashedInputStringBuilder.ToString();
    }
}

Notez s'il vous plaît:

  1. L'objet SHA512 est supprimé (section 'using'), nous n'avons donc aucune fuite de ressource.
  2. StringBuilder est utilisé pour la création efficace de chaînes hexadécimales.
13
Nazar

512/8 = 64, 64 est donc la bonne taille. Peut-être voulez-vous le convertir en hexadécimal après l’algorithme SHA512.

Voir aussi: Comment convertir un tableau d'octets en chaîne hexadécimale, et vice versa?

8
luiscubal

Je ne sais pas pourquoi vous vous attendez à 128. 

8 bits dans un octet. 64 octets. 8 * 64 = hachage 512 bits.

1
Andrew T Finnell

Depuis la Documentation MSDN :
La taille de hachage de l'algorithme SHA512Managed est de 512 bits.

1
Joel Rondeau

Vous pouvez utiliser la classe System.Security.Cryptography.SHA512

MSDN sur SHA512

Voici un exemple, extrait du MSDN

byte[] data = new byte[DATA_SIZE];
byte[] result;
SHA512 shaM = new SHA512Managed();
result = shaM.ComputeHash(data);
1
Mare Infinitus

Au lieu de WinCrypt-API utilisant System.Security.Cryptography, vous pouvez également utiliser BouncyCastle: 

public static byte[] SHA512(string text)
{
    byte[] bytes = System.Text.Encoding.UTF8.GetBytes(text);

    Org.BouncyCastle.Crypto.Digests.Sha512Digest digester = new Org.BouncyCastle.Crypto.Digests.Sha512Digest();
    byte[] retValue = new byte[digester.GetDigestSize()];
    digester.BlockUpdate(bytes, 0, bytes.Length);
    digester.DoFinal(retValue, 0);
    return retValue;
}

Si vous avez besoin de la version HMAC (pour ajouter une authentification au hachage)

public static byte[] HmacSha512(string text, string key)
{
    byte[] bytes = Encoding.UTF8.GetBytes(text);

    var hmac = new Org.BouncyCastle.Crypto.Macs.HMac(new Org.BouncyCastle.Crypto.Digests.Sha512Digest());
    hmac.Init(new Org.BouncyCastle.Crypto.Parameters.KeyParameter(System.Text.Encoding.UTF8.GetBytes(key)));

    byte[] result = new byte[hmac.GetMacSize()];
    hmac.BlockUpdate(bytes, 0, bytes.Length);
    hmac.DoFinal(result, 0);

    return result;
}
1
Stefan Steiger

Vous pourriez essayer ces lignes:

public static string GenSHA512(string s, bool l = false)
{
    string r = "";
    try
    {
        byte[] d = Encoding.UTF8.GetBytes(s);
        using (SHA512 a = new SHA512Managed())
        {
            byte[] h = a.ComputeHash(d);
            r = BitConverter.ToString(h).Replace("-", "");
        }
        if (l)
            r = r.ToLower();
    }
    catch
    {

    }
    return r;
}
  1. Il est disposé à la fin
  2. C'est sur
  3. Prend en charge les minuscules
0
V.7
UnicodeEncoding UE = new UnicodeEncoding();            
        byte[] message = UE.GetBytes(password);
        SHA512Managed hashString = new SHA512Managed();
        string hexNumber = "";
        byte[]  hashValue = hashString.ComputeHash(message);
        foreach (byte x in hashValue)
        {
            hexNumber += String.Format("{0:x2}", x);
        }
        string hashData = hexNumber;
0
Mahesh.P