diff --git a/src/core/operations/MultiTapCipherEncode.mjs b/src/core/operations/MultiTapCipherEncode.mjs index 12c280ec..37b154ae 100644 --- a/src/core/operations/MultiTapCipherEncode.mjs +++ b/src/core/operations/MultiTapCipherEncode.mjs @@ -55,7 +55,7 @@ class MultiTapCipherEncode extends Operation { if(i!=plaintext.length-1) ciphertext += delim; } - return ciphertext.substring(0,ciphertext.length); + return ciphertext; } }