pub unsafe trait KeyBlob: Sized {
    const VALID_MAGIC: &'static [ULONG];

    // Provided method
    fn is_magic_valid(magic: ULONG) -> bool { ... }
}
Expand description

Marker trait for values containing CNG key blob types.

Required Associated Constants§

source

const VALID_MAGIC: &'static [ULONG]

Provided Methods§

Implementors§