Rename nip44 ciphertext to payload in nip 07

This commit is contained in:
Jonathan Staab 2023-08-11 17:43:58 -07:00
parent e2eeda5200
commit 4d95efcf87

2
07.md
View File

@ -21,7 +21,7 @@ async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean}
async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated) async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated)
async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated) async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated)
async window.nostr.nip44.encrypt(pubkey, plaintext, v): string // returns encrypted payload as specified in nip-44 async window.nostr.nip44.encrypt(pubkey, plaintext, v): string // returns encrypted payload as specified in nip-44
async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes encrypted payload as specified in nip-44 async window.nostr.nip44.decrypt(pubkey, payload): string // takes encrypted payload as specified in nip-44
``` ```
### Implementation ### Implementation