Skip to content

Commit d76d9c0

Browse files
authored
Merge pull request #446 from rllola/misc/signature-public
Make signature properties public
2 parents 54b4283 + f0482ec commit d76d9c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared/src/crypto/signature.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ pub enum SignatureType {
3535
/// A cryptographic signature, represented in bytes, of any key protocol.
3636
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
3737
pub struct Signature {
38-
sig_type: SignatureType,
39-
bytes: Vec<u8>,
38+
pub sig_type: SignatureType,
39+
pub bytes: Vec<u8>,
4040
}
4141

4242
impl Cbor for Signature {}

0 commit comments

Comments
 (0)