doipjs/examples/fetch-key-hkp.js

14 lines
337 B
JavaScript
Raw Normal View History

2021-11-15 16:16:50 +01:00
const doip = require('../src')
const main = async () => {
2021-11-17 09:38:14 +01:00
// Fetch the key using HKP
const key = await doip.keys.fetchHKP("test@doip.rocks")
2021-11-15 16:16:50 +01:00
// Process it to extract the UIDs and their claims
const obj = await doip.keys.process(key)
// Log the claims of the first UID
console.log(obj.users[0].claims)
}
main()