Skip to content

Commit

Permalink
Expose EncodedScalar
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis committed Jul 26, 2021
1 parent beb30ff commit f384dcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/elliptic/curves/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub use self::{
};
pub use self::{
traits::{Curve, ECPoint, ECScalar, PointCoords},
wrappers::{EncodedPoint, Generator, Point, PointRef, Scalar},
wrappers::{EncodedPoint, EncodedScalar, Generator, Point, PointRef, Scalar},
};

pub mod error {
Expand Down
4 changes: 2 additions & 2 deletions src/elliptic/curves/wrappers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ mod scalar;
mod serde_support;

pub use self::{
encoded_point::EncodedPoint, generator::Generator, point::Point, point_ref::PointRef,
scalar::Scalar,
encoded_point::EncodedPoint, encoded_scalar::EncodedScalar, generator::Generator, point::Point,
point_ref::PointRef, scalar::Scalar,
};

0 comments on commit f384dcd

Please sign in to comment.