publicKeyUncompressed property

Uint8List get publicKeyUncompressed

Implementation

Uint8List get publicKeyUncompressed {
  if (privateKey == null) {
    throw UnsupportedError("privateKey is null");
  }
  return pointFromScalar(privateKey!, false)!;
}