Skip to content

Commit

Permalink
Merge pull request zcash#78 from gtank/make-privatekey-public
Browse files Browse the repository at this point in the history
redjubjub: make PrivateKey internal scalar public
  • Loading branch information
ebfull authored Jul 12, 2018
2 parents 6abfcca + df7bfce commit c2862a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redjubjub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct Signature {
sbar: [u8; 32],
}

pub struct PrivateKey<E: JubjubEngine>(E::Fs);
pub struct PrivateKey<E: JubjubEngine>(pub E::Fs);

pub struct PublicKey<E: JubjubEngine>(pub Point<E, Unknown>);

Expand Down

0 comments on commit c2862a4

Please sign in to comment.