forked from Yubico/java-webauthn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
23 lines (16 loc) · 1.13 KB
/
README
File metadata and controls
23 lines (16 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
== java-webauthn-server
_Note: This is a work in progress. The https://www.w3.org/TR/webauthn/[Web
Authentication standard] is not yet finished, and any part of this project may
change at any time._
image:https://travis-ci.org/Yubico/java-webauthn-server.svg?branch=master["Build Status", link="https://travis-ci.org/Yubico/java-webauthn-server"]
image:https://coveralls.io/repos/github/Yubico/java-webauthn-server/badge.svg["Coverage Status", link="https://coveralls.io/github/Yubico/java-webauthn-server"]
Server-side https://www.w3.org/TR/webauthn/[Web Authentication] library for
Java. Provides implementations of the
https://www.w3.org/TR/webauthn/#rp-operations[Relying Party operations] required
for a server to support Web Authentication. This includes registering
authenticators and authenticating registered authenticators.
The project is currently implemented mostly in Scala; this is intended to be
translated to Java when the specification and these APIs seem stable enough.
=== Example Usage
See link:webauthn-server-demo[`webauthn-server-demo`] for a complete demo
server, which stores authenticator registrations temporarily in memory.