13

In theory, authenticating with a public key should be much simpler than with a password. There is nothing to remember for the end-user, and registration can be done just by clicking a button. For all intents and purposes, this should be much more user-friendly than a traditional password-based authentication.

So, why is Webauthn not used everywhere? Why has it not replaced passwords already?

2

2 Answers 2

6

It is not as flexible.

I am at my friend's place and I get an alert on my phone that someone wired some money out of my bank account! I need to login to my bank's site to check whats up. But, my public key/cert is in my computer and I have not registered to the bank using my friend's machine. Or I forgot to carry my Yubikeys with me. Now what do I do to quickly login?

It does not have the necessary client support yet.

We use webauthn for some of our internal workflows in our organization. It works flawlessly for web browsers but it doesn't have the necessary support for other clients yet. For example, there are several applications that run as Desktop clients on Windows/Linux/Mac etc.

If you look at the support matrix on FIDO alliance's website, their support for some scenarios is still work in progress: enter image description here Source

Electron is a popular application framework based on Chromium browser. It doesn't have a clear answer for U2F support yet. Some users claim it works while some can't get it to work.

If your application is going to be supported outside of just a browser, then currently you don't have much choice.

One of the major device makers, Apple, joined FIDO alliance to move users away from passwords as late as Feb 2020. So, there wasn't enough urgency to even support many of the user scenarios.

It is not an easy job to replace passwords entirely
Getting rid of passwords means changing user behavior. That takes a while. Here, usability of your security mechanism plays a huge role.

Before Face ID, Biometric auth in phones and Windows Hello, there was no cheap way for general public to use anything other than passwords to login. And these are fairly recent technologies.

Mobile phones have done a great job so far of integrating separate authenticators like Swipe patterns, biometric etc to replace passwords. But till we get such easy and free technologies available to mass market for Desktop, it is going to be hard to replace the passwords.

0
2

Limit's answer explains three good reasons why this technology has not taken off just yet, but I have one more:

Developer time is limited and expensive

When companies look at what needs to be implemented in their products, most of them are not going to be interested in spending time adding additional authentication methods when they "already have perfectly serviceable methods in place". This is the same reason that many companies still don't have multi-factor authentication and/or modern password complexity requirements.

One example of a large site that does support Webauthn as a primary authentication method is eBay. Their blog post only mentions mobile devices, but I'm using it on my laptop with a fingerprint reader and Windows Hello:

Windows Hello

I write software, and I know I could implement this for my own products, except for one problem: eBay has 30,000 employees which includes a lot of developers, while the company I work for has less than a dozen developers.

Like the reasons in the other answer, this will also be resolved in time, it will just have to wait until either we get to the lower-priority TODO items or there is some reason to make it higher priority.

3
  • There are SaaS solutions that implement WebAuthn and provide services that are very easy to manage and implement. Commented Oct 25, 2022 at 20:38
  • @NickHodges That's true, but it still requires effort to implement (evaluating solutions from different companies, actually implementing the integration, etc), and it also introduces (possibly significant) additional cost.
    – Moshe Katz
    Commented Oct 25, 2022 at 21:53
  • That is correct -- just like every other "Build vs. Buy" decision. Commented Jan 5, 2023 at 21:26

You must log in to answer this question.