Marcus Bointon

Results 250 comments of Marcus Bointon

This is especially important now that [iOS 12.1 requires CT for all apps](https://support.apple.com/en-us/HT205280).

Yes I'm aware of that, but it doesn't affect the robustness. I suspect the robustness problem is because GMP parses the input from right to left, so truncating a single...

Base64 decoding suffers exactly the same problem if you delete the *first* character of encoded text, but that's because it's *not* using GMP and is decoded left to right. From...

Yes, that's what I said. It is however, still very useful.

That's not quite so easy. Alpine doesn't have a MySQL package, or rather it does, but [it actually installs MariaDB](https://wiki.alpinelinux.org/wiki/Mysql). It seems that MySQL itself contains support for Alpine, but...

Any chance of merging this? All projects on gitlab using Laravel 8 schema dumps will be breaking because of this issue. What's here won't fix Alpine, but it will at...

For anyone running into this, I solved this by simply switching to [a different image](https://github.com/lorisleiva/laravel-docker), no other changes required, and it just works: image: lorisleiva/laravel-docker:8.0

[I asked about this on Twitter](https://twitter.com/synchrom/status/1465625957608431619?s=21) and got some very good replies.

[I found that reference](https://github.com/edbizarro/gitlab-ci-pipeline-php/issues/64). I checked, and it's correct – Debian buster does not provide a MySQL package (which I'm a bit surprised by). MySQL's policy on this is that...

I have found a workaround for this. In the gitlab.ci.yml file, instead of saying: services: mysql:8.0 say: services: - name: mysql:8.0 command: [ "--default-authentication-plugin=mysql_native_password" ] which makes the client use...