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