Skip Menu |

This queue is for tickets about the Net-Google-AuthSub-Once CPAN distribution.

Report information
The Basics
Id: 56338
Status: new
Priority: 0/
Queue: Net-Google-AuthSub-Once

People
Owner: Nobody in particular
Requestors: julien [...] sobrier.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Base64 encoding introduces white spaces
By default encode_base64 adds a white space every 76 characters, and a line break at the end of the string. Replace my $sig = encode_base64($private_key->sign($data)); By my $sig = encode_base64($private_key->sign($data), '');