Laravel 11: Encrypted string length for database (MySQL)
- In Laravel, as of this writing, the encryption string length different for different length of source string.
- Here is the list
- Encrypted string length: 200 for 1 - 15 chars
- Encrypted string length: 228 for 16 - 31 chars
- Encrypted string length: 256 for 32 - 47 chars
- ...
- In other words, for every 15 chars increases in source string length, the encrypted string length increased 28 chars accordingly.
- Which also means: if your table column with set to 200, it stores maximum 15 chars of source string length.
Hope it helps.
Comments