├── README
├── README.adoc
├── composer.json
├── readme.txt
└── u2f.php
/README:
--------------------------------------------------------------------------------
1 | == U2F for Wordpress
2 |
3 | NOTE: This project is deprecated and is no longer being maintained.
4 |
5 | This plugin adds support for the two factor authentication standard U2F.
6 |
7 | The functionality is similar to the U2F (Security Key) support available for Google accounts:
8 |
9 | * Users registers U2F devices themselves.
10 | * Users are not required to register devices.
11 | * A user can have multiple devices registered.
12 | * Currently, only Google Chrome is supported.
13 |
14 |
15 | === Installation
16 |
17 | . Install the dependencies using http://getcomposer.org[Composer].
18 | . Move the wordpress-u2f directory into the `/wp-content/plugins/` directory.
19 | . Activate the plugin through the 'Plugins' menu in WordPress.
20 | . Go to _Settings_ -> _U2F_.
21 | . Set https://developers.yubico.com/U2F/App_ID.html[App ID] to the the base URL of your website, for example _https://mysite.wordpress.com_.
22 |
23 | === Managing devices
24 | U2F devices can be added and removed from the profile screen (accessible by clicking on your name at the top of the screen).
25 |
--------------------------------------------------------------------------------
/README.adoc:
--------------------------------------------------------------------------------
1 | README
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "require": {
3 | "yubico/u2flib-server": "dev-master"
4 | }
5 | }
--------------------------------------------------------------------------------
/readme.txt:
--------------------------------------------------------------------------------
1 | === U2F for Wordpress ===
2 | Contributors: yubico
3 | Tags: authentication, login
4 | Requires at least: 4.0
5 | Tested up to: 4.1
6 | Stable tag: trunk
7 | License: GPLv2
8 | License URI: http://www.gnu.org/licenses/gpl-2.0.html
9 |
10 | Allows users to login using U2F devices.
11 |
12 | == Description ==
13 |
14 | This plugin adds support for the two factor authentication standard U2F.
15 |
16 | The functionality is similar to the U2F (Security Key) support available for Google accounts:
17 |
18 | * Users registers U2F devices themselves.
19 | * Users are not required to register devices.
20 | * A user can have multiple devices registered.
21 | * Currently, only Google Chrome is supported.
22 |
23 |
24 | == Installation ==
25 |
26 | 1. Move the wordpress-u2f directory into the `/wp-content/plugins/` directory
27 | 1. Activate the plugin through the 'Plugins' menu in WordPress
28 | 1. Go to _Settings_ -> _U2F_.
29 | 1. Set https://developers.yubico.com/U2F/App_ID.html[App ID] to the the base URL of your website, for example _https://mysite.wordpress.com_.
30 |
31 | == Changelog ==
32 |
33 | = 0.2 =
34 | * Initial release.
35 |
36 | == Upgrade Notice ==
37 |
38 | = 0.2 =
39 | None
40 |
--------------------------------------------------------------------------------
/u2f.php:
--------------------------------------------------------------------------------
1 |
78 | ' class="regular-text code">
79 |
86 | ' class="regular-text">
87 |
98 |