Struct bluetooth_hci::host::EncryptionParameters[][src]

pub struct EncryptionParameters {
    pub conn_handle: ConnectionHandle,
    pub random_number: u64,
    pub encrypted_diversifier: u16,
    pub long_term_key: EncryptionKey,
}

Parameters for the le_start_encryption command.

Fields

ID for the connection.

Random value distrubuted by the peripheral during pairing

Encrypted diversifier distrubuted by the peripheral during pairing

Encryption key, distributed by the host.

Auto Trait Implementations