|
|
@ -9,11 +9,16 @@ if False:
|
|
|
|
|
|
|
|
|
|
|
|
class FIDOApp:
|
|
|
|
class FIDOApp:
|
|
|
|
def __init__(
|
|
|
|
def __init__(
|
|
|
|
self, label: str, icon: Optional[str], use_sign_count: Optional[bool]
|
|
|
|
self,
|
|
|
|
|
|
|
|
label: str,
|
|
|
|
|
|
|
|
icon: Optional[str],
|
|
|
|
|
|
|
|
use_sign_count: Optional[bool],
|
|
|
|
|
|
|
|
use_self_attestation: Optional[bool],
|
|
|
|
) -> None:
|
|
|
|
) -> None:
|
|
|
|
self.label = label
|
|
|
|
self.label = label
|
|
|
|
self.icon = icon
|
|
|
|
self.icon = icon
|
|
|
|
self.use_sign_count = use_sign_count
|
|
|
|
self.use_sign_count = use_sign_count
|
|
|
|
|
|
|
|
self.use_self_attestation = use_self_attestation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# fmt: off
|
|
|
|
# fmt: off
|
|
|
@ -26,6 +31,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Binance",
|
|
|
|
label="Binance",
|
|
|
|
icon="apps/webauthn/res/icon_binance.toif",
|
|
|
|
icon="apps/webauthn/res/icon_binance.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x12\x74\x3b\x92\x12\x97\xb7\x7f\x11\x35\xe4\x1f\xde\xdd\x4a\x84\x6a\xfe\x82\xe1\xf3\x69\x32\xa9\x91\x2f\x3b\x0d\x8d\xfb\x7d\x0e":
|
|
|
|
elif rp_id_hash == b"\x12\x74\x3b\x92\x12\x97\xb7\x7f\x11\x35\xe4\x1f\xde\xdd\x4a\x84\x6a\xfe\x82\xe1\xf3\x69\x32\xa9\x91\x2f\x3b\x0d\x8d\xfb\x7d\x0e":
|
|
|
|
# U2F key for Bitbucket
|
|
|
|
# U2F key for Bitbucket
|
|
|
@ -33,6 +39,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Bitbucket",
|
|
|
|
label="Bitbucket",
|
|
|
|
icon="apps/webauthn/res/icon_bitbucket.toif",
|
|
|
|
icon="apps/webauthn/res/icon_bitbucket.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x30\x2f\xd5\xb4\x49\x2a\x07\xb9\xfe\xbb\x30\xe7\x32\x69\xec\xa5\x01\x20\x5c\xcf\xe0\xc2\x0b\xf7\xb4\x72\xfa\x2d\x31\xe2\x1e\x63":
|
|
|
|
elif rp_id_hash == b"\x30\x2f\xd5\xb4\x49\x2a\x07\xb9\xfe\xbb\x30\xe7\x32\x69\xec\xa5\x01\x20\x5c\xcf\xe0\xc2\x0b\xf7\xb4\x72\xfa\x2d\x31\xe2\x1e\x63":
|
|
|
|
# U2F key for Bitfinex
|
|
|
|
# U2F key for Bitfinex
|
|
|
@ -40,6 +47,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Bitfinex",
|
|
|
|
label="Bitfinex",
|
|
|
|
icon="apps/webauthn/res/icon_bitfinex.toif",
|
|
|
|
icon="apps/webauthn/res/icon_bitfinex.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xa3\x4d\x30\x9f\xfa\x28\xc1\x24\x14\xb8\xba\x6c\x07\xee\x1e\xfa\xe1\xa8\x5e\x8a\x04\x61\x48\x59\xa6\x7c\x04\x93\xb6\x95\x61\x90":
|
|
|
|
elif rp_id_hash == b"\xa3\x4d\x30\x9f\xfa\x28\xc1\x24\x14\xb8\xba\x6c\x07\xee\x1e\xfa\xe1\xa8\x5e\x8a\x04\x61\x48\x59\xa6\x7c\x04\x93\xb6\x95\x61\x90":
|
|
|
|
# U2F key for Bitwarden
|
|
|
|
# U2F key for Bitwarden
|
|
|
@ -47,6 +55,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Bitwarden",
|
|
|
|
label="Bitwarden",
|
|
|
|
icon="apps/webauthn/res/icon_bitwarden.toif",
|
|
|
|
icon="apps/webauthn/res/icon_bitwarden.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x68\x20\x19\x15\xd7\x4c\xb4\x2a\xf5\xb3\xcc\x5c\x95\xb9\x55\x3e\x3e\x3a\x83\xb4\xd2\xa9\x3b\x45\xfb\xad\xaa\x84\x69\xff\x8e\x6e":
|
|
|
|
elif rp_id_hash == b"\x68\x20\x19\x15\xd7\x4c\xb4\x2a\xf5\xb3\xcc\x5c\x95\xb9\x55\x3e\x3e\x3a\x83\xb4\xd2\xa9\x3b\x45\xfb\xad\xaa\x84\x69\xff\x8e\x6e":
|
|
|
|
# U2F key for Dashlane
|
|
|
|
# U2F key for Dashlane
|
|
|
@ -54,6 +63,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Dashlane",
|
|
|
|
label="Dashlane",
|
|
|
|
icon="apps/webauthn/res/icon_dashlane.toif",
|
|
|
|
icon="apps/webauthn/res/icon_dashlane.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xc5\x0f\x8a\x7b\x70\x8e\x92\xf8\x2e\x7a\x50\xe2\xbd\xc5\x5d\x8f\xd9\x1a\x22\xfe\x6b\x29\xc0\xcd\xf7\x80\x55\x30\x84\x2a\xf5\x81":
|
|
|
|
elif rp_id_hash == b"\xc5\x0f\x8a\x7b\x70\x8e\x92\xf8\x2e\x7a\x50\xe2\xbd\xc5\x5d\x8f\xd9\x1a\x22\xfe\x6b\x29\xc0\xcd\xf7\x80\x55\x30\x84\x2a\xf5\x81":
|
|
|
|
# U2F key for Dropbox
|
|
|
|
# U2F key for Dropbox
|
|
|
@ -61,6 +71,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Dropbox",
|
|
|
|
label="Dropbox",
|
|
|
|
icon="apps/webauthn/res/icon_dropbox.toif",
|
|
|
|
icon="apps/webauthn/res/icon_dropbox.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x82\xf4\xa8\xc9\x5f\xec\x94\xb2\x6b\xaf\x9e\x37\x25\x0e\x95\x63\xd9\xa3\x66\xc7\xbe\x26\x1c\xa4\xdd\x01\x01\xf4\xd5\xef\xcb\x83":
|
|
|
|
elif rp_id_hash == b"\x82\xf4\xa8\xc9\x5f\xec\x94\xb2\x6b\xaf\x9e\x37\x25\x0e\x95\x63\xd9\xa3\x66\xc7\xbe\x26\x1c\xa4\xdd\x01\x01\xf4\xd5\xef\xcb\x83":
|
|
|
|
# WebAuthn key for Dropbox
|
|
|
|
# WebAuthn key for Dropbox
|
|
|
@ -68,6 +79,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Dropbox",
|
|
|
|
label="Dropbox",
|
|
|
|
icon="apps/webauthn/res/icon_dropbox.toif",
|
|
|
|
icon="apps/webauthn/res/icon_dropbox.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xf3\xe2\x04\x2f\x94\x60\x7d\xa0\xa9\xc1\xf3\xb9\x5e\x0d\x2f\x2b\xb2\xe0\x69\xc5\xbb\x4f\xa7\x64\xaf\xfa\x64\x7d\x84\x7b\x7e\xd6":
|
|
|
|
elif rp_id_hash == b"\xf3\xe2\x04\x2f\x94\x60\x7d\xa0\xa9\xc1\xf3\xb9\x5e\x0d\x2f\x2b\xb2\xe0\x69\xc5\xbb\x4f\xa7\x64\xaf\xfa\x64\x7d\x84\x7b\x7e\xd6":
|
|
|
|
# U2F key for Duo
|
|
|
|
# U2F key for Duo
|
|
|
@ -75,6 +87,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Duo",
|
|
|
|
label="Duo",
|
|
|
|
icon="apps/webauthn/res/icon_duo.toif",
|
|
|
|
icon="apps/webauthn/res/icon_duo.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x69\x66\xab\xe3\x67\x4e\xa2\xf5\x30\x79\xeb\x71\x01\x97\x84\x8c\x9b\xe6\xf3\x63\x99\x2f\xd0\x29\xe9\x89\x84\x47\xcb\x9f\x00\x84":
|
|
|
|
elif rp_id_hash == b"\x69\x66\xab\xe3\x67\x4e\xa2\xf5\x30\x79\xeb\x71\x01\x97\x84\x8c\x9b\xe6\xf3\x63\x99\x2f\xd0\x29\xe9\x89\x84\x47\xcb\x9f\x00\x84":
|
|
|
|
# U2F key for FastMail
|
|
|
|
# U2F key for FastMail
|
|
|
@ -82,6 +95,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="FastMail",
|
|
|
|
label="FastMail",
|
|
|
|
icon="apps/webauthn/res/icon_fastmail.toif",
|
|
|
|
icon="apps/webauthn/res/icon_fastmail.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x9d\x61\x44\x2f\x5c\xe1\x33\xbd\x46\x54\x4f\xc4\x2f\x0a\x6d\x54\xc0\xde\xb8\x88\x40\xca\xc2\xb6\xae\xfa\x65\x14\xf8\x93\x49\xe9":
|
|
|
|
elif rp_id_hash == b"\x9d\x61\x44\x2f\x5c\xe1\x33\xbd\x46\x54\x4f\xc4\x2f\x0a\x6d\x54\xc0\xde\xb8\x88\x40\xca\xc2\xb6\xae\xfa\x65\x14\xf8\x93\x49\xe9":
|
|
|
|
# U2F key for Fedora
|
|
|
|
# U2F key for Fedora
|
|
|
@ -89,6 +103,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Fedora",
|
|
|
|
label="Fedora",
|
|
|
|
icon="apps/webauthn/res/icon_fedora.toif",
|
|
|
|
icon="apps/webauthn/res/icon_fedora.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xa4\xe2\x2d\xca\xfe\xa7\xe9\x0e\x12\x89\x50\x11\x39\x89\xfc\x45\x97\x8d\xc9\xfb\x87\x76\x75\x60\x51\x6c\x1c\x69\xdf\xdf\xd1\x96":
|
|
|
|
elif rp_id_hash == b"\xa4\xe2\x2d\xca\xfe\xa7\xe9\x0e\x12\x89\x50\x11\x39\x89\xfc\x45\x97\x8d\xc9\xfb\x87\x76\x75\x60\x51\x6c\x1c\x69\xdf\xdf\xd1\x96":
|
|
|
|
# U2F key for Gandi
|
|
|
|
# U2F key for Gandi
|
|
|
@ -96,6 +111,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Gandi",
|
|
|
|
label="Gandi",
|
|
|
|
icon="apps/webauthn/res/icon_gandi.toif",
|
|
|
|
icon="apps/webauthn/res/icon_gandi.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x54\xce\x65\x1e\xd7\x15\xb4\xaa\xa7\x55\xee\xce\xbd\x4e\xa0\x95\x08\x15\xb3\x34\xbd\x07\xd1\x09\x89\x3e\x96\x30\x18\xcd\xdb\xd9":
|
|
|
|
elif rp_id_hash == b"\x54\xce\x65\x1e\xd7\x15\xb4\xaa\xa7\x55\xee\xce\xbd\x4e\xa0\x95\x08\x15\xb3\x34\xbd\x07\xd1\x09\x89\x3e\x96\x30\x18\xcd\xdb\xd9":
|
|
|
|
# WebAuthn key for Gandi
|
|
|
|
# WebAuthn key for Gandi
|
|
|
@ -103,6 +119,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Gandi",
|
|
|
|
label="Gandi",
|
|
|
|
icon="apps/webauthn/res/icon_gandi.toif",
|
|
|
|
icon="apps/webauthn/res/icon_gandi.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x70\x61\x7d\xfe\xd0\x65\x86\x3a\xf4\x7c\x15\x55\x6c\x91\x79\x88\x80\x82\x8c\xc4\x07\xfd\xf7\x0a\xe8\x50\x11\x56\x94\x65\xa0\x75":
|
|
|
|
elif rp_id_hash == b"\x70\x61\x7d\xfe\xd0\x65\x86\x3a\xf4\x7c\x15\x55\x6c\x91\x79\x88\x80\x82\x8c\xc4\x07\xfd\xf7\x0a\xe8\x50\x11\x56\x94\x65\xa0\x75":
|
|
|
|
# U2F key for GitHub
|
|
|
|
# U2F key for GitHub
|
|
|
@ -110,6 +127,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="GitHub",
|
|
|
|
label="GitHub",
|
|
|
|
icon="apps/webauthn/res/icon_github.toif",
|
|
|
|
icon="apps/webauthn/res/icon_github.toif",
|
|
|
|
use_sign_count=True,
|
|
|
|
use_sign_count=True,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x3a\xeb\x00\x24\x60\x38\x1c\x6f\x25\x8e\x83\x95\xd3\x02\x6f\x57\x1f\x0d\x9a\x76\x48\x8d\xcd\x83\x76\x39\xb1\x3a\xed\x31\x65\x60":
|
|
|
|
elif rp_id_hash == b"\x3a\xeb\x00\x24\x60\x38\x1c\x6f\x25\x8e\x83\x95\xd3\x02\x6f\x57\x1f\x0d\x9a\x76\x48\x8d\xcd\x83\x76\x39\xb1\x3a\xed\x31\x65\x60":
|
|
|
|
# WebAuthn key for GitHub
|
|
|
|
# WebAuthn key for GitHub
|
|
|
@ -117,6 +135,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="GitHub",
|
|
|
|
label="GitHub",
|
|
|
|
icon="apps/webauthn/res/icon_github.toif",
|
|
|
|
icon="apps/webauthn/res/icon_github.toif",
|
|
|
|
use_sign_count=True,
|
|
|
|
use_sign_count=True,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xe7\xbe\x96\xa5\x1b\xd0\x19\x2a\x72\x84\x0d\x2e\x59\x09\xf7\x2b\xa8\x2a\x2f\xe9\x3f\xaa\x62\x4f\x03\x39\x6b\x30\xe4\x94\xc8\x04":
|
|
|
|
elif rp_id_hash == b"\xe7\xbe\x96\xa5\x1b\xd0\x19\x2a\x72\x84\x0d\x2e\x59\x09\xf7\x2b\xa8\x2a\x2f\xe9\x3f\xaa\x62\x4f\x03\x39\x6b\x30\xe4\x94\xc8\x04":
|
|
|
|
# U2F key for GitLab
|
|
|
|
# U2F key for GitLab
|
|
|
@ -124,6 +143,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="GitLab",
|
|
|
|
label="GitLab",
|
|
|
|
icon="apps/webauthn/res/icon_gitlab.toif",
|
|
|
|
icon="apps/webauthn/res/icon_gitlab.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xa5\x46\x72\xb2\x22\xc4\xcf\x95\xe1\x51\xed\x8d\x4d\x3c\x76\x7a\x6c\xc3\x49\x43\x59\x43\x79\x4e\x88\x4f\x3d\x02\x3a\x82\x29\xfd":
|
|
|
|
elif rp_id_hash == b"\xa5\x46\x72\xb2\x22\xc4\xcf\x95\xe1\x51\xed\x8d\x4d\x3c\x76\x7a\x6c\xc3\x49\x43\x59\x43\x79\x4e\x88\x4f\x3d\x02\x3a\x82\x29\xfd":
|
|
|
|
# U2F key for Google
|
|
|
|
# U2F key for Google
|
|
|
@ -131,6 +151,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Google",
|
|
|
|
label="Google",
|
|
|
|
icon="apps/webauthn/res/icon_google.toif",
|
|
|
|
icon="apps/webauthn/res/icon_google.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xd4\xc9\xd9\x02\x73\x26\x27\x1a\x89\xce\x51\xfc\xaf\x32\x8e\xd6\x73\xf1\x7b\xe3\x34\x69\xff\x97\x9e\x8a\xb8\xdd\x50\x1e\x66\x4f":
|
|
|
|
elif rp_id_hash == b"\xd4\xc9\xd9\x02\x73\x26\x27\x1a\x89\xce\x51\xfc\xaf\x32\x8e\xd6\x73\xf1\x7b\xe3\x34\x69\xff\x97\x9e\x8a\xb8\xdd\x50\x1e\x66\x4f":
|
|
|
|
# WebAuthn key for Google
|
|
|
|
# WebAuthn key for Google
|
|
|
@ -138,6 +159,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Google",
|
|
|
|
label="Google",
|
|
|
|
icon="apps/webauthn/res/icon_google.toif",
|
|
|
|
icon="apps/webauthn/res/icon_google.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x53\xa1\x5b\xa4\x2a\x7c\x03\x25\xb8\xdb\xee\x28\x96\x34\xa4\x8f\x58\xae\xa3\x24\x66\x45\xd5\xff\x41\x8f\x9b\xb8\x81\x98\x85\xa9":
|
|
|
|
elif rp_id_hash == b"\x53\xa1\x5b\xa4\x2a\x7c\x03\x25\xb8\xdb\xee\x28\x96\x34\xa4\x8f\x58\xae\xa3\x24\x66\x45\xd5\xff\x41\x8f\x9b\xb8\x81\x98\x85\xa9":
|
|
|
|
# U2F key for Keeper
|
|
|
|
# U2F key for Keeper
|
|
|
@ -145,6 +167,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Keeper",
|
|
|
|
label="Keeper",
|
|
|
|
icon="apps/webauthn/res/icon_keeper.toif",
|
|
|
|
icon="apps/webauthn/res/icon_keeper.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xd6\x5f\x00\x5e\xf4\xde\xa9\x32\x0c\x99\x73\x05\x3c\x95\xff\x60\x20\x11\x5d\x5f\xec\x1b\x7f\xee\x41\xa5\x78\xe1\x8d\xf9\xca\x8c":
|
|
|
|
elif rp_id_hash == b"\xd6\x5f\x00\x5e\xf4\xde\xa9\x32\x0c\x99\x73\x05\x3c\x95\xff\x60\x20\x11\x5d\x5f\xec\x1b\x7f\xee\x41\xa5\x78\xe1\x8d\xf9\xca\x8c":
|
|
|
|
# U2F key for Keeper
|
|
|
|
# U2F key for Keeper
|
|
|
@ -152,6 +175,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Keeper",
|
|
|
|
label="Keeper",
|
|
|
|
icon="apps/webauthn/res/icon_keeper.toif",
|
|
|
|
icon="apps/webauthn/res/icon_keeper.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xf8\x3f\xc3\xa1\xb2\x89\xa0\xde\xc5\xc1\xc8\xaa\x07\xe9\xb5\xdd\x9c\xbb\x76\xf6\xb2\xf5\x60\x60\x17\x66\x72\x68\xe5\xb9\xc4\x5e":
|
|
|
|
elif rp_id_hash == b"\xf8\x3f\xc3\xa1\xb2\x89\xa0\xde\xc5\xc1\xc8\xaa\x07\xe9\xb5\xdd\x9c\xbb\x76\xf6\xb2\xf5\x60\x60\x17\x66\x72\x68\xe5\xb9\xc4\x5e":
|
|
|
|
# WebAuthn key for login.gov
|
|
|
|
# WebAuthn key for login.gov
|
|
|
@ -159,6 +183,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="login.gov",
|
|
|
|
label="login.gov",
|
|
|
|
icon="apps/webauthn/res/icon_login.gov.toif",
|
|
|
|
icon="apps/webauthn/res/icon_login.gov.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x35\x6c\x9e\xd4\xa0\x93\x21\xb9\x69\x5f\x1e\xaf\x91\x82\x03\xf1\xb5\x5f\x68\x9d\xa6\x1f\xbc\x96\x18\x4c\x15\x7d\xda\x68\x0c\x81":
|
|
|
|
elif rp_id_hash == b"\x35\x6c\x9e\xd4\xa0\x93\x21\xb9\x69\x5f\x1e\xaf\x91\x82\x03\xf1\xb5\x5f\x68\x9d\xa6\x1f\xbc\x96\x18\x4c\x15\x7d\xda\x68\x0c\x81":
|
|
|
|
# WebAuthn key for Microsoft
|
|
|
|
# WebAuthn key for Microsoft
|
|
|
@ -166,6 +191,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Microsoft",
|
|
|
|
label="Microsoft",
|
|
|
|
icon="apps/webauthn/res/icon_microsoft.toif",
|
|
|
|
icon="apps/webauthn/res/icon_microsoft.toif",
|
|
|
|
use_sign_count=False,
|
|
|
|
use_sign_count=False,
|
|
|
|
|
|
|
|
use_self_attestation=False,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xab\x2d\xaf\x07\x43\xde\x78\x2a\x70\x18\x9a\x0f\x5e\xfc\x30\x90\x2f\x92\x5b\x9f\x9a\x18\xc5\xd7\x14\x1b\x7b\x12\xf8\xa0\x10\x0c":
|
|
|
|
elif rp_id_hash == b"\xab\x2d\xaf\x07\x43\xde\x78\x2a\x70\x18\x9a\x0f\x5e\xfc\x30\x90\x2f\x92\x5b\x9f\x9a\x18\xc5\xd7\x14\x1b\x7b\x12\xf8\xa0\x10\x0c":
|
|
|
|
# WebAuthn key for mojeID
|
|
|
|
# WebAuthn key for mojeID
|
|
|
@ -173,6 +199,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="mojeID",
|
|
|
|
label="mojeID",
|
|
|
|
icon="apps/webauthn/res/icon_mojeid.toif",
|
|
|
|
icon="apps/webauthn/res/icon_mojeid.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x08\xb2\xa3\xd4\x19\x39\xaa\x31\x66\x84\x93\xcb\x36\xcd\xcc\x4f\x16\xc4\xd9\xb4\xc8\x23\x8b\x73\xc2\xf6\x72\xc0\x33\x00\x71\x97":
|
|
|
|
elif rp_id_hash == b"\x08\xb2\xa3\xd4\x19\x39\xaa\x31\x66\x84\x93\xcb\x36\xcd\xcc\x4f\x16\xc4\xd9\xb4\xc8\x23\x8b\x73\xc2\xf6\x72\xc0\x33\x00\x71\x97":
|
|
|
|
# U2F key for Slush Pool
|
|
|
|
# U2F key for Slush Pool
|
|
|
@ -180,6 +207,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Slush Pool",
|
|
|
|
label="Slush Pool",
|
|
|
|
icon="apps/webauthn/res/icon_slushpool.toif",
|
|
|
|
icon="apps/webauthn/res/icon_slushpool.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x38\x80\x4f\x2e\xff\x74\xf2\x28\xb7\x41\x51\xc2\x01\xaa\x82\xe7\xe8\xee\xfc\xac\xfe\xcf\x23\xfa\x14\x6b\x13\xa3\x76\x66\x31\x4f":
|
|
|
|
elif rp_id_hash == b"\x38\x80\x4f\x2e\xff\x74\xf2\x28\xb7\x41\x51\xc2\x01\xaa\x82\xe7\xe8\xee\xfc\xac\xfe\xcf\x23\xfa\x14\x6b\x13\xa3\x76\x66\x31\x4f":
|
|
|
|
# U2F key for Slush Pool
|
|
|
|
# U2F key for Slush Pool
|
|
|
@ -187,6 +215,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Slush Pool",
|
|
|
|
label="Slush Pool",
|
|
|
|
icon="apps/webauthn/res/icon_slushpool.toif",
|
|
|
|
icon="apps/webauthn/res/icon_slushpool.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x2a\xc6\xad\x09\xa6\xd0\x77\x2c\x44\xda\x73\xa6\x07\x2f\x9d\x24\x0f\xc6\x85\x4a\x70\xd7\x9c\x10\x24\xff\x7c\x75\x59\x59\x32\x92":
|
|
|
|
elif rp_id_hash == b"\x2a\xc6\xad\x09\xa6\xd0\x77\x2c\x44\xda\x73\xa6\x07\x2f\x9d\x24\x0f\xc6\x85\x4a\x70\xd7\x9c\x10\x24\xff\x7c\x75\x59\x59\x32\x92":
|
|
|
|
# U2F key for Stripe
|
|
|
|
# U2F key for Stripe
|
|
|
@ -194,6 +223,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="Stripe",
|
|
|
|
label="Stripe",
|
|
|
|
icon="apps/webauthn/res/icon_stripe.toif",
|
|
|
|
icon="apps/webauthn/res/icon_stripe.toif",
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x1b\x3c\x16\xdd\x2f\x7c\x46\xe2\xb4\xc2\x89\xdc\x16\x74\x6b\xcc\x60\xdf\xcf\x0f\xb8\x18\xe1\x32\x15\x52\x6e\x14\x08\xe7\xf4\x68":
|
|
|
|
elif rp_id_hash == b"\x1b\x3c\x16\xdd\x2f\x7c\x46\xe2\xb4\xc2\x89\xdc\x16\x74\x6b\xcc\x60\xdf\xcf\x0f\xb8\x18\xe1\x32\x15\x52\x6e\x14\x08\xe7\xf4\x68":
|
|
|
|
# U2F key for u2f.bin.coffee
|
|
|
|
# U2F key for u2f.bin.coffee
|
|
|
@ -201,6 +231,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="u2f.bin.coffee",
|
|
|
|
label="u2f.bin.coffee",
|
|
|
|
icon=None,
|
|
|
|
icon=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xa6\x42\xd2\x1b\x7c\x6d\x55\xe1\xce\x23\xc5\x39\x98\x28\xd2\xc7\x49\xbf\x6a\x6e\xf2\xfe\x03\xcc\x9e\x10\xcd\xf4\xed\x53\x08\x8b":
|
|
|
|
elif rp_id_hash == b"\xa6\x42\xd2\x1b\x7c\x6d\x55\xe1\xce\x23\xc5\x39\x98\x28\xd2\xc7\x49\xbf\x6a\x6e\xf2\xfe\x03\xcc\x9e\x10\xcd\xf4\xed\x53\x08\x8b":
|
|
|
|
# WebAuthn key for webauthn.bin.coffee
|
|
|
|
# WebAuthn key for webauthn.bin.coffee
|
|
|
@ -208,6 +239,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="webauthn.bin.coffee",
|
|
|
|
label="webauthn.bin.coffee",
|
|
|
|
icon=None,
|
|
|
|
icon=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\x74\xa6\xea\x92\x13\xc9\x9c\x2f\x74\xb2\x24\x92\xb3\x20\xcf\x40\x26\x2a\x94\xc1\xa9\x50\xa0\x39\x7f\x29\x25\x0b\x60\x84\x1e\xf0":
|
|
|
|
elif rp_id_hash == b"\x74\xa6\xea\x92\x13\xc9\x9c\x2f\x74\xb2\x24\x92\xb3\x20\xcf\x40\x26\x2a\x94\xc1\xa9\x50\xa0\x39\x7f\x29\x25\x0b\x60\x84\x1e\xf0":
|
|
|
|
# WebAuthn key for WebAuthn.io
|
|
|
|
# WebAuthn key for WebAuthn.io
|
|
|
@ -215,6 +247,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="WebAuthn.io",
|
|
|
|
label="WebAuthn.io",
|
|
|
|
icon=None,
|
|
|
|
icon=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xf9\x5b\xc7\x38\x28\xee\x21\x0f\x9f\xd3\xbb\xe7\x2d\x97\x90\x80\x13\xb0\xa3\x75\x9e\x9a\xea\x3d\x0a\xe3\x18\x76\x6c\xd2\xe1\xad":
|
|
|
|
elif rp_id_hash == b"\xf9\x5b\xc7\x38\x28\xee\x21\x0f\x9f\xd3\xbb\xe7\x2d\x97\x90\x80\x13\xb0\xa3\x75\x9e\x9a\xea\x3d\x0a\xe3\x18\x76\x6c\xd2\xe1\xad":
|
|
|
|
# WebAuthn key for WebAuthn.me
|
|
|
|
# WebAuthn key for WebAuthn.me
|
|
|
@ -222,6 +255,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="WebAuthn.me",
|
|
|
|
label="WebAuthn.me",
|
|
|
|
icon=None,
|
|
|
|
icon=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
elif rp_id_hash == b"\xc4\x6c\xef\x82\xad\x1b\x54\x64\x77\x59\x1d\x00\x8b\x08\x75\x9e\xc3\xe6\xd2\xec\xb4\xf3\x94\x74\xbf\xea\x69\x69\x92\x5d\x03\xb7":
|
|
|
|
elif rp_id_hash == b"\xc4\x6c\xef\x82\xad\x1b\x54\x64\x77\x59\x1d\x00\x8b\x08\x75\x9e\xc3\xe6\xd2\xec\xb4\xf3\x94\x74\xbf\xea\x69\x69\x92\x5d\x03\xb7":
|
|
|
|
# WebAuthn key for demo.yubico.com
|
|
|
|
# WebAuthn key for demo.yubico.com
|
|
|
@ -229,6 +263,7 @@ def by_rp_id_hash(rp_id_hash: bytes) -> Optional[FIDOApp]:
|
|
|
|
label="demo.yubico.com",
|
|
|
|
label="demo.yubico.com",
|
|
|
|
icon=None,
|
|
|
|
icon=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
use_sign_count=None,
|
|
|
|
|
|
|
|
use_self_attestation=None,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
return None
|
|
|
|