Browse Source

Merge pull request #5 from leonardoalt/make_sk_fields_pub

Make fields of PrivateKey pub
pull/6/head
arnaucube 1 year ago
committed by GitHub
parent
commit
1a69ae6828
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/lib.rs

+ 1
- 1
src/lib.rs

@ -268,7 +268,7 @@ pub fn decompress_signature(b: &[u8; 64]) -> Result {
}
pub struct PrivateKey {
key: [u8; 32],
pub key: [u8; 32],
}
impl PrivateKey {

Loading…
Cancel
Save