(rawEncoded)
| 441 | } |
| 442 | |
| 443 | export function extractSignedMessageMultipart(rawEncoded) { |
| 444 | const raw = atob(base64DecodeUrl(rawEncoded)); |
| 445 | return parseSignedMessage(raw, 'html'); |
| 446 | } |
| 447 | |
| 448 | export async function getPGPSignatureAttId({msgId, email, accessToken}) { |
| 449 | const {payload} = await getMessage({msgId, email, accessToken}); |
nothing calls this directly
no test coverage detected