Hi I have a small project work on laravel &win c#. I have encrypted from laravel as below.
use Illuminate\Support\Facades\Crypt;
///
$user->balance = Crypt::encrypt($balance);
I can decrypt on laravel as below.
$balance = Crypt::decrypt($this->balance);
But I do not know how to decrypt using c# with the same algorithm. Any advice or guidance on this would be greatly appreciated, Thanks.