About 5,600,000 results
Open links in new tab
  1. What is base32 encoding? - Stack Overflow

    Mar 14, 2011 · Lower base = more digits to represent the same number. In this case, base64 is 5/6 the size of base32, because base32 gets you log2 (32)=5 bits per character, while base64 …

  2. c# - Base32 Decoding - Stack Overflow

    I have a base32 string which I need to convert to a byte array. And I'm having trouble finding a conversion method in the .NET framework. I can find methods for base64 but not for base32. …

  3. java - TOTP Base32 vs Base64 - Stack Overflow

    Every TOTP implementation (even FreeOTP by RedHat) I find uses Base32 encoding/decoding for its generated secret. Why is Base64 not used, since Base32 uses roughly 20 % more …

  4. how to convert a number to base32 in java as per RFC-4648

    Aug 15, 2020 · The word "base" is being used in 2 different contexts here: (1) the encoding scheme known as "base 32" for converting binary data to text; and (2) Taking a number and …

  5. How do you convert numbers between different bases in JavaScript?

    I would like to convert numbers between different bases, such as hexadecimal and decimal. Example: How do you convert hexadecimal 8F to decimal?

  6. base32 conversion in C++ - Stack Overflow

    Dec 16, 2009 · 3 Did you mean "base 10 to base 32", rather than integer to base32? The latter seems more likely and more useful; by default standard formatted I/O functions generate base …

  7. algorithm - Encoding a number, C# implementation of z-base-32 …

    Oct 30, 2016 · I'm looking to reduce the number of digits (whilst adding a checksum) using a base 32 scheme. I'm most in favour of z-base-32 (over the RFC4648 implementation) because of …

  8. Convert from decimal to any base number in Python

    Dec 11, 2017 · This function takes in any base-10 integer and returns the string representation of that number in its specified base-32 form: def encodeN(n,N,D ...

  9. Quickest way to convert a base 10 number to any base in .NET?

    I too was looking for a fast way to convert decimal number to another base in the range of [2..36] so I developed the following code. Its simple to follow and uses a Stringbuilder object as a …

  10. How to convert Microsoft Authenticator Secret Code for use in …

    Feb 24, 2023 · 5 Microsoft Authenticator yields an apparent 9-digit base-10 value for its secret code. This format doesn't work with other TOTP applications, which seem to expect Base32 …