-2

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.

Vishal Suthar
  • 17,013
  • 3
  • 59
  • 105
Mentor
  • 101
  • 1
  • 8

1 Answers1

5

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...

fejesjoco
  • 11,763
  • 3
  • 35
  • 65
  • The number for this string is: 910619. I think this is a triple DES encription but can't find the secret key. – Mentor Dec 30 '13 at 13:47
  • @MShevroja Finding a triple DES key is not possible without more information about the key. Brute forcing the key (at minimum testing 2^112 values, possibly 2^168 values) is not feasible. – Maarten Bodewes Jan 01 '14 at 13:26