Calculer une somme de contrôle facilement sous Windows avec OpenHashTab

https://github.com/namazso/OpenHashTab/releases

À propos

OpenHashTab est une extension qui permet de calculer et vérifier les sommes de contrôle de vos fichiers.

Caractéristiques

  • 28 algorithmes supportés
  • Calculs à haute performance
  • Intégration parfaite au menu contextuel de Windows avec une entrée nommée « Sommes »
  • Support des chemins longs
  • Multilingue
  • Vérification des hashes avec VirusTotal par un bouton
  • Comparaison possible avec un fichier de hash (supportés : hex hash next to file, sortie *sum (hex or base64), corz .hash, SFV)
  • Export du hash vers un fichier ou le presse-papier (supportés : *sum, corz .hash, SFV)
  • Menu contextuel optionnel
  • Associations de fichiers

System requirements

  • Windows 7 ou plus récent (x86 / x64 / ARM64)
  • 1 GB RAM ou plus

Usage

Most of the actions should be obvious. Some not-so-obvious features are listed here:

  • You can select multiple files or folders, all files will be hashed, directories traversed
  • Double click hash to copy it
  • Double click name or algorithm to copy the line in sumfile format
  • Right click for popup menu: copy hash, copy filename, copy line, copy everything
  • The counters next to the status text is in the format (match/mismatch/nothing to check against/error)
  • Columns sort lexographically, except the hash column which sorts by match type
  • Selecting the tab on a sumfile will interpret it as such and hash the files listed in it.
  • If a hashed file has a sumfile with same filename plus one of the recognized sumfile extensions and the option for it is enabled, the file hash is checked against it.

Algorithmes

  • CRC32, CRC64 (xz)
  • xxHash (XXH32, XXH64)
  • xxHash3 (64 et 128 bit)
  • MD4, MD5
  • RipeMD160
  • Blake2sp
  • SHA-1
  • SHA-2 (SHA-224, SHA-256, SHA-384, SHA-512)
  • SHA-3 (SHA3-224, SHA3-256, SHA3-384, SHA3-512)
  • BLAKE3 (256 bit, 512 bit)
  • KangarooTwelve (264 bit, 256 bit, 512 bit)
  • ParallelHash128 (264 bit) et ParallelHash256 (528 bit)
  • Streebog (GOST R 34.11-12) (256 bit, 512 bit)

Réinstaller la calculatrice dans Windows 10

Si la calculatrice a maladroitement été désinstallée de Windows 10, on peut passer par Powershell pour la réinstaller. On commence par lancer la commande Exécuter :

Lancez Powershell avec les droits d’administration en collant et lançant cette commande :

powershell  Start-Process powershell -Verb runAs

Désinstaller totalement la calculatrice (facultatif) :

get-appxpackage *Microsoft.WindowsCalculator* | remove-appxpackage

Récupérer les informations sur le package qui nous intéresse :

Get-AppxPackage -allusers *windowscalculator*

Adapter la commande ci-dessous avec le résultat de la commande précédente, par exemple :

Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\Microsoft.WindowsCalculator_10.2103.8.0_x64__8wekyb3d8bbwe\AppXManifest.xml"

Lancer la calculatrice en exécutant la commande dans l’invite de commande :

calc

Sources :