diff options
| author | Vitor Pamplona <vitor@vitorpamplona.com> | 2024-02-21 15:11:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-21 15:11:53 -0500 |
| commit | cbee1092d25ba60ee3d94de1cc72a8f1efb69070 (patch) | |
| tree | 0f5432b0c7a480908e5282bd61d1d6e7548e0c99 /07.md | |
| parent | 44c678b36584cf34f5b5f634924f624f8803b799 (diff) | |
| parent | 2390058a3260d778e62df066c0d5bb5e803d2527 (diff) | |
Merge pull request #1063 from alexgleason/nip07-nip44
NIP-07: add NIP-44 calls
Diffstat (limited to '07.md')
| -rw-r--r-- | 07.md | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -20,6 +20,8 @@ Aside from these two basic above, the following functions can also be implemente | |||
| 20 | async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies | 20 | async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies |
| 21 | async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated) | 21 | async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated) |
| 22 | async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated) | 22 | async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated) |
| 23 | async window.nostr.nip44.encrypt(pubkey, plaintext): string // returns ciphertext as specified in nip-44 | ||
| 24 | async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes ciphertext as specified in nip-44 | ||
| 23 | ``` | 25 | ``` |
| 24 | 26 | ||
| 25 | ### Implementation | 27 | ### Implementation |