2020-07-06 17:35:14 +02:00
/ * *
* @ author n1073645 [ n1073645 @ gmail . com ]
* @ copyright Crown Copyright 2020
* @ license Apache - 2.0
* /
import Operation from "../Operation.mjs" ;
/ * *
* Caesar Box Cipher operation
* /
class CaesarBoxCipher extends Operation {
/ * *
* CaesarBoxCipher constructor
* /
constructor ( ) {
super ( ) ;
this . name = "Caesar Box Cipher" ;
this . module = "Ciphers" ;
2022-07-08 16:36:30 +02:00
this . description = "Caesar Box is a transposition cipher used in the Roman Empire, in which letters of the message are written in rows in a square (or a rectangle) and then, read by column." ;
2020-07-06 17:46:40 +02:00
this . infoURL = "https://www.dcode.fr/caesar-box-cipher" ;
2020-07-06 17:35:14 +02:00
this . inputType = "string" ;
this . outputType = "string" ;
this . args = [
{
name : "Box Height" ,
type : "number" ,
value : 1
}
] ;
}
/ * *
* @ param { string } input
* @ param { Object [ ] } args
* @ returns { string }
* /
run ( input , args ) {
const tableHeight = args [ 0 ] ;
const tableWidth = Math . ceil ( input . length / tableHeight ) ;
while ( input . indexOf ( " " ) !== - 1 )
input = input . replace ( " " , "" ) ;
for ( let i = 0 ; i < ( tableHeight * tableWidth ) - input . length ; i ++ ) {
input += "\x00" ;
}
let result = "" ;
for ( let i = 0 ; i < tableHeight ; i ++ ) {
for ( let j = i ; j < input . length ; j += tableHeight ) {
if ( input . charAt ( j ) !== "\x00" ) {
result += input . charAt ( j ) ;
}
}
}
return result ;
}
}
export default CaesarBoxCipher ;