Skip to content

refactor(projective): remove deprecated methods identity and generator #1299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions k256/src/arithmetic/projective.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,7 @@ impl ProjectivePoint {
z: FieldElement::ONE,
};

/// Returns the additive identity of SECP256k1, also known as the "neutral element" or
/// "point at infinity".
#[deprecated(since = "0.10.2", note = "use `ProjectivePoint::IDENTITY` instead")]
pub const fn identity() -> ProjectivePoint {
Self::IDENTITY
}

/// Returns the base point of SECP256k1.
#[deprecated(since = "0.10.2", note = "use `ProjectivePoint::GENERATOR` instead")]
pub fn generator() -> ProjectivePoint {
Self::GENERATOR
}

/// Returns the affine representation of this point.
pub fn to_affine(&self) -> AffinePoint {
Expand Down
Loading