Trait elliptic_curve::JwkParameters
source · pub trait JwkParameters: Curve {
const CRV: &'static str;
}
Available on crate feature
jwk
only.Expand description
Elliptic curve parameters used by JSON Web Keys.
Required Associated Constants§
sourceconst CRV: &'static str
const CRV: &'static str
The crv
parameter which identifies a particular elliptic curve
as defined in RFC 7518 Section 6.2.1.1:
https://tools.ietf.org/html/rfc7518#section-6.2.1.1
Curve values are registered in the IANA “JSON Web Key Elliptic Curve” registry defined in RFC 7518 Section 7.6: https://tools.ietf.org/html/rfc7518#section-7.6
Object Safety§
This trait is not object safe.