https://github.com/sumup/aaguids-go
Small package mapping AAGUID (security key identifiers) to their respective metadata from the FIDO's Metadata Service (MDS).
https://github.com/sumup/aaguids-go
passkeys security-key
Last synced: about 1 year ago
JSON representation
Small package mapping AAGUID (security key identifiers) to their respective metadata from the FIDO's Metadata Service (MDS).
- Host: GitHub
- URL: https://github.com/sumup/aaguids-go
- Owner: sumup
- License: apache-2.0
- Created: 2024-04-22T08:47:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-10T11:04:32.000Z (about 1 year ago)
- Last Synced: 2025-04-10T12:47:03.210Z (about 1 year ago)
- Topics: passkeys, security-key
- Language: Go
- Homepage:
- Size: 1.51 MB
- Stars: 4
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# AAGUIDS
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)](https://fidoalliance.org/metadata/).
```go
package main
import (
"fmt"
"github.com/sumup/aaguids-go"
)
func main() {
metadata, _ := aaguid.GetMetadata("fbfc3007-154e-4ecc-8c0b-6e020557d7bd")
fmt.Println(metadata.Name)
}
```
## Contributing
The data are obtained from [FIDO Metadata Service](https://fidoalliance.org/specs/mds/fido-metadata-service-v3.0-ps-20210518.html).
> 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.
## Glossary
An **AAGUID** (Authenticator Attestation Global Unique Identifier) is an identifier for FIDO2 security keys.
## Resources
- [Determine the passkey provider with AAGUID](https://web.dev/articles/webauthn-aaguid) guide by Google