Small package mapping AAGUIDs (Authenticator Attestation Global Unique Identifier, an identifier for FIDO2 security keys) to their respective metadata from the FIDO's Metadata Service (MDS).
package main
import (
"fmt"
"github.com/sumup/aaguids-go"
)
func main() {
metadata, _ := aaguid.GetMetadata("fbfc3007-154e-4ecc-8c0b-6e020557d7bd")
fmt.Println(metadata.Name)
}
The data are obtained from FIDO Metadata Service.
The FIDO Authenticator Metadata Specification defines so-called "Authenticator Metadata" statements. The metadata statements contains the "Trust Anchor" required to validate the attestation object, and they also describe several other important characteristics of the authenticator. The metadata service described in this document defines a baseline method for relying parties to access the latest metadata statements.
An AAGUID (Authenticator Attestation Global Unique Identifier) is an identifier for FIDO2 security keys.
- Determine the passkey provider with AAGUID guide by Google