Crypt::supported PHP Method

supported() public static method

Determine if the given key and cipher combination is valid.
public static supported ( string $key, string $cipher ) : boolean
$key string
$cipher string
return boolean
        public static function supported($key, $cipher)
        {
            return \Illuminate\Encryption\Encrypter::supported($key, $cipher);
        }