Skip to content

Commit

Permalink
Add crypto_box_curve25519xchacha20poly1305_beforenm
Browse files Browse the repository at this point in the history
  • Loading branch information
danielecaggiari committed Apr 6, 2023
1 parent d297e49 commit 5aedd42
Showing 1 changed file with 31 additions and 0 deletions.
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)"
}

0 comments on commit 5aedd42

Please sign in to comment.