[]Struct recrypt::api::PublicKey

pub struct PublicKey { /* fields omitted */ }

Implementations

impl PublicKey

pub const ENCODED_SIZE_BYTES: usize

pub fn new(
    (x_bytes, y_bytes): ([u8; 32], [u8; 32])
) -> Result<PublicKey, RecryptErr>

pub fn new_from_slice(bytes: (&[u8], &[u8])) -> Result<Self, RecryptErr>

pub fn bytes_x_y(&self) -> (&[u8; 32], &[u8; 32])

pub fn augment(&self, other: &PublicKey) -> Result<PublicKey, RecryptErr>

Augment the PublicKey so that messages encrypted to that key cannot be decrypted by this PublicKey's PrivateKey. This can be useful if you want to force delegation via transform. See TransformKey.augment. Note that by augmenting a PublicKey you're committing to augmenting all TransformKeys that are created from this keypair. Otherwise the transformed data will not be able to be correctly decrypted.

Trait Implementations

impl Clone for PublicKey

impl Copy for PublicKey

impl Debug for PublicKey

impl Eq for PublicKey

impl Hash for PublicKey

impl Hashable for PublicKey

impl PartialEq<PublicKey> for PublicKey

Auto Trait Implementations

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>,