pub struct KeyId(/* private fields */);Expand description
A 16 byte key identifier — 証明者鍵ID, 被証明者鍵ID, and the references the 券面 applications’ basic information files carry.
"6000024" 08 05 "001" 00 00 00 00
^^^^^^^ number ^^^ group ^^^^^^^^^^^ padding, whose last byte is not always zeroIt names a key, not an issuer: the same organisation appears under several of these. The
leading digit separates hierarchies — production identifiers begin 5, the JPKI test
hierarchy’s begin 6.
Comparison and lookup use all 16 bytes, so a certificate from one hierarchy never resolves to the other’s key by accident.
Implementations§
Trait Implementations§
impl Copy for KeyId
impl Eq for KeyId
Source§impl Ord for KeyId
impl Ord for KeyId
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for KeyId
impl PartialOrd for KeyId
impl StructuralPartialEq for KeyId
Auto Trait Implementations§
impl Freeze for KeyId
impl RefUnwindSafe for KeyId
impl Send for KeyId
impl Sync for KeyId
impl Unpin for KeyId
impl UnsafeUnpin for KeyId
impl UnwindSafe for KeyId
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