0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Auth0のWebAuthn登録時の公開鍵クレデンシャル生成オプション

Posted at

Auth0にBeta版だけどWebAuthnがきていたので少しだけ動かしてみた。
とりあえずPublicKeyCredentialCreationOptionsを見てみたのでメモ

{
  "publicKey": {
    "challenge": "OEOI7G_mIg8XXptQkIzVlA3CW6YmUckLLkOX5LhCt6k",
    "rp": { "name": "morikawa" },
    "user": {
      "id": "auth0|5f759a4b44d2020069567094",
      "name": "xxxxxxxx@gmail.com",
      "displayName": "xxxxxxxx"
    },
    "pubKeyCredParams": [
      { "alg": -7, "type": "public-key" },
      { "alg": -257, "type": "public-key" }
    ],
    "authenticatorSelection": {
      "userVerification": "discouraged",
      "authenticatorAttachment": "cross-platform"
    },
    "timeout": 60000,
    "attestation": "none",
    "excludeCredentials": []
  }
}

Configure WebAuthn with Security Keys for MFA


Auth0 will support platform authenticators in the future.

公式サイトのこの記述は、authenticatorAttachmentcross-platformになっている、ってだけなのかな。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?