decryptToText static method

String decryptToText(
  1. String value,
  2. String password
)

Implementation

static String decryptToText(String value, String password) {
  return bytesUtf8ToString(decrypt(hexToBytes(value), password));
}