Password-free authentication – FIDO2 and WebAuthn
Firefox
In early 2018, the developer versions of Firefox introduced support for the authentification process, and the technology is firmly integrated since Firefox 60 [10]. Also, the developers of the Chrome (Google) and Edge (Microsoft) browsers [11] plan to support WebAuthn in the future.
Listings 1 and 2 show JavaScript examples from a post by Mozilla developers J.C. Jones and Tim Taubert [12] that initializes a USB U2F token and requests public keys on the client. All you need is the local hardware (e.g., the USB token or a fingerprint reader).
The navigator.credentials.create()
and decodeCredential
functions of Listing 1 request a new FIDO credential by enabling all compatible devices and keeping them waiting for user input. The credential is created as soon as the user has authenticated successfully. The decodeCredential
function creates a key pair and transmits the public key (in plain text). When generating the key, the URL call and a timestamp link this user, this website, and the authentication. Listing 2 shows the process for an existing credential when the user visits the website again.
Listing 1
Creating a Credential and Keys
01 /* (CC BY-SA 3.0: https://creativecommons.org/licenses/by-sa/3.0/) */ 02 03 const cose_alg_ECDSA_w_SHA256 = -7; 04 05 /* The challenge must be produced by the server */ 06 let challenge = new Uint8Array([21,31,105,<[...]>]); /* 29 more random bytes generated by the server */ 07 08 let pubKeyCredParams = [{ 09 type: "public-key", 10 alg: cose_alg_ECDSA_w_SHA256 11 }]; 12 13 let rp = { 14 name: "Test Website" 15 }; 16 17 let user = { 18 name: "Firefox User firefox@<example.com>", 19 displayName: "Firefox User", 20 id: new TextEncoder("utf-8").encode("firefox@<example.com>") 21 }; 22 23 let publicKey = {challenge, pubKeyCredParams, rp, user}; 24 navigator.credentials.create({publicKey}) 25 .then(decodeCredential);
Listing 2
Querying the Public Key
01 /* (CC BY-SA 3.0: https://creativecommons.org/licenses/by-sa/3.0/) */ 02 03 /* The challenge must be produced by the server */ 04 let challenge = new Uint8Array([42,42,33,<[...]>]); /* 29 more random bytes generated by the server */ 05 06 let key = new Uint8Array(<[?]>); */ Retrieve Key Handle 07 08 let allowCredentials = [{ 09 type: "public-key", 10 id: key, 11 transports: ["usb"] 12 }]; 13 14 let publicKey = {challenge, allowCredentials}; 15 16 navigator.credentials.get({publicKey}) 17 .then(decodeAssertion);
For Developers
The FIDO Alliance developer resources web page [13] proves to be a good starting point for developers, with direct links to the specification and explanations for the protocols, platforms, and functions involved (e.g., the navigator.credentials.get()
and navigator.credentials.create()
functions demonstrated in Listings 1 and 2).
On Android, org.fidoalliance.intent.FIDO_OPERATION
handles all the functions (see chapter 6 of the W3C specification, or chapter 7 for iOS). The Android client API has defined this intent and it comes with a full set of functions for login, registration, and changes. Google's developer resources [14] prove to be just as helpful in the WebAuthn case as those of GitHub, where more and more projects are implementing the functions (e.g., in Python [15] and with YubiKeys).
Yubico tokens appear to be a good choice for a quick start. Both the YubiKey NEO and FIPS support FIDO and are National Institute of Standards and Technology (NIST)-certified for use in safety-critical environments.
Server Side
The FIDO Alliance points to the large number of servers that support FIDO, each of which offers its own configuration procedure. However, the Alliance offers to confer FIDO Universal Server certification [16] on the servers.
Secure Sockets Layer (SSL) is a basic requirement, but without a database – or an LDAP user directory – nothing works right now. Yubico lists the steps necessary for LDAP integration under YubiAuth [17], and the LDAP wiki [18] indicates a starting point for CTAP. A demo project is available on GitHub for FIDO2 servers [19].
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
News
-
Mozilla VPN Now Available for Linux
The promised subscription-based VPN service from Mozilla is now available for the Linux platform.
-
Wayland and New App Menu Coming to KDE
The 2021 roadmap for the KDE desktop environment includes some exciting features and improvements.
-
Deepin 20.1 has Arrived
Debian-based Deepin 20.1 has been released with some interesting new features.
-
CloudLinux Commits Over 1 Million Dollars to CentOS Replacement
An open source, drop-in replacement for CentOS is on its way.
-
Linux Mint 20.1 Beta has Been Released
The first beta of Linux Mint, Ulyssa, is now available for downloading.
-
Manjaro Linux 20.2 has Been Unleashed
The latest iteration of Manjaro Linux has been released with a few interesting new features.
-
Patreon Project Looks to Bring Linux to Apple Silicon
Developer Hector Martin has created a patreon page to fund his work on developing a port of Linux for Apple Silicon Macs.
-
A New Chrome OS-Like Ubuntu Remix is Now Available
Ubuntu Web looks to be your Chrome OS alternative.
-
System76 Refreshes the Galago Pro Laptop
Linux hardware maker has revamped one of their most popular laptops.
-
Dell Will Soon Enable Privacy Controls for Linux Hardware
Dell makes it possible for Linux users to disable webcams and microphones.