2018-05-15 10:15:31 +01:00
/ * *
* @ author tlwr [ toby @ toby . codes ]
* @ copyright Crown Copyright 2017
* @ license Apache - 2.0
* /
import Operation from "../Operation" ;
2018-05-15 16:04:57 +01:00
import kbpgp from "kbpgp" ;
2018-05-15 10:15:31 +01:00
import { ASP , importPrivateKey } from "../lib/PGP" ;
2018-05-15 18:01:04 +01:00
import OperationError from "../errors/OperationError" ;
2018-05-15 16:04:57 +01:00
import promisifyDefault from "es6-promisify" ;
const promisify = promisifyDefault . promisify ;
2018-05-15 10:15:31 +01:00
2018-05-15 18:01:04 +01:00
2018-05-15 10:15:31 +01:00
/ * *
* PGP Decrypt operation
* /
class PGPDecrypt extends Operation {
/ * *
* PGPDecrypt constructor
* /
constructor ( ) {
super ( ) ;
this . name = "PGP Decrypt" ;
this . module = "PGP" ;
this . description = "Input: the ASCII-armoured PGP message you want to decrypt.\n<br><br>\nArguments: the ASCII-armoured PGP private key of the recipient, \n(and the private key password if necessary).\n<br><br>\nPretty Good Privacy is an encryption standard (OpenPGP) used for encrypting, decrypting, and signing messages.\n<br><br>\nThis function uses the Keybase implementation of PGP." ;
this . inputType = "string" ;
this . outputType = "string" ;
this . args = [
{
"name" : "Private key of recipient" ,
"type" : "text" ,
"value" : ""
} ,
{
"name" : "Private key passphrase" ,
"type" : "string" ,
"value" : ""
}
] ;
}
/ * *
* @ param { string } input
* @ param { Object [ ] } args
* @ returns { string }
2018-05-15 18:01:04 +01:00
*
* @ throws { OperationError } if invalid private key
2018-05-15 10:15:31 +01:00
* /
async run ( input , args ) {
const encryptedMessage = input ,
privateKey = args [ 0 ] ,
passphrase = args [ 1 ] ,
keyring = new kbpgp . keyring . KeyRing ( ) ;
let plaintextMessage ;
2018-05-15 18:01:04 +01:00
if ( ! privateKey ) throw new OperationError ( "Enter the private key of the recipient." ) ;
2018-05-15 10:15:31 +01:00
const key = await importPrivateKey ( privateKey , passphrase ) ;
keyring . add _key _manager ( key ) ;
try {
plaintextMessage = await promisify ( kbpgp . unbox ) ( {
armored : encryptedMessage ,
keyfetch : keyring ,
asp : ASP
} ) ;
} catch ( err ) {
2018-05-15 18:01:04 +01:00
throw new OperationError ( ` Couldn't decrypt message with provided private key: ${ err } ` ) ;
2018-05-15 10:15:31 +01:00
}
return plaintextMessage . toString ( ) ;
}
}
export default PGPDecrypt ;