Matthieu Bourgain

Results 56 comments of Matthieu Bourgain

Hello, I have the same problem, with a secure inclusion or not, event after a hard reset. When I try to update the volume: `ERROR: Dropping command, expected response not...

Thanks, I will make a PR as soon as I find a solution to generate a working hash :grin:

fyi, I opened a bug report to MySQL https://bugs.mysql.com/bug.php?id=114610&thanks=4

We made a python script ([based on this](https://crypto.stackexchange.com/a/111174)) to generate a MySQL hash compatible with caching_sha2_password plugin, what is the best way to integrate it in this module ? Maybe...

> That is quite amazing job you did there @Aohzan to replicate the MySQL behavior! But I'm not liking the fact that you didn't get an answer from the developers...

it's the name of digest used in the algorithm: https://www.akkadia.org/drepper/SHA-crypt.txt I update the script to add the link, and renamed with `digest_` prefix those variables

there is the updated script ```python """Generate MySQL caching_sha2_password hash for a given password and salt.""" import hashlib def to64(v: int, n: int) -> str: """Convert a 32-bit integer to...

Yes but in a classic pipeline when we need to run a job again it just use what was exported by previous job, we don't need to run all needs...

yes I could check if `.gitlab-ci-local/artifacts/my_needed_job` exists, it will ask a custom command in the pre-commit config but I can do that otherwise `--ensure-needs` is a good name :+1: