Browse Source

Merge pull request #4 from leonardoalt/pub_sig_fields

Make fields of struct Signature public
pull/5/head
arnaucube 1 year ago
committed by GitHub
parent
commit
5e3ee25cc9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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