2
0
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:
Matt
2020-04-06 13:35:14 +01:00
parent 73864e0809
commit e0f000b913
4 changed files with 27 additions and 6 deletions

9
src/core/lib/RSA.mjs Normal file
View 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,
};