initHexKey static method

String initHexKey()

Implementation

static String initHexKey() {
  final key = Key.fromSecureRandom(128 ~/ 8);
  return HEX.encode(key.bytes);
}