Published
- 1 min read
base64 decode ruby
The solution for this is noted below
base64 decode ruby
Solution
data = Base64.encode64("akshay")
decoded_data = Base64.decode64(data)
Try other methods by searching on the site. That is if this doesn’t work