Laravel – How to decrypt AES encrypted String in Flutter/Dart?
I have a string that was encrypted in Laravel PHP. The encryption function is as below. public function getEncryptedString() { try { $m2 = Crypt::encryptString('Thismessagewillbeencrypted', 'theencryptionkey'); return response()->json([ 'm2' => $m2 ? $m2 : null, ], 200); } catch (Exception…