I found that some libraries out there use a slightly different base64 encoding, namely the "adapted base64 encoding", which is the same as regular base64 encoding, but with the + replaced by the ., and having no padding characters.
Would be nice (and not too much work, I think?) to add something like Data.ByteString.Base64.Adapted to handle this type of base64 encoding?
I found that some libraries out there use a slightly different
base64encoding, namely the "adapted base64 encoding", which is the same as regular base64 encoding, but with the+replaced by the., and having no padding characters.Would be nice (and not too much work, I think?) to add something like
Data.ByteString.Base64.Adaptedto handle this type of base64 encoding?