Questions tagged [passkey]

A passkey is a digital credential that adheres to the FIDO and W3C Web Authentication (WebAuthn) standards

34 questions
1
vote
1 answer

How to properly set Passkeys for Django?

I'm trying to apply Passkeys to a Django project, but I'm new to both and am finding difficulties. So following instructions I found here on how to add Passkeys I'm supposed to the following code to my settings.py file: AUTHENTICATION_BACKENDS =…
SaSSolino
  • 7
  • 1
1
vote
1 answer

How to remove Webauthn credentials from Platform Authenticator?

When you register a Webauthn credential, the private key gets stored in the device(Platform Authenticator/Roaming authenticator). This credential is mapped to the domain(say, www.mydomain.com) of the Relaying Party(RP). When you decommission a…
Manoj Amalraj
  • 535
  • 1
  • 5
  • 14
1
vote
1 answer

Challenge fetched from sever does not match challenge created by ASAuthorizationPlatformPublicKeyCredentialProvider credential creation request

I followed WWDC 2022 passkeys video and I am trying to register a passkey for my service in iOS as described in that video. Below is the function where I obtain challenge from server and then make use of…
letsbondiway
  • 470
  • 3
  • 18
1
vote
4 answers

Is it possible for a passkey to be revoked by anyone other than the user?

Other than a user revoking their own passkey, or a service no longer accepting a particular passkey (either they banned the user or something else happened that their account on the service is disabled), is it possible for any other parties to…
knpwrs
  • 15,691
  • 12
  • 62
  • 103
1
vote
3 answers

How to find out whether the user dismiss the credential action sheet or there is no credentials

I want to implement passkey in my app. I am wondering if there is a robust way to distinguish between these two situations: the user cancels the action sheet (ASAuthorizationController) there are no credentials at all Both situations give a canceled…
Ron Libman
  • 31
  • 3
0
votes
0 answers

How do I make a Passkey application with an Android app in Kotlin?

From Google Code Labs there is an Android project written in Kotlin. When I run this project, I can run the passkey authentication demo, but it does not actually access the authentication server. If there is an actual authentication server, how do I…
Hironori
  • 1
  • 2
0
votes
0 answers

Keep getting an error on macOS when trying to use Passkeys to login

I keep getting the following error when trying to run Passkey sign in on macOS. Told not to present authorization sheet: Error Domain=com.apple.AuthenticationServicesCore.AuthorizationError Code=1 "(null)" The same piece of code is working as…
Harsh
  • 2,852
  • 1
  • 13
  • 27
0
votes
0 answers

Credential Provider Service does not have the required capabilities

Recently android has introduced support for passkeys and I want to create an app which should provide or create passkeys. For this android has given CredentialProviderService to use. I have made my CredentiaProviderService and extended it with…
0
votes
1 answer

Unable to register for authentication using Passkey on Android

I'm trying to follow the official documentation to implement Passkey registration. There is also a codelab demonstrating the topic (note that it works as intended on my Android device.) I created this minimal test-case available on github, which…
Ariel Malka
  • 15,697
  • 6
  • 31
  • 33
0
votes
1 answer

Using a passkey for unattended execution

I'm pretty sure this isn't possible, but I'm going to ask the hive mind. Looking to implement a standards based secure virtual machine credential to use from web based applications that can be automated. I know, a lot to ask One possibility is…
mrmoosehead
  • 145
  • 1
  • 8
0
votes
1 answer

Is device is having passkey configuration for input keyhandle?

I have list of passkey keyhandle(id) in database which can be retrieved in mobile app client by rest API. I wanna differentiate and show current device passkey (which is configured from that mobile device itself) from the list of various device's…
Esann
  • 77
  • 5
0
votes
2 answers

Prevent user enumeration when implementing passkeys

I am thinking of allowing users to login using passkeys. As far as I understand it a login flow of a user logging in with passkeys typically works like this: Login screen separates between a screen where the user enters his user-id (often an e-mail…
Matthias Wimmer
  • 3,789
  • 2
  • 22
  • 41
0
votes
1 answer

Webauthn using Passkeys in osx

I am trying to use passkeys to perform webauthn registration and authentication. I have an extension to the website that access the native message host program. The native message host is written in swift. When I access websites like webauthn.io,…
hyoyin_Kyuoma
  • 643
  • 1
  • 6
  • 16
0
votes
0 answers

How to use googles Block Store API in Flutter?

I would like to use one of those APIs in my Flutter project, but I can't find a way or package to access the API Block Store. Is there a way to interact with it directly? I only found googleapis packages, but bloc store is not in it. On iOS I can…
Soyellow
  • 144
  • 9
0
votes
1 answer

How to solve jQuery is not defined / $(...).modal is not a function?

In Python Django I'm trying to launch a js function via button click, however I'm finding the following issues in the debug console: On page load I get a ReferenceError jQuery is not defined on…