mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +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")))]
|
||||
#[derive(Clone, Copy, Debug, Default)]
|
||||
pub struct Coordinates<C: CurveAffine> {
|
||||
/// x-coordinate of the EC point.
|
||||
pub x: C::Base,
|
||||
/// y-coordinate of the EC point.
|
||||
pub y: C::Base,
|
||||
pub(crate) x: C::Base,
|
||||
pub(crate) y: C::Base,
|
||||
}
|
||||
|
||||
#[cfg(feature = "alloc")]
|
||||
|
|
|
|||
Loading…
Reference in a new issue