I am trying to implement base32 with a custom charset, basically [A-Z0-5].
Unfortunately I am failing to build the lookup table for that.
Does anyone have any pointers on how I can go about building the whole encoding and decoding scheme?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have a look at existing base32 implementations ( https://github.com/agnoster/base32-js ), it’s usually not longer than a few 100 lines.