private BlockMatrix BuildBlockMatrix(Keyword keyword)
        {
            int keywordLength    = keyword.GetLength();
            int cipherTextLength = this.cipherText.Length;

            return(this.matrixBuilder.Build(keywordLength, cipherTextLength));
        }