UNPKG
airtune-nostr-tools-development
Version:
latest (1.14.3)
1.14.3
1.14.2
1.14.1
Tools for making a Nostr client.
github.com/nbd-wtf/nostr-tools
nbd-wtf/nostr-tools
airtune-nostr-tools-development
/
lib
/
nip44.d.ts
4 lines
(3 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
export
declare
const
getSharedSecret
:
(
privkey
:
string
,
pubkey
:
string
) =>
Uint8Array
;
export
declare
function
encrypt
(
key
:
Uint8Array
,
text
:
string
,
v
?:
number
):
string
;
export
declare
function
decrypt
(
key
:
Uint8Array
,
payload
:
string
):
any
;