Files: a8eda5e5db9ec86d6df1064d0c0c8e1c23a5d62f / lib / ssb-cap.js
414 bytesRaw
1 | //this is the key for accessing the ssb protocol. |
2 | //this will be updated whenever breaking changes are made. |
3 | //(see secret-handshake paper for a full explaination) |
4 | module.exports = |
5 | new Buffer('1KHLiKZvAvjbY1ziZEHMXawbCEIM6qwjCDm3VYRan/s=', 'base64') |
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 |
Built with git-ssb-web