69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
/**
|
|
* @author xumptex [xumptex@outlook.fr]
|
|
* @copyright Crown Copyright 2025
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation.mjs";
|
|
import OperationError from "../errors/OperationError.mjs";
|
|
import Utils from "../Utils.mjs";
|
|
import { blake3 } from "@noble/hashes/blake3.js";
|
|
import { bytesToHex } from "@noble/hashes/utils.js";
|
|
|
|
/**
|
|
* BLAKE3 operation
|
|
*/
|
|
class BLAKE3 extends Operation {
|
|
|
|
/**
|
|
* BLAKE3 constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "BLAKE3";
|
|
this.module = "Hashing";
|
|
this.description = "Hashes the input using BLAKE3 (UTF-8 encoded), with an optional key (also UTF-8), and outputs the result in hexadecimal format.";
|
|
this.infoURL = "https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE3";
|
|
this.inputType = "string";
|
|
this.outputType = "string";
|
|
this.args = [
|
|
{
|
|
"name": "Size (bytes)",
|
|
"type": "number",
|
|
"value": 16,
|
|
"min": 1,
|
|
"max": 65535, // arbitrary limit to prevent resource exhaustion
|
|
"integer": true,
|
|
}, {
|
|
"name": "Key",
|
|
"type": "string",
|
|
"value": ""
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
run(input, args) {
|
|
const key = args[1];
|
|
const size = args[0];
|
|
const opts = { dkLen: size };
|
|
const inputBytes = new Uint8Array(Utils.strToArrayBuffer(input));
|
|
if (key !== "") {
|
|
const keyBytes = new Uint8Array(Utils.strToArrayBuffer(key));
|
|
if (keyBytes.length !== 32) {
|
|
throw new OperationError("The key must be exactly 32 bytes long");
|
|
}
|
|
opts.key = keyBytes;
|
|
}
|
|
return bytesToHex(blake3(inputBytes, opts));
|
|
}
|
|
|
|
}
|
|
|
|
export default BLAKE3;
|