1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
const path = require('path');
const express = require('express');
const {
// Registration ("Attestation")
generateAttestationOptions,
verifyAssertionResponse,
// Login ("Assertion")
generateAssertionOptions,
verifyAttestationResponse,
} = require('@webauthntine/server');
const app = express();
const host = '0.0.0.0';
const port = 80;
app.use(express.static('./public/'));
app.use(express.json());
// Domain where the WebAuthn interactions are expected to occur
const origin = 'dev.millerti.me:3000';
// GENERATE A NEW VALUE FOR THIS EVERY TIME! The server needs to temporarily remember this value,
// so don't lose it until after you verify
const randomChallenge = 'totallyUniqueValueEveryTime';
// Your internal, _unique_ ID for the user (uuid, etc...). Avoid using identifying information here,
// like an email address
const userId = 'internalUserId';
// A username for the user
const username = 'user@webauthntine.foo';
app.get('/generate-attestation-options', (req, res) => {
res.send(generateAttestationOptions(
'WebAuthntine Example',
'dev.millerti.me:3000',
randomChallenge,
userId,
username,
));
});
app.post('/verify-registration', (req, res) => {
const { body } = req;
});
app.listen(port, host, () => {
console.log(`🚀 Server ready at http://${host}:${port}`);
});
|