Tuğrul Topuz

Results 28 comments of Tuğrul Topuz

I encountered this bug. I just simply try compact json string to expanded array using callback transformer instance below. ```php class MemberSocialFormType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array...

The problem causes by the execution order of dispatch `FormEvents::PRE_SET_DATA` and `$this->modelToNorm($modelData)` https://github.com/symfony/form/blob/7.0/Form.php#L283-L297 Changing execution order and including both `$modelData` and `$normData` to the `$event = new PreSetDataEvent($this, $modelData);` can...

I wrote the below token manager due to lack of this option that I provided in this pull request. Framework should not force me to write weird stuff. ```php

> OK, so you do an AJAX request to get the token. Honestly, if you rely on JS to prevent CSRF requests, you'd better use the double submit strategy. Problem...

Hi @jdgrieco Thank you for bringing the compatibility issue with the cryptian module to our attention. Based on your report, it appears that there might be a mismatch between the...

Padding is required in block encryption, even when data perfectly fits the block size, because padding schemes ensure that decryption can distinguish between data and padding. Without padding, there would...

I think the problem is solved by referenced branch. Block shifting is only necessary on decrypt stream and I separated implementation of block shifting. > for any non-negative integer n...

I merged the branch and published to the NPM. Your advice can be implemented as an option to spaces and nulls padding modules. Complete skipping is not a good idea...