pub struct ClientLoginFinishResult<CS: CipherSuite> {
pub message: CredentialFinalization<CS>,
pub session_key: Output<<CS::KeyExchange as KeyExchange>::Hash>,
pub export_key: Output<<CS::OprfCs as CipherSuite>::Hash>,
pub server_s_pk: PublicKey<<CS::KeyExchange as KeyExchange>::Group>,
}Expand description
Contains the fields that are returned by a client login finish
Fields§
§message: CredentialFinalization<CS>The message to send to the server to complete the protocol
session_key: Output<<CS::KeyExchange as KeyExchange>::Hash>The session key
export_key: Output<<CS::OprfCs as CipherSuite>::Hash>The client-side export key
server_s_pk: PublicKey<<CS::KeyExchange as KeyExchange>::Group>The server’s static public key
Trait Implementations§
Source§impl<CS: CipherSuite> Clone for ClientLoginFinishResult<CS>
impl<CS: CipherSuite> Clone for ClientLoginFinishResult<CS>
Auto Trait Implementations§
impl<CS> Freeze for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: Freeze,
<<<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: Freeze,
<<<<<CS as CipherSuite>::OprfCs as CipherSuite>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: Freeze,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: Freeze,
impl<CS> RefUnwindSafe for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: RefUnwindSafe,
<<<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: RefUnwindSafe,
<<<<<CS as CipherSuite>::OprfCs as CipherSuite>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: RefUnwindSafe,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: RefUnwindSafe,
impl<CS> Send for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: Send,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: Send,
impl<CS> Sync for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: Sync,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: Sync,
impl<CS> Unpin for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: Unpin,
<<<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: Unpin,
<<<<<CS as CipherSuite>::OprfCs as CipherSuite>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: Unpin,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: Unpin,
impl<CS> UnsafeUnpin for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: UnsafeUnpin,
<<<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: UnsafeUnpin,
<<<<<CS as CipherSuite>::OprfCs as CipherSuite>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: UnsafeUnpin,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: UnsafeUnpin,
impl<CS> UnwindSafe for ClientLoginFinishResult<CS>where
<<CS as CipherSuite>::KeyExchange as KeyExchange>::KE3Message: UnwindSafe,
<<<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: UnwindSafe,
<<<<<CS as CipherSuite>::OprfCs as CipherSuite>::Hash as CoreProxy>::Core as OutputSizeUser>::OutputSize as ArraySize>::ArrayType<u8>: UnwindSafe,
<<<CS as CipherSuite>::KeyExchange as KeyExchange>::Group as Group>::Pk: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more