cipherTextLength method

int cipherTextLength(
  1. int clearTextLength
)

Calculates the length of the ciphertext given a clear text length.

Implementation

int cipherTextLength(int clearTextLength) => clearTextLength;