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
No known key found for this signature in database
GPG key ID: 2DD462FE98BF38C2
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,
};