mirror of
https://github.com/gchq/CyberChef
synced 2025-12-11 05:43:28 +00:00
Fixed RSA generation and added digest option to verify
This commit is contained in:
9
src/core/lib/RSA.mjs
Normal file
9
src/core/lib/RSA.mjs
Normal file
@@ -0,0 +1,9 @@
|
||||
import forge from "node-forge/dist/forge.min.js";
|
||||
|
||||
export const MD_ALGORITHMS = {
|
||||
"SHA-1": forge.md.sha1,
|
||||
"MD5": forge.md.md5,
|
||||
"SHA-256": forge.md.sha256,
|
||||
"SHA-384": forge.md.sha384,
|
||||
"SHA-512": forge.md.sha512,
|
||||
};
|
||||
Reference in New Issue
Block a user