Family | Algorithm | Linux Console | OpenSSL | Windows Console | Windows PowerShell |
---|---|---|---|---|---|
MD5 | MD5 | md5sum file | openssl md5 file | certutil.exe -hashfile file MD5 | Get-FileHash file -Algorithm MD5 |
SHA-1 | SHA1 | sha1sum file | openssl sha1 file | certutil.exe -hashfile file SHA1 | Get-FileHash file -Algorithm SHA1 |
SHA-2 | SHA256 | sha256sum file | openssl sha256 file | certutil.exe -hashfile file SHA256 | Get-FileHash file -Algorithm SHA256 |
SHA512 | sha512sum file | openssl sha512 file | certutil.exe -hashfile file SHA512 | Get-FileHash file -Algorithm SHA512 | |
SHA-3 | SHA3-256 | - | openssl sha3-256 file | - | - |
SHA3-512 | - | openssl sha3-512 file | - | - | |
BLAKE2 | BLAKE2S256 | - | openssl blake2s256 file | - | - |
BLAKE2B512 | b2sum file | openssl blake2b512 file | - | - |
Linux Console:
find path -type f | xargs md5sum find path -type f | xargs sha1sum find path -type f | xargs sha256sum ...
Windows PowerShell:
ls path -Recurse | Get-FileHash -Algorithm MD5 ls path -Recurse | Get-FileHash -Algorithm SHA1 ls path -Recurse | Get-FileHash -Algorithm SHA256 ...
© 2020 RainbowCrack Project