Tidied operations to match conventions

This commit is contained in:
Matt C 2017-02-08 17:29:50 +00:00
parent 2750be36da
commit a153246191
4 changed files with 26 additions and 6 deletions

View file

@ -385,6 +385,7 @@ var Cipher = {
return encrypted.ciphertext.toString(Utils.format[args[2]]);
},
/**
* Vigenère Encode operation.
*
@ -474,6 +475,7 @@ var Cipher = {
return output;
},
/**
* @constant
* @default
@ -484,6 +486,7 @@ var Cipher = {
* @default
*/
AFFINE_B: 0,
/**
* Affine Cipher Encode operation.
*
@ -513,6 +516,7 @@ var Cipher = {
return output;
},
/**
* Affine Cipher Encode operation.
*
@ -546,6 +550,7 @@ var Cipher = {
return output;
},
/**
* Atbash Cipher Encode operation.
*
@ -558,6 +563,7 @@ var Cipher = {
return Cipher.runAffineEnc(input, [25, 25]);
},
/**
* @constant
* @default