alloy_rpc_types_engine

Struct JwtSecret

source
pub struct JwtSecret(/* private fields */);
Available on crate feature jwt only.
Expand description

Value-object holding a reference to a hex-encoded 256-bit secret key.

A JWT secret key is used to secure JWT-based authentication. The secret key is a shared secret between the server and the client and is used to calculate a digital signature for the JWT, which is included in the JWT along with its payload.

See also: Secret key - Engine API specs

Implementations§

source§

impl JwtSecret

source

pub fn from_hex<S: AsRef<str>>(hex: S) -> Result<Self, JwtError>

Creates an instance of JwtSecret.

Returns an error if one of the following applies:

  • hex is not a valid hexadecimal string
  • hex argument length is less than JWT_SECRET_LEN

This strips the leading 0x, if any.

source

pub fn from_file(fpath: &Path) -> Result<Self, JwtError>

Available on crate feature std only.

Tries to load a JwtSecret from the specified file path. I/O or secret validation errors might occur during read operations in the form of a JwtError.

source

pub fn try_create_random(fpath: &Path) -> Result<Self, JwtError>

Available on crate feature std only.

Creates a random JwtSecret and tries to store it at the specified path. I/O errors might occur during write operations in the form of a JwtError

source

pub fn validate(&self, jwt: &str) -> Result<(), JwtError>

Available on crate feature serde only.

Validates a JWT token along the following rules:

  • The JWT signature is valid.
  • The JWT is signed with the HMAC + SHA256 (HS256) algorithm.
  • The JWT iat (issued-at) claim is a timestamp within +-60 seconds from the current time.
  • The JWT exp (expiration time) claim is validated by default if defined.

See also: JWT Claims - Engine API specs

source

pub fn random() -> Self

Generates a random JwtSecret containing a hex-encoded 256 bit secret key.

source

pub fn encode(&self, claims: &Claims) -> Result<String, Error>

Available on crate feature serde only.

Encode the header and claims given and sign the payload using the algorithm from the header and the key.

source

pub const fn as_bytes(&self) -> &[u8]

Returns the secret key as a byte slice.

Trait Implementations§

source§

impl Clone for JwtSecret

source§

fn clone(&self) -> JwtSecret

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for JwtSecret

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl FromStr for JwtSecret

source§

type Err = JwtError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl PartialEq for JwtSecret

source§

fn eq(&self, other: &JwtSecret) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for JwtSecret

source§

impl Eq for JwtSecret

source§

impl StructuralPartialEq for JwtSecret

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V