You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to add a Base64 implementation to the repository. Base64 is an important and widely used algorithm that allows safe conversion of binary data to text and back, making it essential for authentication, data storage, file transmission, and secure communication.
A Base64Util class with encode and decode methods.
Unit tests covering valid input, invalid input, and edge cases.
Additional Information
I’m adding this algorithm in the Conversion folder as it provides functionality to convert text to Base64 format and also reverse it back to the original text.