SodiumCipher
Implements \Joomla\CMS\Crypt\CipherInterfaceJCrypt cipher for sodium algorithm encryption, decryption and key generation.
since |
3.8.0 |
---|
Methods
decrypt
Method to decrypt a data string.
decrypt(string $data, \Joomla\CMS\Crypt\Key $key) : string
since |
3.8.0 |
---|---|
throws |
|
Arguments
- $data
string
The encrypted string to decrypt.- $key
\Joomla\CMS\Crypt\Key
The key object to use for decryption.
Response
string
The decrypted data string.
encrypt
Method to encrypt a data string.
encrypt(string $data, \Joomla\CMS\Crypt\Key $key) : string
since |
3.8.0 |
---|---|
throws |
|
Arguments
- $data
string
The data string to encrypt.- $key
\Joomla\CMS\Crypt\Key
The key object to use for encryption.
Response
string
The encrypted data string.
generateKey
Method to generate a new encryption key object.
generateKey(array $options = array()) : \Joomla\CMS\Crypt\Key
since |
3.8.0 |
---|---|
throws |
|
Arguments
- $options
array
Key generation options.
Response
setNonce
Set the nonce to use for encrypting/decrypting messages
setNonce(string $nonce) : void
since |
3.8.0 |
---|
Arguments
- $nonce
string
The message nonce
Properties
nonce
The message nonce to be used with encryption/decryption
since |
3.8.0 |
---|
Type(s)
string