Files: 90dfad001a91b412a745a9cad0dccf4a3ef49dc2 / caps.js
460 bytesRaw
1 | module.exports = { |
2 | shs: Buffer.from('1KHLiKZvAvjbY1ziZEHMXawbCEIM6qwjCDm3VYRan/s=', 'base64') |
3 | //this is the key for accessing the ssb protocol. |
4 | //this will be updated whenever breaking changes are made. |
5 | //(see secret-handshake paper for a full explaination) |
6 | |
7 | //there is nothing special about this value. |
8 | //I generated it in the node repl with: |
9 | // |
10 | // > crypto.randomBytes(32).toString('base64') |
11 | // |
12 | //and copied it here. |
13 | |
14 | } |
15 |
Built with git-ssb-web