diff options
| author | Alex Gleason <alex@alexgleason.me> | 2024-02-20 12:09:40 -0600 |
|---|---|---|
| committer | Alex Gleason <alex@alexgleason.me> | 2024-02-20 12:09:40 -0600 |
| commit | 2390058a3260d778e62df066c0d5bb5e803d2527 (patch) | |
| tree | b608381eb545d21599456158fad9c0d49cbd42dd | |
| parent | 71b0cbc2de50ca9088398bb3cbf8f9eb6d5a7b53 (diff) | |
NIP-07: remove "and iv" from NIP-44 comments
| -rw-r--r-- | 07.md | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -20,8 +20,8 @@ Aside from these two basic above, the following functions can also be implemente | |||
| 20 | async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies | 20 | async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies |
| 21 | async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated) | 21 | async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 (deprecated) |
| 22 | async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated) | 22 | async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated) |
| 23 | async window.nostr.nip44.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-44 | 23 | async window.nostr.nip44.encrypt(pubkey, plaintext): string // returns ciphertext as specified in nip-44 |
| 24 | async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-44 | 24 | async window.nostr.nip44.decrypt(pubkey, ciphertext): string // takes ciphertext as specified in nip-44 |
| 25 | ``` | 25 | ``` |
| 26 | 26 | ||
| 27 | ### Implementation | 27 | ### Implementation |