mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-06 20:20:34 +00:00
Change Coordinates attrs back to pub(crate)
This commit is contained in:
parent
8042906484
commit
8a3643682f
1 changed files with 2 additions and 4 deletions
|
|
@ -134,10 +134,8 @@ pub trait CurveAffine:
|
||||||
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
|
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
|
||||||
#[derive(Clone, Copy, Debug, Default)]
|
#[derive(Clone, Copy, Debug, Default)]
|
||||||
pub struct Coordinates<C: CurveAffine> {
|
pub struct Coordinates<C: CurveAffine> {
|
||||||
/// x-coordinate of the EC point.
|
pub(crate) x: C::Base,
|
||||||
pub x: C::Base,
|
pub(crate) y: C::Base,
|
||||||
/// y-coordinate of the EC point.
|
|
||||||
pub y: C::Base,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue