Browse Source

Make fields of struct Signature public

pull/4/head
Leo Alt 1 year ago
parent
commit
6f9bb1c133
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/lib.rs

+ 2
- 2
src/lib.rs

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

Loading…
Cancel
Save