lyraDec static method

String lyraDec(
  1. String input
)

decode private key to hex encoding of ECDSA private key

Implementation

static String lyraDec(String input) {
  return hex.encode(lyraDecToBytes(input));
}