[][src]Struct picky::jose::jwe::Jwe

pub struct Jwe {
    pub header: JweHeader,
    pub payload: Vec<u8>,
}

Provides an API to encrypt any kind of data (binary). JSON claims are part of Jwt only.

Fields

header: JweHeaderpayload: Vec<u8>

Implementations

impl Jwe[src]

pub fn new(alg: JweAlg, enc: JweEnc, payload: Vec<u8>) -> Self[src]

pub fn encode(self, asymmetric_key: &PublicKey) -> Result<String, JweError>[src]

Encode with CEK encrypted and included in the token using asymmetric cryptography.

pub fn encode_direct(self, cek: &[u8]) -> Result<String, JweError>[src]

Encode with provided CEK (a symmetric key). This will ignore alg value and override it with "dir".

pub fn decode(encoded_token: &str, key: &PrivateKey) -> Result<Jwe, JweError>[src]

Encode with CEK encrypted and included in the token using asymmetric cryptography.

pub fn decode_direct(encoded_token: &str, cek: &[u8]) -> Result<Jwe, JweError>[src]

Decode with provided CEK (a symmetric key).

Trait Implementations

impl Clone for Jwe[src]

impl Debug for Jwe[src]

Auto Trait Implementations

impl RefUnwindSafe for Jwe

impl Send for Jwe

impl Sync for Jwe

impl Unpin for Jwe

impl UnwindSafe for Jwe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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