Enum rust_cryptoauthlib::WriteConfig[][src]

pub enum WriteConfig {
    Rfu,
    Always,
    PubInvalid,
    Never,
    Encrypt,
}
Expand description

Detailed ATECC key slot write configuration

Variants

Rfu
Always

Clear text writes are always permitted on this slot. Slots set to always should never be used as key storage. Either 4 or 32 bytes may be written to this slot.

PubInvalid

If a validated public key is stored in the slot, writes are prohibited. Use Verify(Invalidate) to invalidate prior to writing. Do not use this mode unless slot contains a public key.

Never

Writes are never permitted on this slot using the Write command. Slots set to never can still be used as key storage.

Encrypt

Writes to this slot require a properly computed MAC, and the input data must be encrypted by the system with WriteKey using the encryption algorithm documented in the Write command description. 4-byte writes to this slot are prohibited.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.