Skip to main content
Stack Overflow for Teams is now Stack Internal: See how we’re powering the human intelligence layer of enterprise AI. Read more >
Filter by
Sorted by
Tagged with
1 vote
1 answer
541 views

I was initially encrypting files directly without using chunks and started encountering an error when trying to encrypt large files: Allowed memory size of 134217728 bytes exhausted After some ...
9uifranco's user avatar
  • 560
0 votes
1 answer
643 views

I have a simple Angular 16 login/register form; when a user registers in my app, register data is sent via http request to my laravel backend, where i handle user registration. before i create a new ...
Ricardo Carneiro's user avatar
0 votes
3 answers
2k views

I am storing users credentials for a 3rd party service in my database. When storing, these are cast to encrypted as below: protected $casts = [ 'enabled' => 'boolean', 'token_is_valid' =>...
J Foley's user avatar
  • 1,097
1 vote
2 answers
2k views

I am trying to fetch the secret encryption key from laravel so that I can use it on the mobile app end for decrypting the data. When I run the command in the laravel php artisan key:generate It ...
Arif's user avatar
  • 417
0 votes
0 answers
772 views

I'm working on a project and I want to use encrypt/decrypt for database values. I encrypted the 'email' field, and it works fine, but when I want to run this query I got an error. The query: Users::...
daniel19's user avatar
0 votes
2 answers
5k views

How can I search data in Laravel using like operator, I have used encrypt($searchValue); OR Crypt::encryptString($searchValue) But both return full encrypted data but I need searchable data using ...
Mdr Kuchhadiya's user avatar
0 votes
0 answers
467 views

In the Laravel, I have encrypted records in my table and I would like to search these records. The problem occur when I do search and encrypt again my search term, it encrypts it again generating ...
Manimaran G's user avatar
0 votes
1 answer
336 views

I'm using the package betterapp\LaravelDbEncrypter to encrypt some data in the DB. If something goes wrong and I lose the access to the server, even if I have a back up of the database in a ...
Inigo EC's user avatar
  • 2,338
0 votes
1 answer
2k views

I am new in laravel, try to encrypt the uploaded file. Here is my controller: if ($file != null && !empty($file)) { $userfile = DNEUser::find($lastUserId); $user_store_pic = $request-&...
Sagar Parikh's user avatar
2 votes
2 answers
4k views

I'm using an Encryptable trait to encrypt my data for the a Room model. RoomController (/rooms) returns the decrypted data but ApiRoomController (/api/rooms) does not. How could I make it returns the ...
Lucien Dubois's user avatar
0 votes
1 answer
421 views

I am saving the encrypted user data (including user email which is used to login) with Laravel's built in encryption method. At login, I have to provide encrypted email for authentication but ...
Sarosh Ali's user avatar
6 votes
3 answers
4k views

Setup Given the following: $s = Crypt::encryptString('a'); Is it possible to know, for a string of length 1, the possible range of lengths of $s? Context Database storage - need to store an encrypted ...
Chris's user avatar
  • 58.9k
0 votes
1 answer
493 views

I have some trouble with Laravel and Ajax that I haven't been able to Google or Stackoverflow my way out of. Whatever solutions I've seen, I've already accounted for. Sporadically I'm getting a 500 ...
Jens's user avatar
  • 1,315
0 votes
1 answer
695 views

We are building application where we need to store a data encrypted in database and instead of using MySql AES_ENCRYPT and AES_DECRYPT we are plaining to use laravel's inbuilt encrypt & decrypt ...
Vinod Raut's user avatar
2 votes
2 answers
434 views

I can't overwrite the $user->id in the following code : $followers_list = follow::where('followed_id',$userId['userId']) ->get(); foreach($followers_list as $follower) ...
blank94's user avatar
  • 404
0 votes
1 answer
116 views

I send invitation by mail to users with a encrypted email to know which user respond to invitation. Something like: Hello, click on this link to start learning: https://example.org/start-learning?e=...
rap-2-h's user avatar
  • 32.3k