Decode a string 'BHQsZMaQQok='

108 Views Asked by At

I'm trying to decode a string like 'BHQsZMaQQok='.

All I know about the string is that it must be a number. I can find more encrypted string if it is necessary.

1

There are 1 best solutions below

2
On

It's a base64 string, 8 bytes: 04 74 2C 64 C6 90 42 89

Interpreted as an IEEE754 double, it is 3.3121005957308838680392659232E-287

As a big-endian long: 320930284789842569

As a little-endian long: -8556117160291961852

One can only guess how to interpret it...