1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-10-28 15:42:35 +01:00
ntfy/examples/publish-js/publish-encrypted.js
2022-07-08 08:16:03 -04:00

7 lines
246 B
JavaScript

import * as jose from 'jose'
async function publish() {
const jwe = await new jose.CompactEncrypt(new TextEncoder().encode('Secret message from JS!'))
.setProtectedHeader({ alg: 'dir', enc: 'A256GCM' })
.encrypt(publicKey)
}