Skip to content

Commit 481b209

Browse files
authored
Update schnorr_signature.dart
Add getters for r and s value to SchnorrSignature. For ergonomics.
1 parent 764d8cc commit 481b209

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

coinlib/lib/src/crypto/schnorr_signature.dart

+6
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,10 @@ class SchnorrSignature {
4747
/// The serialized 32 byte r and s values of a schnorr signature
4848
Uint8List get data => Uint8List.fromList(_data);
4949

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+
5056
}

0 commit comments

Comments
 (0)