diff options
| author | Jonathan Staab <shtaab@gmail.com> | 2023-08-11 17:43:58 -0700 |
|---|---|---|
| committer | Jonathan Staab <shtaab@gmail.com> | 2023-08-11 17:43:58 -0700 |
| commit | 4d95efcf871d86326cc4b8ed9e7a421e076b5b2a (patch) | |
| tree | d75036094aeb786b40d47245c99ea6e9c6659597 | |
| parent | e2eeda5200def7204f7f2da0ee446ac7744be010 (diff) | |
Rename nip44 ciphertext to payload in nip 07
| -rw-r--r-- | 07.md | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -21,7 +21,7 @@ async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} | |||
| 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, v): 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, payload): string // takes encrypted payload as specified in nip-44 |
| 25 | ``` | 25 | ``` |
| 26 | 26 | ||
| 27 | ### Implementation | 27 | ### Implementation |