MCPcopy Index your code
hub / github.com/mailvelope/mailvelope / readCleartextMessage

Function readCleartextMessage

src/modules/pgpModel.js:242–249  ·  view source on GitHub ↗
(armoredText)

Source from the content-addressed store, hash-verified

240}
241
242async function readCleartextMessage(armoredText) {
243 try {
244 return await pgpReadCleartextMessage({cleartextMessage: armoredText});
245 } catch (e) {
246 console.log('createCleartextMessage', e);
247 throw new MvError(l10n.get('cleartext_read_error', [e]), 'VERIFY_ERROR');
248 }
249}
250
251export async function verifyMessage({armored, keyringId, senderAddress, lookupKey}) {
252 try {

Callers 1

verifyMessageFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected