Make fields of struct Signature public

This commit is contained in:
Leo Alt
2023-01-16 14:55:02 +01:00
parent 8ae99d7b3c
commit 6f9bb1c133

View File

@@ -238,8 +238,8 @@ fn blh(b: &[u8]) -> Vec<u8> {
#[derive(Debug, Clone)]
pub struct Signature {
r_b8: Point,
s: BigInt,
pub r_b8: Point,
pub s: BigInt,
}
impl Signature {