mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-03 20:13:48 +00:00
Re-export commonly used types from toplevel (#502)
Re-exports the following commonly used types from their respective modules to the toplevel of the crate, which makes them easier to access: - `EdwardsPoint` - `MontgomeryPoint` - `RistrettoPoint` - `Scalar`
This commit is contained in:
parent
1a388f7135
commit
79bcbdc89b
1 changed files with 4 additions and 0 deletions
|
|
@ -80,3 +80,7 @@ pub(crate) mod backend;
|
|||
|
||||
// Generic code for window lookups
|
||||
pub(crate) mod window;
|
||||
|
||||
pub use crate::{
|
||||
edwards::EdwardsPoint, montgomery::MontgomeryPoint, ristretto::RistrettoPoint, scalar::Scalar,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue