Struct nucypher_core::ReencryptionRequest
source · [−]pub struct ReencryptionRequest {
pub capsules: Box<[Capsule]>,
pub hrac: HRAC,
pub encrypted_kfrag: EncryptedKeyFrag,
pub publisher_verifying_key: PublicKey,
pub bob_verifying_key: PublicKey,
}Expand description
A request for an Ursula to reencrypt for several capsules.
Fields
capsules: Box<[Capsule]>Capsules to re-encrypt.
hrac: HRACPolicy HRAC.
encrypted_kfrag: EncryptedKeyFragKey frag encrypted for the Ursula.
publisher_verifying_key: PublicKeyPublisher’s verifying key.
bob_verifying_key: PublicKeyRecipient’s (Bob’s) verifying key.
Implementations
Trait Implementations
sourceimpl Debug for ReencryptionRequest
impl Debug for ReencryptionRequest
sourceimpl<'de> Deserialize<'de> for ReencryptionRequest
impl<'de> Deserialize<'de> for ReencryptionRequest
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ReencryptionRequest> for ReencryptionRequest
impl PartialEq<ReencryptionRequest> for ReencryptionRequest
sourcefn eq(&self, other: &ReencryptionRequest) -> bool
fn eq(&self, other: &ReencryptionRequest) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ReencryptionRequest) -> bool
fn ne(&self, other: &ReencryptionRequest) -> bool
This method tests for !=.
sourceimpl<'a> ProtocolObject<'a> for ReencryptionRequest
impl<'a> ProtocolObject<'a> for ReencryptionRequest
sourceimpl Serialize for ReencryptionRequest
impl Serialize for ReencryptionRequest
impl StructuralPartialEq for ReencryptionRequest
Auto Trait Implementations
impl RefUnwindSafe for ReencryptionRequest
impl Send for ReencryptionRequest
impl Sync for ReencryptionRequest
impl Unpin for ReencryptionRequest
impl UnwindSafe for ReencryptionRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more