Decrypt a file
ParagonIE_Sodium_File::secretbox_encrypt
Encrypt a file
ParagonIE_Sodium_File::box_decrypt
ParagonIE_Sodium_File::box_encrypt
Advertisement
ParagonIE_Sodium_File::verify
Verify a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_sign_verify_detached(), but produces the same result.
ParagonIE_Sodium_File::sign
Sign a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_sign_detached(), but produces the same result.
ParagonIE_Sodium_File::secretbox_open
Seal a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_secretbox_open(), but produces the same result.
ParagonIE_Sodium_File::secretbox
Encrypt a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_secretbox(), but produces the same result.
Advertisement
ParagonIE_Sodium_File::generichash
Calculate the BLAKE2b hash of a file.
ParagonIE_Sodium_File::box_seal_open
Open a sealed file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_box_seal_open(), but produces the same result.
ParagonIE_Sodium_File::box_seal
Seal a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_box_seal(), but produces the same result.
ParagonIE_Sodium_File::box_open
Open a boxed file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_box_open(), but produces the same result.
Advertisement
ParagonIE_Sodium_File::box
Box a file (rather than a string). Uses less memory than ParagonIE_Sodium_Compat::crypto_box(), but produces the same result.
ParagonIE_Sodium_Crypto32::sign_verify_detached
Verify a detached signature of a given message and public key.
ParagonIE_Sodium_Crypto32::sign_open
Opens a signed message. If valid, returns the message.