redjubjub: make PrivateKey internal scalar public

This commit is contained in:
George Tankersley
2018-07-12 00:00:00 +00:00
parent 6abfcca25a
commit df7bfce0be

View File

@@ -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>);