marshallpierce / rust-base64

base64, in rust
Apache License 2.0
615 stars 115 forks source link

Add `RFC 2045` standard #200

Closed FreePhoenix888 closed 1 year ago

FreePhoenix888 commented 1 year ago

https://en.wikipedia.org/wiki/Base64#:~:text=RFC%202045%3A%20Base64%20transfer%20encoding%20for%20MIME

marshallpierce commented 1 year ago

You can define any alphabet you want: https://docs.rs/base64/0.20.0-alpha.1/base64/alphabet/struct.Alphabet.html

0.20.0-alpha.1 is fine to use in production as long as you're OK with some relatively minor further changes before 0.20.0, which is coming out soon.

FreePhoenix888 commented 1 year ago

You can define any alphabet you want: https://docs.rs/base64/0.20.0-alpha.1/base64/alphabet/struct.Alphabet.html

0.20.0-alpha.1 is fine to use in production as long as you're OK with some relatively minor further changes before 0.20.0, which is coming out soon.

Thank you