The crypto_box_open() function verifies and decrypts a ciphertext 'c' using the receiver's secret key 'sk', the sender's public key 'pk', and a nonce 'nonce'. The crypto_box_open() function returns the resulting message 'msg'.
resulting message
cyphertext
nonce
receiver's public key
sender's secret key
success flag and message in 'msg'
See Implementation
The crypto_box_open() function verifies and decrypts a ciphertext 'c' using the receiver's secret key 'sk', the sender's public key 'pk', and a nonce 'nonce'. The crypto_box_open() function returns the resulting message 'msg'.