mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 23:06:16 -04:00
Added Streebog and GOST to 'Generate all hashes' op
This commit is contained in:
parent
4d4ebf7279
commit
e4b4e8afca
1 changed files with 51 additions and 46 deletions
|
@ -31,6 +31,8 @@ import CRC16Checksum from "./CRC16Checksum";
|
|||
import CRC32Checksum from "./CRC32Checksum";
|
||||
import BLAKE2b from "./BLAKE2b";
|
||||
import BLAKE2s from "./BLAKE2s";
|
||||
import Streebog from "./Streebog";
|
||||
import GOSTHash from "./GOSTHash";
|
||||
|
||||
/**
|
||||
* Generate all hashes operation
|
||||
|
@ -97,6 +99,9 @@ class GenerateAllHashes extends Operation {
|
|||
"\nBLAKE2s-128: " + (new BLAKE2s).run(arrayBuffer, ["128", "Hex", {string: "", option: "UTF8"}]) +
|
||||
"\nBLAKE2s-160: " + (new BLAKE2s).run(arrayBuffer, ["160", "Hex", {string: "", option: "UTF8"}]) +
|
||||
"\nBLAKE2s-256: " + (new BLAKE2s).run(arrayBuffer, ["256", "Hex", {string: "", option: "UTF8"}]) +
|
||||
"\nStreebog-256: " + (new Streebog).run(arrayBuffer, ["256"]) +
|
||||
"\nStreebog-512: " + (new Streebog).run(arrayBuffer, ["512"]) +
|
||||
"\nGOST: " + (new GOSTHash).run(arrayBuffer, ["D-A"]) +
|
||||
"\nSSDEEP: " + (new SSDEEP()).run(str) +
|
||||
"\nCTPH: " + (new CTPH()).run(str) +
|
||||
"\n\nChecksums:" +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue