From 72c88478d046f8ce8d310288e5d8c70a80696168 Mon Sep 17 00:00:00 2001 From: Avory Date: Fri, 18 Jul 2025 13:28:13 +0300 Subject: [PATCH] Update projective.rs --- k256/src/arithmetic/projective.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/k256/src/arithmetic/projective.rs b/k256/src/arithmetic/projective.rs index 8d3de16dc..dbdcfb9dc 100644 --- a/k256/src/arithmetic/projective.rs +++ b/k256/src/arithmetic/projective.rs @@ -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 {