Struct bluetooth_hci::host::AesParameters[][src]

pub struct AesParameters {
    pub key: EncryptionKey,
    pub plaintext_data: PlaintextBlock,
}

Parameters for the le_encrypt command.

Fields

Key for the encryption of the data given in the command.

The most significant (last) octet of the key corresponds to key[0] using the notation specified in FIPS 197.

Data block that is requested to be encrypted.

The most significant (last) octet of the PlainText_Data corresponds to in[0] using the notation specified in FIPS 197.

Trait Implementations

impl Clone for AesParameters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AesParameters
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations