Il est possible d'obtenir le checksum sous windows avec 2 commandes différentes une dans une console normale et une via powershell :
- avec une console cmd :
CertUtil -hashfile </localisation/du/fichier> <algo>
algo (algorithme) : MD2, MD4, MD5, SGA1, SHA256, SHA384, SHA512
- avec powershell :
Get-FileHash </localisation/du/fichier> -Algorithm <algo> | Format-List
algo (algorithme) : MD2, MD4, MD5, SGA1, SHA256, SHA384, SHA512