pub struct Signed<T> {
inner: JWT,
phantom: PhantomData<T>,
}Expand description
A signed T by encoding T into a jwt::JWT.
Fields§
§inner: JWT§phantom: PhantomData<T>Implementations§
Source§impl<T> Signed<T>
impl<T> Signed<T>
Sourcepub fn open<VK: VerifyingKey>(
self,
key: &VK,
constellation: Option<&Constellation>,
) -> Result<T, OpenError>where
T: Signable,
pub fn open<VK: VerifyingKey>(
self,
key: &VK,
constellation: Option<&Constellation>,
) -> Result<T, OpenError>where
T: Signable,
Opens this Signed message using the provided key.
Sourcepub fn open_without_checking_signature(self) -> Result<T, OpenError>where
T: Signable,
pub fn open_without_checking_signature(self) -> Result<T, OpenError>where
T: Signable,
Open this signed message without checking the signature. Something that should be done
only in exceptional circumstances, for example, in the phc::hub::TicketEP endpoint.
Sourcepub fn new<SK: SigningKey>(
sk: &SK,
message: &T,
valid_for: Duration,
) -> Result<Self>where
T: Signable,
pub fn new<SK: SigningKey>(
sk: &SK,
message: &T,
valid_for: Duration,
) -> Result<Self>where
T: Signable,
Like new_opts, but with None for the constellation.
Sourcepub fn new_opts<SK: SigningKey>(
sk: &SK,
message: &T,
valid_for: Duration,
constellation: Option<&Constellation>,
) -> Result<Self>where
T: Signable,
pub fn new_opts<SK: SigningKey>(
sk: &SK,
message: &T,
valid_for: Duration,
constellation: Option<&Constellation>,
) -> Result<Self>where
T: Signable,
Signs message, and returns the resulting Signed, with more options.
pub fn as_str(&self) -> &str
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for Signed<T>
impl<'de, T> Deserialize<'de> for Signed<T>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<T> Freeze for Signed<T>
impl<T> RefUnwindSafe for Signed<T>where
T: RefUnwindSafe,
impl<T> Send for Signed<T>where
T: Send,
impl<T> Sync for Signed<T>where
T: Sync,
impl<T> Unpin for Signed<T>where
T: Unpin,
impl<T> UnsafeUnpin for Signed<T>
impl<T> UnwindSafe for Signed<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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