From 4d95efcf871d86326cc4b8ed9e7a421e076b5b2a Mon Sep 17 00:00:00 2001 From: Jonathan Staab Date: Fri, 11 Aug 2023 17:43:58 -0700 Subject: [PATCH] Rename nip44 ciphertext to payload in nip 07 --- 07.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07.md b/07.md index f2a25cf..caf1160 100644 --- a/07.md +++ b/07.md @@ -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.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.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