[][src]Struct safe_core::crypto::shared_box::SecretKey

pub struct SecretKey(_);

Shared secret encryption key.

Methods

impl SecretKey[src]

pub fn new(inner: BlsSecretKey) -> Self[src]

Create new safe-to-share key from the given regular key.

pub fn from_raw(data: &[u8]) -> Result<Self, CoreError>[src]

Create new key from the given raw key data.

Methods from Deref<Target = SecretKey>

pub fn public_key(&self) -> PublicKey[src]

Returns the matching public key.

pub fn sign_g2<H>(&self, hash: H) -> Signature where
    H: Into<G2Affine>, 
[src]

Signs the given element of G2.

pub fn sign<M>(&self, msg: M) -> Signature where
    M: AsRef<[u8]>, 
[src]

Signs the given message.

This is equivalent to sign_g2(hash_g2(msg)).

pub fn decrypt(&self, ct: &Ciphertext) -> Option<Vec<u8>>[src]

Returns the decrypted text, or None, if the ciphertext isn't valid.

pub fn reveal(&self) -> String[src]

Generates a non-redacted debug string. This method differs from the Debug implementation in that it does leak the secret prime field element.

Trait Implementations

impl Clone for SecretKey[src]

impl Debug for SecretKey[src]

impl Deref for SecretKey[src]

type Target = SecretKey

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for SecretKey[src]

impl Eq for SecretKey[src]

impl PartialEq<SecretKey> for SecretKey[src]

impl Serialize for SecretKey[src]

impl StructuralEq for SecretKey[src]

impl StructuralPartialEq for SecretKey[src]

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> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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<T> UnsafeAny for T where
    T: Any

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