in reply to Re^5: STDERR Restore after redirect
in thread STDERR Restore after redirect
Hi. Thanks all. Moving on to the STARTTLS mode.
If I should start new topic, warn me.
AUTH PLAIN failed: 554 Security failure Server said: 554 Security failure
MIME::Base64 encode/decode
my $encodedString = "AUTH PLAIN " . encode_base64(join("\0", $auth->{user}, $auth->{ +user}, $auth->{password}), $CRLF); my $decodedString = decode_base64($encodedString) +; warn("decodedString '$decodedString'");
Encode produces:
AUTH PLAIN d2VibWFzdGVyXEBid21qY20udXMAd2VibWFzdGVyXEBid21qY20udXMAd21 +ANDA5MTNXTQ==
Decode produces:
D<5ݕѕqݵݕѕqݵݵ ]4
I thought the decoded string would be that same as the input string.No?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: STDERR Restore after redirect
by AnomalousMonk (Archbishop) on Apr 29, 2018 at 01:30 UTC | |
by tultalk (Monk) on Apr 29, 2018 at 02:45 UTC |