2018-05-23 19:23:03 +02:00
/ * *
* @ author n1474335 [ n1474335 @ gmail . com ]
* @ copyright Crown Copyright 2016
* @ license Apache - 2.0
* /
import Operation from "../Operation" ;
import Utils from "../Utils" ;
2018-05-27 17:13:18 +02:00
import OperationError from "../errors/OperationError" ;
2018-05-23 19:23:03 +02:00
import forge from "node-forge/dist/forge.min.js" ;
/ * *
* DES Decrypt operation
* /
class DESDecrypt extends Operation {
/ * *
* DESDecrypt constructor
* /
constructor ( ) {
super ( ) ;
this . name = "DES Decrypt" ;
this . module = "Ciphers" ;
this . description = "DES is a previously dominant algorithm for encryption, and was published as an official U.S. Federal Information Processing Standard (FIPS). It is now considered to be insecure due to its small key size.<br><br><b>Key:</b> DES uses a key length of 8 bytes (64 bits).<br>Triple DES uses a key length of 24 bytes (192 bits).<br><br><b>IV:</b> The Initialization Vector should be 8 bytes long. If not entered, it will default to 8 null bytes.<br><br><b>Padding:</b> In CBC and ECB mode, PKCS#7 padding will be used." ;
2018-08-21 20:07:13 +02:00
this . infoURL = "https://wikipedia.org/wiki/Data_Encryption_Standard" ;
2018-05-23 19:23:03 +02:00
this . inputType = "string" ;
this . outputType = "string" ;
this . args = [
{
"name" : "Key" ,
"type" : "toggleString" ,
"value" : "" ,
"toggleValues" : [ "Hex" , "UTF8" , "Latin1" , "Base64" ]
} ,
{
"name" : "IV" ,
"type" : "toggleString" ,
"value" : "" ,
"toggleValues" : [ "Hex" , "UTF8" , "Latin1" , "Base64" ]
} ,
{
"name" : "Mode" ,
"type" : "option" ,
"value" : [ "CBC" , "CFB" , "OFB" , "CTR" , "ECB" ]
} ,
{
"name" : "Input" ,
"type" : "option" ,
"value" : [ "Hex" , "Raw" ]
} ,
{
"name" : "Output" ,
"type" : "option" ,
"value" : [ "Raw" , "Hex" ]
}
] ;
}
/ * *
* @ param { string } input
* @ param { Object [ ] } args
* @ returns { string }
* /
run ( input , args ) {
const key = Utils . convertToByteString ( args [ 0 ] . string , args [ 0 ] . option ) ,
iv = Utils . convertToByteArray ( args [ 1 ] . string , args [ 1 ] . option ) ,
2018-05-23 21:36:29 +02:00
[ , , mode , inputType , outputType ] = args ;
2018-05-23 19:23:03 +02:00
if ( key . length !== 8 ) {
2018-05-27 17:13:18 +02:00
throw new OperationError ( ` Invalid key length: ${ key . length } bytes
2018-05-23 19:31:26 +02:00
2018-05-23 19:23:03 +02:00
DES uses a key length of 8 bytes ( 64 bits ) .
2018-05-27 17:13:18 +02:00
Triple DES uses a key length of 24 bytes ( 192 bits ) . ` );
2018-05-23 19:23:03 +02:00
}
input = Utils . convertToByteString ( input , inputType ) ;
const decipher = forge . cipher . createDecipher ( "DES-" + mode , key ) ;
decipher . start ( { iv : iv } ) ;
decipher . update ( forge . util . createBuffer ( input ) ) ;
const result = decipher . finish ( ) ;
if ( result ) {
return outputType === "Hex" ? decipher . output . toHex ( ) : decipher . output . getBytes ( ) ;
} else {
2018-05-27 17:13:18 +02:00
throw new OperationError ( "Unable to decrypt input with these parameters." ) ;
2018-05-23 19:23:03 +02:00
}
}
}
export default DESDecrypt ;