decode static method

String decode(
  1. String text
)

Implementation

static String decode(String text) {
  // The decoding process is the same as encoding for this cipher
  return encode(text);
}