segundo commit

This commit is contained in:
root 2025-11-06 19:19:45 +00:00
parent 6b8b75863a
commit d2e79d63a5
13601 changed files with 1117197 additions and 0 deletions

14
node_modules/ssb-server/test/defaults.js generated vendored Normal file
View file

@ -0,0 +1,14 @@
//defaults only used in the tests!
var crypto = require('crypto')
function hash(s) {
return crypto.createHash('sha256').update(s, 'utf8').digest()
}
module.exports = {
caps: {
shs: hash('test default shs'),
sign: hash('test default sign'),
}
}