Because I am setting up vnc server, I need to convert string to base64 to setup password. (How to setup vnc password
Say, if I want my password to be qwerty
, I have to place the encoded string into the password into conf file.
I see there is a base64
utility in Ubuntu. man base64. echo qwerty | base64
gives cXdlcnR5Cg==
. But this doesn't work.
But if I use the online base 64 tool. qwerty
is encoded to cXdlcnR5
. This string WILL WORK.
Question: why the two base64 encode gives different result?
echo adds a '\n' ; try echo -n
$ echo -n qwerty | base64
cXdlcnR5
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With