Struct http_sig::SigningConfig

source ·
pub struct SigningConfig { /* private fields */ }
Expand description

The configuration used for signing HTTP requests.

Implementations§

source§

impl SigningConfig

source

pub fn new_default(key_id: &str, key: &[u8]) -> Self

Creates a new signing configuration using the default signature algorithm, and the specified key ID and key.

source

pub fn new<SigAlg: HttpSignatureSign>(key_id: &str, signature: SigAlg) -> Self

Creates a new signing configuration using a custom signature algorithm, and the specified key ID.

source

pub fn key_id(&self) -> &str

Returns the key ID.

source

pub fn digest(&self) -> &dyn HttpDigest

Returns the HTTP digest algorithm.

source

pub fn with_digest<DigestAlg: HttpDigest>(self, digest: DigestAlg) -> Self

Sets the HTTP digest algorithm.

source

pub fn compute_digest(&self) -> bool

Returns whether the digest will be automatically computed when not already present.

This is set to true by default.

source

pub fn set_compute_digest(&mut self, compute_digest: bool) -> &mut Self

Controls whether the digest will be automatically computed when not already present (in-place).

This is set to true by default.

source

pub fn with_compute_digest(self, compute_digest: bool) -> Self

Controls whether the digest will be automatically computed when not already present.

This is set to true by default.

source

pub fn add_date(&self) -> bool

Returns whether the current date and time will be added to the request when not already present.

This is set to true by default.

source

pub fn set_add_date(&mut self, add_date: bool) -> &mut Self

Controls whether the current date and time will be added to the request when not already present (in-place).

This is set to true by default.

source

pub fn with_add_date(self, add_date: bool) -> Self

Controls whether the current date and time will be added to the request when not already present.

This is set to true by default.

source

pub fn add_host(&self) -> bool

Returns whether the host will be added to the request when not already present.

This is set to true by default.

source

pub fn set_add_host(&mut self, add_host: bool) -> &mut Self

Controls whether the host will be added to the request when not already present (in-place).

This is set to true by default.

source

pub fn with_add_host(self, add_host: bool) -> Self

Controls whether the host will be added to the request when not already present.

This is set to true by default.

source

pub fn headers(&self) -> impl IntoIterator<Item = &Header>

Returns the list of headers to include in the signature. Headers in this list which are not present in the request itself will be skipped when signing the request.

This list contains (request-target), host, date and digest by default.

source

pub fn set_headers(&mut self, headers: &[Header]) -> &mut Self

Controls the list of headers to include in the signature (in-place). Headers in this list which are not present in the request itself will be skipped when signing the request.

This list contains (request-target), host, date and digest by default.

source

pub fn with_headers(self, headers: &[Header]) -> Self

Controls the list of headers to include in the signature. Headers in this list which are not present in the request itself will be skipped when signing the request.

This list contains (request-target), host, date and digest by default.

source

pub fn skip_missing(&self) -> bool

Returns whether the missing headers will be skipped when not present, or if signing will fail instead.

This is set to true by default.

source

pub fn set_skip_missing(&mut self, skip_missing: bool) -> &mut Self

Controls whether the missing headers will be skipped when not present, or if signing will fail instead.

This is set to true by default.

source

pub fn with_skip_missing(self, skip_missing: bool) -> Self

Controls whether the missing headers will be skipped when not present, or if signing will fail instead.

This is set to true by default.

source

pub fn set_signature_created_auto(&mut self) -> &mut Self

Ensures a signature created date will be added automatically with the current time.

This is off by default.

source

pub fn with_signature_created_auto(self) -> Self

Ensures a signature created date will be added automatically with the current time.

This is off by default.

source

pub fn signature_created_auto(&self) -> bool

Determines if a signature created date will be added automatically with the current time.

This is off by default.

source

pub fn set_signature_created_at(&mut self, ts: i64) -> &mut Self

Ensures a signature created date will be added with the specified unix timestamp.

This is off by default.

source

pub fn with_signature_created_at(self, ts: i64) -> Self

Ensures a signature created date will be added with the specified unix timestamp.

This is off by default.

source

pub fn signature_created_at(&self) -> Option<i64>

Determines if a signature created date will be added with a specific unix timestamp.

This is off by default.

source

pub fn set_signature_expires_relative(&mut self, offset: i64) -> &mut Self

Ensures a signature expires date will be added automatically relative to the current time.

This is off by default.

source

pub fn with_signature_expires_auto(self, offset: i64) -> Self

Ensures a signature expires date will be added automatically relative to the current time.

This is off by default.

source

pub fn signature_expires_relative(&self) -> Option<i64>

Determines if a signature expires date will be added automatically relative to the current time.

This is off by default.

source

pub fn set_signature_expires_at(&mut self, ts: i64) -> &mut Self

Ensures a signature expires date will be added with the specified unix timestamp.

This is off by default.

source

pub fn with_signature_expires_at(self, ts: i64) -> Self

Ensures a signature expires date will be added with the specified unix timestamp.

This is off by default.

source

pub fn signature_expires_at(&self) -> Option<i64>

Determines if a signature expires date will be added with a specific unix timestamp.

This is off by default.

Trait Implementations§

source§

impl Clone for SigningConfig

source§

fn clone(&self) -> SigningConfig

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 SigningConfig

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more