Struct paillier::MinimalDecryptionKey[][src]

pub struct MinimalDecryptionKey { /* fields omitted */ }

Private decryption key with no precomputed values.

Used e.g. for serialization of DecryptionKey.

Trait Implementations

impl<'kp> From<&'kp Keypair> for MinimalDecryptionKey
[src]

Performs the conversion.

impl<'e> From<&'e DecryptionKey> for MinimalDecryptionKey
[src]

Performs the conversion.

impl<'e> From<MinimalDecryptionKey> for DecryptionKey
[src]

Performs the conversion.

impl Clone for MinimalDecryptionKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MinimalDecryptionKey
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MinimalDecryptionKey
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations