inertiajs / inertia

Inertia.js lets you quickly build modern single-page React, Vue and Svelte apps using classic server-side routing and controllers.
https://inertiajs.com
MIT License
6.56k stars 435 forks source link

[2.x] Fix multi byte strings in history encryption + test #2030

Closed joetannenbaum closed 1 month ago

joetannenbaum commented 1 month ago

Fixes the buffer size to account for multi-byte characters when encrypting history.

Fixes #2028

RobertBoes commented 1 month ago

As @buhrmi mentioned in his PR, is it really needed to take up 3 bytes for all characters, even if the content does not contain multibyte characters?

joetannenbaum commented 1 month ago

We allot for the maximum (3x the characters) but only encode what we've written.