CertificationLevel
: string
in package
FIDO certification level, as recorded in an MDS `statusReports` entry's `FIDO_CERTIFIED*` status. Variant order is significant: `derive(PartialOrd, Ord)` gives `L1 < L1Plus < L2 < L2Plus < L3 < L3Plus`, which `WebauthnAttestationPolicy::evaluate` (D8 step 9) relies on directly for the `min_certification` boundary check (`entry_level >= policy_min`).
An open enum. A value this SDK's copy of the spec does not list decodes to
self::Unknown rather than failing the response it arrived in (CONTRACT.md §27.11 rule 1).
Its own wire spelling is the empty string, which no server value is, so carrying an
unrecognised value back into an update is refused by the server rather than written as a
spelling it never used. A match over these cases needs an Unknown arm.
Table of Contents
Cases
- L1 = 'L1'
- The wire value `L1`.
- L1Plus = 'L1Plus'
- The wire value `L1Plus`.
- L2 = 'L2'
- The wire value `L2`.
- L2Plus = 'L2Plus'
- The wire value `L2Plus`.
- L3 = 'L3'
- The wire value `L3`.
- L3Plus = 'L3Plus'
- The wire value `L3Plus`.
- Unknown = ''
- A value this SDK's copy of the spec does not list; see the type's summary.
Methods
- fromWire() : self
- Parses a wire value into a CertificationLevel, mapping an unrecognised one to {@see self::Unknown}.
Cases
L1
The wire value `L1`.
L1Plus
The wire value `L1Plus`.
L2
The wire value `L2`.
L2Plus
The wire value `L2Plus`.
L3
The wire value `L3`.
L3Plus
The wire value `L3Plus`.
Unknown
A value this SDK's copy of the spec does not list; see the type's summary.
Methods
fromWire()
Parses a wire value into a CertificationLevel, mapping an unrecognised one to {@see self::Unknown}.
public
static fromWire(string $value) : self
Never throws. A parse error here would fail the whole response the value arrived in, so
one unrecognised field of one record would take down the page it was on (§27.11 rule 1).
A match over this enum needs an Unknown arm.
Parameters
- $value : string