diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-23 16:20:56 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-23 16:20:56 -0700 |
commit | d9eb45d54f99bf2d42220c79339dec28a9a8cdb0 (patch) | |
tree | 3b39351051902ab93194d3bda9f39e3fb4acc7d4 | |
parent | e5be7a03eb3b9eddee2ff5f348702dbfaa042932 (diff) |
Add supported attestation formats to server
-rw-r--r-- | packages/server/README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/server/README.md b/packages/server/README.md index 429ad24..b523f43 100644 --- a/packages/server/README.md +++ b/packages/server/README.md @@ -6,6 +6,7 @@ - [Installation](#installation) - [Usage - Coming Soon](#usage---coming-soon) +- [Supported Attestation Formats](#supported-attestation-formats) ## Installation @@ -28,3 +29,17 @@ const WebAuthntineServer = require('@webauthntine/server'); ## Usage - Coming Soon Check out [src/index.ts](./src/index.ts) for now until this section gets updated. + +## Supported Attestation Formats + +WebAuthntine can verify the following attestation formats: + +- `fido-u2f` +- `packed` + - Supported Certificates + - `X5C` + - `COSE - EC2` + - `COSE - RSA` (code is present but needs further testing) + - `COSE - OKP` (code is present but needs further testing) +- `android-safetynet` +- `none` |