mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
CRC Checksum operations now send their input as ArrayBuffers. Tests added. Fixes #293
This commit is contained in:
parent
cb66508b8a
commit
f81012ef6e
4 changed files with 125 additions and 4 deletions
|
@ -120,7 +120,7 @@ const Checksum = {
|
|||
/**
|
||||
* CRC-32 Checksum operation.
|
||||
*
|
||||
* @param {string} input
|
||||
* @param {ArrayBuffer} input
|
||||
* @param {Object[]} args
|
||||
* @returns {string}
|
||||
*/
|
||||
|
@ -132,7 +132,7 @@ const Checksum = {
|
|||
/**
|
||||
* CRC-16 Checksum operation.
|
||||
*
|
||||
* @param {string} input
|
||||
* @param {ArrayBuffer} input
|
||||
* @param {Object[]} args
|
||||
* @returns {string}
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue