Skip to main content

ValidatePublicKey

Trait ValidatePublicKey 

Source
pub trait ValidatePublicKey
where Self: Curve, FieldBytesSize<Self>: ModulusSize,
{ // Provided method fn validate_public_key( secret_key: &SecretKey<Self>, public_key: &EncodedPoint<Self>, ) -> Result<()> { ... } }
Expand description

Validate that the given EncodedPoint represents the encoded public key value of the given secret.

Curve implementations which also impl CurveArithmetic will receive a blanket default impl of this trait.

Provided Methods§

Source

fn validate_public_key( secret_key: &SecretKey<Self>, public_key: &EncodedPoint<Self>, ) -> Result<()>

Validate that the given EncodedPoint is a valid public key for the provided secret value.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<C> ValidatePublicKey for C

Available on crate feature arithmetic only.