Files: 7efb3ae7a39bf609b416d7ea771645f8ed95c852 / valid.js
4132 bytesRaw
1 | var ssbKeys = require('ssb-keys') |
2 | var isMsg = require('ssb-ref').isMsg |
3 | var u = require('./util') |
4 | |
5 | var invite_key = require('./cap') |
6 | |
7 | function code(err, c) { |
8 | err.code = 'user-invites:'+c |
9 | return err |
10 | } |
11 | |
12 | exports.createInvite = function (seed, host, reveal, private) { |
13 | var keys = ssbKeys.generate(null, seed) //K |
14 | if(keys.id === host) |
15 | throw code(new Error('do not create invite with own public key'), 'user-invites:no-own-goal') |
16 | return ssbKeys.signObj(keys, invite_key, { |
17 | type: 'user-invite', |
18 | invite: keys.id, |
19 | host: host, //sign our own key, to prove we created K |
20 | reveal: reveal ? u.box(reveal, u.hash(u.hash(seed))) : undefined, |
21 | private: private ? u.box(private, u.hash(seed)) : undefined |
22 | }) |
23 | } |
24 | |
25 | exports.verifyInvitePublic = function (msg) { |
26 | if(msg.content.host != msg.author) |
27 | throw code(new Error('host did not match author'), 'host-must-match-author') |
28 | |
29 | if(!ssbKeys.verifyObj(msg.content.invite, invite_key, msg.content)) |
30 | throw code(new Error('invalid invite signature'), 'invite-signature-failed') |
31 | |
32 | //an ordinary message so doesn't use special hmac_key |
33 | if(!ssbKeys.verifyObj(msg.author, msg)) |
34 | throw code(new Error('invalid host signature'), 'host-signature-failed') |
35 | return true |
36 | } |
37 | |
38 | exports.verifyInvitePrivate = function (msg, seed) { |
39 | exports.verifyInvitePublic(msg) |
40 | if(msg.content.reveal) { |
41 | var reveal = u.unbox(msg.content.reveal, u.hash(u.hash(seed))) |
42 | if(!reveal) throw code(new Error('could not decrypt reveal field'), 'decrypt-reveal-failed') |
43 | } |
44 | if(msg.content.private) { |
45 | var private = u.unbox(msg.content.private, u.hash(seed)) |
46 | if(!private) throw code(new Error('could not decrypt private field'), 'decrypt-private-failed') |
47 | } |
48 | |
49 | return {reveal: reveal, private: private} |
50 | } |
51 | |
52 | exports.createAccept = function (msg, seed, id) { |
53 | exports.verifyInvitePrivate(msg, seed) |
54 | var keys = ssbKeys.generate(null, seed) //K |
55 | if(keys.id != msg.content.invite) |
56 | throw code(new Error('seed does not match invite'), 'seed-must-match-invite') |
57 | var inviteId = '%'+ssbKeys.hash(JSON.stringify(msg, null, 2)) |
58 | return ssbKeys.signObj(keys, invite_key, { |
59 | type: 'user-invite/accept', |
60 | receipt: inviteId, |
61 | id: id, |
62 | key: msg.content.reveal ? u.hash(u.hash(seed)).toString('base64') : undefined |
63 | }) |
64 | } |
65 | |
66 | exports.verifyAcceptOnly = function (accept) { |
67 | if(accept.content.type !== 'user-invite/accept') |
68 | throw code(new Error('accept must be type: "user-invite/accept", was:'+JSON.stringify(accept.content.type)), 'accept-message-type') |
69 | if(!isMsg(accept.content.receipt)) |
70 | throw code(new Error('accept must reference invite message id'), 'accept-reference-invite') |
71 | if(!ssbKeys.verifyObj(accept.content.id, accept)) |
72 | throw code(new Error('acceptance must be signed by claimed key'), 'accept-signature-failed') |
73 | } |
74 | |
75 | exports.verifyAccept = function (accept, invite) { |
76 | if(!invite) throw new Error('invite must be provided') |
77 | |
78 | exports.verifyAcceptOnly(accept) |
79 | |
80 | if(invite.content.type !== 'user-invite') |
81 | throw code(new Error('accept must be type: invite, was:'+accept.content.type), 'user-invites:invite-message-type') |
82 | |
83 | var invite_id = '%'+ssbKeys.hash(JSON.stringify(invite, null, 2)) |
84 | var reveal |
85 | |
86 | if(invite_id !== accept.content.receipt) |
87 | throw code(new Error('acceptance not matched to given invite, got:'+invite_id+' expected:'+accept.content.receipt), 'accept-wrong-invite') |
88 | |
89 | if(accept.author === invite.content.id) |
90 | throw code(new Error('guest must use a new key, not the same seed'), 'guest-key-reuse') |
91 | if(invite.content.reveal) { |
92 | if(!accept.content.key) |
93 | throw code(new Error('accept missing reveal key, when invite has it'), 'accept-must-reveal-key') |
94 | reveal = u.unbox(invite.content.reveal, new Buffer(accept.content.key, 'base64')) |
95 | if(!reveal) throw code(new Error('accept did not correctly reveal invite'), 'decrypt-accept-reveal-failed') |
96 | } |
97 | |
98 | if(!ssbKeys.verifyObj(invite.content.invite, invite_key, accept.content)) |
99 | throw code(new Error('did not verify invite-acceptance contents'), 'accept-invite-signature-failed') |
100 | //an ordinary message, so does not use hmac_key |
101 | return reveal || true |
102 | } |
103 | |
104 |
Built with git-ssb-web