diff options
| author | Jonathan Staab <shtaab@gmail.com> | 2023-08-11 13:09:17 -0700 |
|---|---|---|
| committer | Jonathan Staab <shtaab@gmail.com> | 2023-08-11 13:14:52 -0700 |
| commit | 30696049ccdc9f19b9f737b97290a78d0a64ba9c (patch) | |
| tree | 8b2357b2f46b4103f69f06c5fc2bbbef5c30839d /07.md | |
| parent | 00a8f9532eeee918c0417ae0f501c790cd5a3f56 (diff) | |
Deprecate NIP 04
Diffstat (limited to '07.md')
| -rw-r--r-- | 07.md | 6 |
1 files changed, 4 insertions, 2 deletions
| @@ -18,8 +18,10 @@ async window.nostr.signEvent(event: Event): Event // takes an event object, adds | |||
| 18 | Aside from these two basic above, the following functions can also be implemented optionally: | 18 | Aside from these two basic above, the following functions can also be implemented optionally: |
| 19 | ``` | 19 | ``` |
| 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 | 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 | 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 encrypted payload as specified in nip-44 | ||
| 24 | async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes encrypted payload as specified in nip-44 | ||
| 23 | ``` | 25 | ``` |
| 24 | 26 | ||
| 25 | ### Implementation | 27 | ### Implementation |