Encrypter
class Encrypter implements Encrypter (View source)
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 | getKey() Get the encryption key. |
Please login to continue.