Home
last modified time | relevance | path

Searched refs:pubKeyCredParams (Results 1 – 3 of 3) sorted by relevance

/credentials/credentials/src/androidTest/java/androidx/credentials/webauthn/
DPublicKeyCredentialCreationOptionsTest.kt64 assertThat(options.pubKeyCredParams.get(0).type).isEqualTo("pubkey type") in constructor()
65 assertThat(options.pubKeyCredParams.get(0).alg).isEqualTo(10) in constructor()
102 assertThat(options.pubKeyCredParams.get(0).type).isEqualTo("pubkey type") in constructor_withoutAttestation()
103 assertThat(options.pubKeyCredParams.get(0).alg).isEqualTo(10) in constructor_withoutAttestation()
/credentials/credentials/src/main/java/androidx/credentials/webauthn/
DPublicKeyCredentialCreationOptions.kt30 val pubKeyCredParams: List<PublicKeyCredentialParameters> constant
59 pubKeyCredParams = pubKeyCredParamsTmp.toList()
70 Log.i("WebAuthn", "pubKeyCredParams $pubKeyCredParams")
/credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/identityauth/createpublickeycredential/
DPublicKeyCredentialControllerUtility.kt494 val pubKeyCredParams = json.getJSONArray(JSON_KEY_PUB_KEY_CRED_PARAMS) in parseRequiredRpAndParams() constant
496 for (i in 0 until pubKeyCredParams.length()) { in parseRequiredRpAndParams()
497 val param = pubKeyCredParams.getJSONObject(i) in parseRequiredRpAndParams()