Encrypter
class Encrypter implements Encrypter (View source)
Properties
protected string | $key | The encryption key. | |
protected string | $cipher | The algorithm used for encryption. |
Methods
void | __construct(string $key, string $cipher = 'AES-128-CBC') Create a new encrypter instance. | |
static bool | supported(string $key, string $cipher) Determine if the given key and cipher combination is valid. | |
string | encrypt(string $value) Encrypt the given value. | |
string | decrypt(string $payload) Decrypt the given value. | |
string | hash(string $iv, mixed $value) Create a MAC for the given value. | |
array | getJsonPayload(string $payload) Get the JSON array from the given payload. | |
bool | validPayload(mixed $payload) Verify that the encryption payload is valid. | |
bool | validMac(array $payload) Determine if the MAC for the given payload is valid. | |
string | getKey() Get the encryption key. |
Details
void __construct(string $key, string $cipher = 'AES-128-CBC')
Create a new encrypter instance.
static bool supported(string $key, string $cipher)
Determine if the given key and cipher combination is valid.
string encrypt(string $value)
Encrypt the given value.
string decrypt(string $payload)
Decrypt the given value.
protected string hash(string $iv, mixed $value)
Create a MAC for the given value.
protected array getJsonPayload(string $payload)
Get the JSON array from the given payload.
protected bool validPayload(mixed $payload)
Verify that the encryption payload is valid.
protected bool validMac(array $payload)
Determine if the MAC for the given payload is valid.
string getKey()
Get the encryption key.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Encryption/Encrypter.html