mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-23 06:59:29 -07:00
23 lines
No EOL
564 B
JavaScript
23 lines
No EOL
564 B
JavaScript
const doip = require('../src')
|
|
|
|
const main = async () => {
|
|
// Fetch the key using HKP
|
|
const key = await doip.keys.fetchHKP("test@doip.rocks")
|
|
|
|
// Process it to extract the UIDs and their claims
|
|
const obj = await doip.keys.process(key)
|
|
|
|
// Process every claim for every user
|
|
obj.users.forEach(async user => {
|
|
user.claims.forEach(async claim => {
|
|
// Match the claim
|
|
await claim.match()
|
|
|
|
// Verify the claim
|
|
await claim.verify()
|
|
console.log(claim)
|
|
})
|
|
})
|
|
}
|
|
|
|
main() |