Files: 3f14a6dcd8d9c4cb8d9fa48e216e5c4c1e91d52a / cap.js
254 bytesRaw
1 | var chloride = require('chloride') |
2 | |
3 | function hash(s) { |
4 | return chloride.crypto_hash_sha256( |
5 | 'string' == typeof s ? new Buffer(s, 'utf8') : s |
6 | ) |
7 | } |
8 | |
9 | module.exports = hash("peer-invites:DEVELOPMENT") //XXX DON'T publish without fixing this! |
10 | |
11 | // TODO |
12 |
Built with git-ssb-web