-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add crypto_box_curve25519xchacha20poly1305_beforenm
- Loading branch information
1 parent
d297e49
commit 5aedd42
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
wrapper/symbols/crypto_box_curve25519xchacha20poly1305_beforenm.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "crypto_box_curve25519xchacha20poly1305_beforenm", | ||
"type": "function", | ||
"inputs": [ | ||
{ | ||
"name": "publicKey", | ||
"type": "buf", | ||
"length": "libsodium._crypto_box_curve25519xchacha20poly1305_publickeybytes()" | ||
}, | ||
{ | ||
"name": "privateKey", | ||
"type": "buf", | ||
"length": "libsodium._crypto_box_curve25519xchacha20poly1305_secretkeybytes()" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "sharedKey", | ||
"type": "buf", | ||
"length": "libsodium._crypto_box_curve25519xchacha20poly1305_beforenmbytes()" | ||
} | ||
], | ||
"target": "libsodium._crypto_box_curve25519xchacha20poly1305_beforenm(sharedKey_address, publicKey_address, privateKey_address) | 0", | ||
"assert_retval": [ | ||
{ | ||
"condition": "=== 0", | ||
"or_else_throw": "invalid usage" | ||
} | ||
], | ||
"return": "_format_output(sharedKey, outputFormat)" | ||
} |