upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2024-02-20 12:06:06 -0600
committerAlex Gleason <alex@alexgleason.me>2024-02-20 12:06:06 -0600
commit71b0cbc2de50ca9088398bb3cbf8f9eb6d5a7b53 (patch)
tree4f6818328d19c194cf1d0bc90c6350301755219d
parent36d22815878186285825511358e66a52d2bf95e4 (diff)
NIP-07: add NIP-44 calls
-rw-r--r--07.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/07.md b/07.md
index 12ae647..18ca730 100644
--- a/07.md
+++ b/07.md
@@ -20,6 +20,8 @@ Aside from these two basic above, the following functions can also be implemente
20async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies 20async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies
21async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated) 21async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated)
22async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated) 22async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated)
23async window.nostr.nip44.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-44
24async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-44
23``` 25```
24 26
25### Implementation 27### Implementation