We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 764d8cc commit 481b209Copy full SHA for 481b209
coinlib/lib/src/crypto/schnorr_signature.dart
@@ -47,4 +47,10 @@ class SchnorrSignature {
47
/// The serialized 32 byte r and s values of a schnorr signature
48
Uint8List get data => Uint8List.fromList(_data);
49
50
+ // Getter for r value (first 32 bytes)
51
+ Uint8List get r => _data.sublist(0, 32);
52
+
53
+ // Getter for s value (last 32 bytes)
54
+ Uint8List get s => _data.sublist(32, 64);
55
56
}
0 commit comments