Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

Why is a SHA-1 Hash 40 characters long if it is only 160 bit?

The title of the question says it all. I have been researching SHA-1 and most places I see it being 40 Hex Characters long which to me is 640bit. Could it not be represented just as well with only 10 ...
5
votes
5answers
3k views

Encoding a number, C# implementation of z-base-32 or something else?

I need to encode/decode an integer which is up to 9 digits long but most often 7 digits long. I'd like to make it easier to communicate/memorise - it will be communicated by phone, copied & ...
3
votes
3answers
349 views

Encrypt printable text so result is still printable (can be typed)

I want to encrypt some info for a licensing system and I want the result to be able to be typed in by the user. Update: This operation must be reversible (decrypt-able) E.g., Encrypt ( ...
3
votes
8answers
3k views

Fast open source checksum for small strings

I need a quick checksum (as fast as possilbe) for small strings (20-500 chars). I need the source code and that must be small! (about 100 LOC max) If it could generate strings in Base32/64. (or ...
2
votes
1answer
264 views

Java implementation of Crockford's Base32 encoding/decoding [closed]

I'm looking for an implementation of Crockford's Base32 encoding/decoding in Java. Specifically, that means a Java library that I can use in my projects. Alternatively, some code example to do the ...
1
vote
1answer
182 views

base32 image for img tag

I have faced an interesting thing as... if I use this code to download image as a string for Base64 encoded byte array it works fine data:image/png;base64,<String> But I was tring to encode ...
1
vote
1answer
154 views

Base32 implementation in Delphi

Does anyone have base32 implementation in Delphi? I found: http://cc.embarcadero.com/item/21566 but it is not exactly base32 (Base32 is a base-32 transfer encoding using the twenty-six letters A-Z ...
1
vote
2answers
184 views

how to encode int with base32 in sql server 2008

i am looking to encode an INT to BASE32 string in SQL Server 2008. Any suggestions of built-in function or perhaps a custom function? Thanks
1
vote
2answers
226 views

What is base32 encoding?

There is enough information on how to implement base32 encoding or the specification of base32 encoding but I don't understand what it is, why we need it and where are the primary applications. Can ...
1
vote
1answer
124 views

Groovy Base32 conversions

I am unable to use the fabulous tr() at the moment as I can only use Groovy 1.7.1 and wanted to know if there is an elegant way of going backwards and forwards between string and number encoded with ...
1
vote
1answer
88 views

Groovy to Biginteger

As the reverse of i.toString(32) is there a better (i.e. working) method to use instead of i = Integer.parseInt(string, 32) to create a BigInteger, as the string I want to pass is 11 'characters' ...
1
vote
4answers
922 views

base32 conversion in C++

does anybody know any commonly used library for C++ that provides methods for encoding and decoding numbers from base 10 to base 32 and viceversa? Thanks, Stefano
1
vote
2answers
809 views

Java z-base-32 encoding algorithm

I'm searching for an implementation of z-base-32 enc algo in java, any suggestions? (encoding and decoding)
0
votes
0answers
50 views

Using Crockford's base 32 for IDs in URLs?

I'd like to write some IDs for use in URLs in Crockford's base32. I'm using the base32 npm module. So, for example, if the user types in http://domain/page/4A2A I'd like it to map to the same ...
0
votes
3answers
269 views

Python: Integer to Base 32 hex (aka. Triacontakaidecimal)

Ok so going from Base 32 hex (aka. Triacontakaidecimal) to integer is pretty easy for example: >>>int("v", 32) 31 How do you do it the other way around however? I was thinking of setting ...
0
votes
1answer
106 views

Convert a Perl function to PHP

I want to convert the perl function below to PHP function, if someone could help a little bit I'd appreaciate it: sub encode32 { $_=shift; my($l,$e); $_=unpack('B*',$_); ...
0
votes
2answers
534 views

Base32 decode in actionscript

How do I decode a Base32 encoded string in Actionscript? /Martin
0
votes
3answers
1k views

Does php have a built in coversion to base32 values?

I know I can use number_format, but is there a way to represent base32 numbers? For example, hex can be represented with 0x... and octal can be represented with a 0 in the front. Is there anything to ...