fix: client data hash

This commit is contained in:
J-Jamet
2025-08-20 09:13:28 +02:00
parent c7a256ebf1
commit a9e8de26f8

View File

@@ -251,7 +251,10 @@ class PasskeyProviderService : CredentialProviderService() {
val accountName = mDatabase?.name ?: getString(R.string.passkey_locked_database_username)
val createEntries: MutableList<CreateEntry> = mutableListOf()
val relyingPartyId = PublicKeyCredentialCreationOptions(request.requestJson).relyingPartyEntity.id
val relyingPartyId = PublicKeyCredentialCreationOptions(
requestJson = request.requestJson,
clientDataHash = request.clientDataHash
).relyingPartyEntity.id
val searchInfo = SearchInfo().apply {
relyingParty = relyingPartyId
}