Moritz Walter

Results 26 comments of Moritz Walter

or at least one function like ipv6 to addr

Hey! i actually just need to get the arpa from an ipv6 address. Input: 2001:db8::1 Output: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa ``` $sub = new IPv6\SubnetCalculator('2001:db8::1'); $ipv6ArpaDomain = $sub->getIPv6ArpaDomain(); ``` Thanks.

> Hi, > > To overcome the issue, you should set the `isResidentKeyRequired` parameter to false when creating the credential. > > It most likely means that you are trying...

Have now set it to false via "setRequireResidentKey(false)" . Still same error. ``` { "rp": { "name": "", "id": "" }, "pubKeyCredParams": [ { "type": "public-key", "alg": -7 }, {...

I think, Android dont support that yet. is there a method to check if passkeys are available on the Device?

> No, you cannot. That's why the authentication flow should also include the possibilty for the user to set its username. > In addition, the device may be temporarily used...

Hey, on normal Login (webauthn) i get the error: "User Handle is mandatory" how i can fix that? ``` $publicKeyCredentialSource = $this->authenticatorAssertionResponseValidator()->check( $publicKeyCredential->getRawId(), $authenticatorAssertionResponse, $publicKeyCredentialRequestOptions, $this->serverRequestCreator()->fromGlobals(), userHandle: null ); ```

and how i get the userhandle? The only way i found is `$userHandle = $authenticatorAssertionResponse->getUserHandle();` but return is empty.

found the way. ```$key = $this->publicKeyCredentialSourceRepository()->findOneByCredentialId($publicKeyCredential->getRawId());```works. Thanks for the many help!

I think one overrides the other. So if both are set, the 2nd overwrites the first