From ff533d7a99715b0524f93a182f6c2169fe3b25b1 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Wed, 20 Dec 2023 14:39:35 -0300 Subject: [PATCH] remove nip44 calls from nip07 temporarily. --- 07.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/07.md b/07.md index 6db05971..90772eef 100644 --- a/07.md +++ b/07.md @@ -20,8 +20,6 @@ Aside from these two basic above, the following functions can also be implemente async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies 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(sender_privkey, recipient_pubkey, plaintext, version): string // returns encrypted payload as specified in nip-44 -async window.nostr.nip44.decrypt(recipient_privkey, sender_pubkey, payload): string // takes encrypted payload as specified in nip-44 ``` ### Implementation