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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 {
|
|
|
|