1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

core/webauthn: increase limit for resident credentials to 100

This commit is contained in:
Pavol Rusnak 2019-10-31 14:27:23 +00:00
parent 7016391893
commit 39a532c8b1
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -7,7 +7,7 @@ if False:
from typing import List, Optional
_RESIDENT_CREDENTIAL_START_KEY = const(1)
_MAX_RESIDENT_CREDENTIALS = const(16)
_MAX_RESIDENT_CREDENTIALS = const(100)
def get_resident_credentials(rp_id_hash: Optional[bytes] = None) -> List[Credential]: