mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
Fixing signature verification
This commit is contained in:
parent
5c98e3e395
commit
7fb3784ef6
1 changed files with 5 additions and 4 deletions
|
@ -138,13 +138,13 @@ const runVerificationForm = () => {
|
|||
// Try two different methods of signature reading
|
||||
let signature = null, verified = null, readError = null;
|
||||
try {
|
||||
signature = await openpgp.createMessage({
|
||||
signature = await openpgp.readMessage({
|
||||
armoredMessage: elFormVerify.querySelector('.input').value
|
||||
});
|
||||
} catch(e) {
|
||||
try {
|
||||
signature = await openpgp.createCleartextMessage({
|
||||
armoredMessage: elFormVerify.querySelector('.input').value
|
||||
signature = await openpgp.readCleartextMessage({
|
||||
cleartextMessage: elFormVerify.querySelector('.input').value
|
||||
});
|
||||
} catch(e) {
|
||||
readError = e;
|
||||
|
@ -158,7 +158,8 @@ const runVerificationForm = () => {
|
|||
verificationKeys: window.kx.key.object
|
||||
});
|
||||
|
||||
if (verified.signatures[0].valid) {
|
||||
console.log(verified);
|
||||
if (await verified.signatures[0].verified) {
|
||||
elFormVerify.querySelector('.output').value = `The message was signed by the profile's key.`;
|
||||
} else {
|
||||
elFormVerify.querySelector('.output').value = `The message was NOT signed by the profile's key.`;
|
||||
|
|
Loading…
Reference in a new issue