Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

base64 gives incorrect result

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?

like image 465
user8328365 Avatar asked Jan 02 '23 18:01

user8328365


1 Answers

echo adds a '\n' ; try echo -n

$ echo -n qwerty | base64 
cXdlcnR5
like image 140
OznOg Avatar answered Jan 04 '23 09:01

OznOg