@@ -8,6 +8,7 @@ import Operation from "../Operation.mjs";
8
8
import OperationError from "../errors/OperationError.mjs" ;
9
9
import forge from "node-forge" ;
10
10
import { MD_ALGORITHMS } from "../lib/RSA.mjs" ;
11
+ import Utils from "../Utils.mjs" ;
11
12
12
13
/**
13
14
* RSA Verify operation
@@ -37,6 +38,11 @@ class RSAVerify extends Operation {
37
38
type : "text" ,
38
39
value : ""
39
40
} ,
41
+ {
42
+ name : "Message format" ,
43
+ type : "option" ,
44
+ value : [ "Raw" , "Hex" , "Base64" ]
45
+ } ,
40
46
{
41
47
name : "Message Digest Algorithm" ,
42
48
type : "option" ,
@@ -51,7 +57,7 @@ class RSAVerify extends Operation {
51
57
* @returns {string }
52
58
*/
53
59
run ( input , args ) {
54
- const [ pemKey , message , mdAlgo ] = args ;
60
+ const [ pemKey , message , format , mdAlgo ] = args ;
55
61
if ( pemKey . replace ( "-----BEGIN RSA PUBLIC KEY-----" , "" ) . length === 0 ) {
56
62
throw new OperationError ( "Please enter a public key." ) ;
57
63
}
@@ -60,7 +66,8 @@ class RSAVerify extends Operation {
60
66
const pubKey = forge . pki . publicKeyFromPem ( pemKey ) ;
61
67
// Generate message digest
62
68
const md = MD_ALGORITHMS [ mdAlgo ] . create ( ) ;
63
- md . update ( message , "raw" ) ;
69
+ const messageStr = Utils . convertToByteString ( message , format ) ;
70
+ md . update ( messageStr , "raw" ) ;
64
71
// Compare signed message digest and generated message digest
65
72
const result = pubKey . verify ( md . digest ( ) . bytes ( ) , input ) ;
66
73
return result ? "Verified OK" : "Verification Failure" ;
0 commit comments