diff options
| author | Jonathan Staab <shtaab@gmail.com> | 2023-08-11 17:37:29 -0700 |
|---|---|---|
| committer | Jonathan Staab <shtaab@gmail.com> | 2023-08-11 17:37:29 -0700 |
| commit | e2eeda5200def7204f7f2da0ee446ac7744be010 (patch) | |
| tree | 6e2aa12808eb0f57c882cee1aeac35440ace47b7 | |
| parent | 94330ffb10fc60d882e3c03504d0f8fa7aa1a7b3 (diff) | |
Add version param to 07 and 46
| -rw-r--r-- | 07.md | 2 | ||||
| -rw-r--r-- | 46.md | 2 |
2 files changed, 2 insertions, 2 deletions
| @@ -20,7 +20,7 @@ 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 encrypted payload as specified in nip-44 | 23 | async window.nostr.nip44.encrypt(pubkey, plaintext, v): 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 | 24 | async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes encrypted payload as specified in nip-44 |
| 25 | ``` | 25 | ``` |
| 26 | 26 | ||
| @@ -89,7 +89,7 @@ These are mandatory methods the remote signer app MUST implement: | |||
| 89 | - params [`pubkey`, `nip4 ciphertext`] | 89 | - params [`pubkey`, `nip4 ciphertext`] |
| 90 | - result [`plaintext`] | 90 | - result [`plaintext`] |
| 91 | - **nip44_encrypt** | 91 | - **nip44_encrypt** |
| 92 | - params [`pubkey`, `plaintext`] | 92 | - params [`pubkey`, `plaintext`, `v`] |
| 93 | - result `nip44 encrypted payload` | 93 | - result `nip44 encrypted payload` |
| 94 | - **nip44_decrypt** | 94 | - **nip44_decrypt** |
| 95 | - params [`pubkey`, `nip44 encrypted payload`] | 95 | - params [`pubkey`, `nip44 encrypted payload`] |