Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions 07.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ 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
async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04
async window.nostr.nip44.encrypt(pubkey, plaintext): string // takes 3rd party pubkey and plaintext and returns ciphertext as specified in nip-44
async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes 3rd party pubkey ciphertext and returns plaintext as specified in nip-44
async window.nostr.nip44.getKey(pubkey): string // takes 3rd party pubkey returns shared secret key as specified in nip-44
```

### Implementation
Expand Down