Decrypt a message previously encrypted with crypto_box().
ParagonIE_Sodium_Compat::crypto_box_keypair
Generate a new random X25519 keypair.
ParagonIE_Sodium_Compat::crypto_box_seal
Anonymous public-key encryption. Only the recipient may decrypt messages.
ParagonIE_Sodium_Compat::crypto_box_seal_open
Opens a message encrypted with crypto_box_seal(). Requires the recipient’s keypair (sk || pk) to decrypt successfully.
Advertisement
ParagonIE_Sodium_Compat::crypto_auth_verify
Verify the MAC of a message previously authenticated with crypto_auth.
ParagonIE_Sodium_Compat::crypto_box
Authenticated asymmetric-key encryption. Both the sender and recipient may decrypt messages.
ParagonIE_Sodium_Compat::crypto_auth_keygen
ParagonIE_Sodium_Compat::crypto_auth
Authenticate a message. Uses symmetric-key cryptography.
Advertisement
ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_keygen
Return a secure random key for use with the XChaCha20-Poly1305 symmetric AEAD interface.
ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_encrypt
Authenticated Encryption with Associated Data
ParagonIE_Sodium_Compat::crypto_aead_xchacha20poly1305_ietf_decrypt
Authenticated Encryption with Associated Data: Decryption
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_keygen
Return a secure random key for use with the ChaCha20-Poly1305 symmetric AEAD interface. (IETF version)
Advertisement
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_encrypt
Authenticated Encryption with Associated Data
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt
Authenticated Encryption with Associated Data: Decryption
ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_keygen
Return a secure random key for use with the ChaCha20-Poly1305 symmetric AEAD interface.