junior does
junior does

Reputation: 1

How to decrypt a base64 string =

I have no idea how to decrypt this hash, there are 6 numbers in the hash of (0sulka7svV5t/2SCKN94ppVxjH8=), and there are 3 numbers in the hash less than the ones (ZeFBdgJKvi0=)

/sUdBvF7oewQxksYWyKrWN9Wiz0=
ZeFBdgJKvi0=
0sulka7svV5t/2SCKN94ppVxjH8=
wvZogiIBwHI=

Is there any way that I can decrypt a base64 string (i.e. 0sulka7svV5t/2SCKN94ppVxjH8=) back to an integer? I have no idea how it is encrypted (key or method used)

Upvotes: 0

Views: 7659

Answers (1)

user39950
user39950

Reputation: 83

I think you are confusing Decoding and Decrypting. Read this question to understand the difference.

Base64 is an encoding, the strings you've posted are encoded.

You can DECODE the base64 values into bytes (so just a sequence of bits). And from there, you need to know what these bytes represent and what original encoding they were represented in, if you wish to convert them again to a legible format.

You can use websites like this one to convert between base64 and other representations. Yours definitely do not represent any valid ASCII or UTF-8 strings.

Upvotes: 1

Related Questions