Tagged Questions
The base62 tag has no wiki summary.
17
votes
11answers
8k views
Base 62 conversion in Python
How would you convert an integer to base 62 (like hexadecimal, but with these digits: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ').
I have been trying to find a good Python ...
6
votes
2answers
246 views
Creating a salt in python
How would I create a random, 16-character base-62 salt in python? I need it for a protocol and I'm not sure where to start. Thanks.
4
votes
7answers
3k views
Convert MD5 to base62 for URL
I have a script to convert to base 62 (A-Za-z0-9) but how do I get a number out of MD5?
I have read in many places that because the number from an MD5 is bigger than php can handle as an integer it ...
2
votes
3answers
269 views
Will this obfuscation algorithm for a URL shortener work?
DISCLAIMER: I am not asking how to make a URL shortener (I have already implemented the "bijective function" answer found HERE that uses a base-62 encoded string). Instead, I want to expand this ...
2
votes
5answers
2k views
PHP - How to base_convert() up to base 62
I need a base_convert() function that works from base 2 up to base 62 but I'm missing the math I need to use, I know that due to the limitations of PHP I need to make use of bcmath, which is fine.
...
1
vote
4answers
494 views
Please explain this base 62 PHP conversion function/algorithm
Could anyone please explain the code below? That or point me to some resources shedding some light :)
It converts an integer to a base62 string.
private static $_characters = ...
1
vote
1answer
567 views
Obfuscating ids in Rails app
I'm trying to obfuscate all the ids that leave the server, i.e., ids appearing in URLs and in the HTML output.
I've written a simple Base62 lib that has the methods encode and decode. Defining—or ...
1
vote
1answer
413 views
Multi-base conversion - using all combinations for URL shortener
I am making an URL shortener, and I am struggling with the optimal way of encoding a number (id) into a character string.
I am using the characters 0-9,A-Z,a-z so it will basically be a base-62 ...
0
votes
0answers
32 views
Does anyone have the code to convert integer byte arrays to base62 in c#?
I have an encrypted array bytes, and want to convert them to base62, could anyone give me the encode and decode function written in C# please?
0
votes
3answers
167 views
How to do an Encode/Decode function in Base62 with no obvious pattern in the Results?
I have a site where users must confirm their e-mail using a typical e-mail confirmation script with a specific (but long) Confirmation Link for each user that includes the usual hash parameter.
The ...
0
votes
1answer
53 views
How to know that how much shorturl hashes could be generated?
How can I know that how much shorturl hashes could be generated by my little app in base62?
So, if I write like this;
$len = 4;
$url = "http://stackoverflow.com/";
// base62
$chrs = ...
0
votes
3answers
470 views
convert md5 string to base 62 string in c++
i'm trying to convert an md5 string (base 16) to a base 62 string in c++. every solution i've found so far for converting to base 62 only works if you can represent your number as a 64 bit integer or ...
0
votes
4answers
101 views
jQuery having trouble selecting things in different cases
Note: If you're 'just' a jQuery developer some things in this post may look a tad complex (Base62 encoding etc.) - it's really not. Although the more technical details are relevant to the question, ...