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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/lib.rs
|
@ -268,7 +268,7 @@ pub fn decompress_signature(b: &[u8; 64]) -> Result { |
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
pub struct PrivateKey {
|
|
|
pub struct PrivateKey {
|
|
|
key: [u8; 32],
|
|
|
|
|
|
|
|
|
pub key: [u8; 32],
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
impl PrivateKey {
|
|
|
impl PrivateKey {
|
|
|