remove nip44 calls from nip07 temporarily.

This commit is contained in:
fiatjaf 2023-12-20 14:39:35 -03:00
parent 9be51261c0
commit ff533d7a99
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1

2
07.md
View File

@ -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