[]Struct recrypt::api::PublicKey

pub struct PublicKey { /* fields omitted */ }

Methods

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 Hashable for PublicKey

impl Copy for PublicKey

impl Clone for PublicKey

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<PublicKey> for PublicKey

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Debug for PublicKey

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self