static Uint8List privateKeyHexToPublicKey(String prvHex) { var d = BigInt.parse('+' + prvHex, radix: 16); return privateKeyIntToPublicKey(d); }