(identities)
| 105 | } |
| 106 | |
| 107 | export async function deleteIdentities(identities) { |
| 108 | for (const id of identities) { |
| 109 | const key = `mvelo.autocrypt.${id}`; |
| 110 | await mvelo.storage.remove(key); |
| 111 | stores.delete(key); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | export function armor(base64) { |
| 116 | const head = '-----BEGIN PGP PUBLIC KEY BLOCK-----'; |