|
class SHA256Hasher extends Converter {
|
|
constructor() {
|
|
super("SHA256 Hasher", [
|
|
{ label : "Hash", conversionFunction : (d) => SHA256(d.toString()) },
|
|
]);
|
|
|
|
ModuleController.loadModule(ModuleController.MODULES.sha256);
|
|
|
|
this.outputs[0].type = "string";
|
|
}
|
|
} |