Hashes/Cripto
Checksum Verifier
Verifica la integridad de un archivo o texto — pega el hash esperado y la herramienta detectará el algoritmo entre los 13 compatibles.
Hashes calculados
Sites publish a checksum next to a download so users can confirm the file arrived intact and hasn't been tampered with. This tool hashes your file and compares it against the expected value, detecting the algorithm automatically.
How to use it
- Pick a file or paste text, then paste the expected hash published by the source.
- The tool auto-detects the algorithm from the hash's length among the 13 it supports (MD5, SHA-1, SHA-256, and others) and shows whether the result matches.
- If the algorithm is known ahead of time, you can select it manually for a more precise check.
Common uses
- Verifying an ISO image or installer after downloading it, before burning it to media.
- Confirming an archive of important data survived a network transfer intact.
- Cross-checking a package manager's checksum against the one the developer published.
Things to keep in mind
A checksum check protects against accidental corruption and confirms file integrity, but it doesn't guarantee the original itself wasn't compromised at the source — that requires a digital signature.
If the checksum doesn't match, re-download the file first: the most common cause is corruption in transit, not tampering.
Artículo sobre esta herramienta: Checksum Verifier: cómo comprobar que un archivo no está dañado
Preguntas frecuentes
¿Qué sentido tiene comparar checksums en lugar de simplemente confiar en una descarga?
Un checksum te permite confirmar que un archivo no se corrompió durante la transferencia ni fue manipulado, comparando el hash calculado localmente con el publicado por la fuente — si no coinciden, el archivo es distinto del publicado.
¿Qué algoritmo debo usar para verificar un checksum?
Usa el mismo algoritmo en el que la fuente publicó el checksum — normalmente SHA-256 hoy en día, aunque los checksums SHA-1 o MD5 más antiguos siguen siendo comunes en archivos heredados. El algoritmo debe coincidir exactamente, ya que un hash de un algoritmo no se puede comparar con otro.
¿Verificar mi archivo lo sube a algún sitio?
No. El archivo se lee y se hashea enteramente en tu navegador — nunca se sube a un servidor.
¿Por qué a veces se usa CRC32 en lugar de SHA-256 para checksums?
CRC32 es mucho más rápido, pero es trivial falsificarlo a propósito — aceptable para detectar corrupción accidental en la transferencia (archivadores, protocolos de red), pero inadecuado como protección contra un atacante que quiera suplantar un archivo sin ser detectado.
¿Qué hacer si el checksum no coincide?
Primero vuelve a descargar el archivo — la causa más común de discrepancia es la corrupción durante la transferencia. Si después de descargarlo de nuevo el checksum sigue sin coincidir, no uses el archivo: puede que la fuente lo haya actualizado sin actualizar el checksum publicado, o que el archivo haya sido suplantado.