public static String encrypt(String plainText) {
int a = plainText.length();
// Determining the size of the Array
// Rounding up square root of text length
int SizeOfArray = ((int)...