I don’t have other ideas… let’s wait for someone with greater experience than me.
Sure thanks. Buy the way I’m using the encoded string (even if I use with space it works) for now.
Base16 encoding should always work as it treats everything like it is just a number.
The “space” character is simply the value of 20 in hexadecimal. Therefore a hashed string with spaces in hex encoding will not break the space delimited parsing of bash and other CLI terminals. Similarly if you have ever noticed %20 in your browser URL bar that is the same hexadecimal escape sequence for spaces which otherwise would not work correctly in a URL
1 Like