U2F API for browsers
Перейти к файлу
Jonas Franz 88725b6987
Add webpack and refactored api to fit to gitea's API
Signed-off-by: Jonas Franz <info@jonasfranz.software>
2018-05-16 15:00:40 +02:00
dist Add webpack and refactored api to fit to gitea's API 2018-05-16 15:00:40 +02:00
google Increased timeout for extension communication 2018-03-20 15:17:48 +01:00
lib Add webpack and refactored api to fit to gitea's API 2018-05-16 15:00:40 +02:00
scripts Major rewrite of the library. 2018-03-20 14:10:43 +01:00
test Major rewrite of the library. 2018-03-20 14:10:43 +01:00
web Add webpack and refactored api to fit to gitea's API 2018-05-16 15:00:40 +02:00
.gitignore Major rewrite of the library. 2018-03-20 14:10:43 +01:00
.npmignore npmignore to not auto-reuse .gitignore 2018-03-20 14:18:35 +01:00
.travis.yml Major rewrite of the library. 2018-03-20 14:10:43 +01:00
LICENSE Initial commit 2015-06-12 15:09:52 +02:00
README.md I blame snow blindness 2018-03-20 15:47:45 +01:00
index.ts Major rewrite of the library. 2018-03-20 14:10:43 +01:00
package-lock.json 1.0.6 2018-03-20 15:47:52 +01:00
package.json Add webpack and refactored api to fit to gitea's API 2018-05-16 15:00:40 +02:00
tsconfig.json Target es5 (so users won't need to babelify) 2018-03-20 14:32:00 +01:00
webpack.config.js Add webpack and refactored api to fit to gitea's API 2018-05-16 15:00:40 +02:00

README.md

npm version build status

u2f-api

U2F API for browsers

History

  • 1.0.0
    • Support for custom promise libraries removed
    • Promises no longer cancellable

API

Support

U2F has for a long time been supported in Chrome, although not with the standard window.u2f methods, but through a built-in extension. Nowadays, browsers seem to use window.u2f to expose the functionality.

Supported browsers are:

  • Chrome, using Chrome-specific hacks
  • Opera, using Chrome-specific hacks
  • Firefox 58+, although not proper support for facets
    • multi-domain registrations will work differently from Chrome

Safari and other browsers still lack U2F support.

Since 0.1.0, this library supports the standard window.u2f methods.

The library should be complemented with server-side functionality, e.g. using the u2f package.

Basics

u2f-api exports two main functions and an error "enum". The main functions are register() and sign(), although since U2F isn't widely supported, the functions isSupported() as well as ensureSupport() helps you build applications which can use U2F only when the client supports it.

Check or ensure support

import { isSupported } from 'u2f-api'

isSupported(): Promise< Boolean > // Doesn't throw/reject
import { ensureSupport } from 'u2f-api'

ensureSupport(): Promise< void > // Throws/rejects if not supported

Register

import { register } from 'u2f-api'

register(
  registerRequests: RegisterRequest[],
  signRequests: SignRequest[], // optional
  timeout: number // optional
): Promise< RegisterResponse >

The registerRequests can be either a RegisterRequest or an array of such. The optional signRequests must be, unless ignored, an array of SignRequests. The optional timeout is in seconds, and will default to an implementation specific value, e.g. 30.

Sign

import { sign } from 'u2f-api'

sign(
  signRequests: SignRequest[],
  timeout: number // optional
): Promise< SignResponse >

The values and interpretation of the arguments are the same as with register( ).

Errors

register() and sign() can return rejected promises. The rejection error is an Error object with a metaData property containing code and type. The code is a numerical value describing the type of the error, and type is the name of the error, as defined by the ErrorCodes enum in the "FIDO U2F Javascript API" specification. They are:

OK = 0 // u2f-api will never throw errors with this code
OTHER_ERROR = 1
BAD_REQUEST = 2
CONFIGURATION_UNSUPPORTED = 3
DEVICE_INELIGIBLE = 4
TIMEOUT = 5

Usage

Loading the library

The library is promisified and will use the built-in native promises of the browser, unless another promise library is injected (deprecated since 1.0).

var u2fApi = require( 'u2f-api' ); // CommonJS
import u2fApi from 'u2f-api' // ES modules

Registering a passkey

With registerRequestsFromServer somehow received from the server, the client code becomes:

u2fApi.register( registerRequestsFromServer )
.then( sendRegisterResponseToServer )
.catch( ... );

Signing a passkey

With signRequestsFromServer also received from the server somehow:

u2fApi.sign( signRequestsFromServer )
.then( sendSignResponseToServer )
.catch( ... );

Example with checks for client support

u2fApi.isSupported( )
.then( function( supported ) {
	if ( supported )
	{
		return u2fApi.sign( signRequestsFromServer )
		.then( sendSignResponseToServer );
	}
	else
	{
		... // Other authentication method
	}
} )
.catch( ... );

Example implementation

U2F is a challenge-response protocol. The server sends a challenge to the client, which responds with a response.

This library is intended to be used in the client (the browser). There is another package intended for server-side: https://www.npmjs.com/package/u2f

Common problems

If you get BAD_REQUEST, the most common situations are that you either don't use https (which you must), or that the AppID doesn't match the server URI. In fact, the AppID must be exactly the base URI to your server (such as https://your-server.com), including the port if it isn't 443.

For more information, please see https://developers.yubico.com/U2F/Libraries/Client_error_codes.html and https://developers.yubico.com/U2F/App_ID.html