Is it possible to decrypt one-way encryption? (with real data & encrypted data)

HWANG

I'm Korean so English skill is very low.

I don't know encrpytion method (LIKE SHA, MD5 anything else..)

only know that this data is used one-way encryption.

I have 15,000 amounts of real data

and have 60,000 amounts of encrypted data

(15,000 real data is matched with 15,000 encrypted data)

1) real data is only numbers (length is 8 )

2) encrypted data length is 80

Is it possible to decrypt one-way encryption?

=========Here is Sample matched data============

32700130 (real data)

JDQ4MTYyMiM1MSMkMSMkNCMkOTIkMzgxMzUxIzExIyQxIyQzIyQ4OSQyNjE4MzIjNDEjJDEjJDQjJDgz

11100079

JDQ4MTg4MSM1MSMkMSMkMCMkODkkMzgxMzUxIzExIyQxIyQzIyQ3OSQzNjE4MzIjODEjJDEjJDYjJDgz

11100443

JDQ4MTg4MSM1MSMkMSMkMCMkODkkMzgxMzUxIzExIyQxIyQzIyQ2MiQzNjE0ODEjNTEjJDEjJDYjJDgz

11100494

JDQ4MTg4MSM1MSMkMSMkMCMkODkkMzgxMzUxIzExIyQxIyQzIyQ2MiQ0NjEwMDIjNjEjJDEjJDAjJDgz

35100010

JDQ4MTYyMiM2MSMkMSMkNiMkODkkMzgxMzUxIzExIyQxIyQzIyQ3OSQyNjEwMDIjNDEjJDEjJDQjJDgz

31100864

JDQ4MTYyMiM1MSMkMSMkMCMkODkkMzgxMzUxIzExIyQxIyQzIyQxMyQyNjE4MzIjNzEjJDEjJDgjJDgz

WDS

Although hashing is not intended for use in any way like lossy compression, it does compress, and it is very lossy. There is not only no known way to reverse a good hash. There is no theoretically possible way either.

Consider the entire set of numbers 10,000 digits long. There are 10^10000 possibilities. All of them can be hashed into a 512 bit hash. But a 512 bit hash has 2^512, or roughly 10^100, possibilities. So each of those 10^100 possible hashes in the SHA512 algorithm would contain 10^100 collisions if you could hash every 10,000 digit number.

Yes, that is a whole lot of collisions. Hash algorithms are collision resistant, but it is impossible to make one collision proof. Don't bet you'll live long enough to see a single such collision because you probably won't. But if you could hash every 10,000 digit number you would find lots of them.

Then the question comes. If you have just the hash, which of those 10^100 different plain texts did it come from? That information is not contained in the hash itself. There is no way to go from a hash to the plain text that resulted in it. In fact the way hash functions are built, you cannot even examine any hash or set of hashes and say with confidence the setting of a single bit of the original bytes. If you could, we would say that hash is broken and nobody would use it any more.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Is it possible to decrypt one-way encryption? (with real data & encrypted data)

From Dev

decrypt ssl encrypted data in python

From Dev

Failing to decrypt Encrypted Data lua

From Dev

Failing to decrypt Encrypted Data lua

From Dev

Large data not encrypted with RSA Encryption

From Dev

Steps to decrypt encrypted data in Crypto++ in libgcrypt

From Dev

Tag Mismatch when trying to decrypt encrypted data

From Dev

Decrypt AES-128 encrypted data on iOS

From Dev

Decrypt large amount of RSA encrypted data

From Dev

How to set a machine specific encryption to allow only one machine to decrypt data

From Dev

Backing up data in an encrypted way

From Java

How to decrypt AES-encrypted files with Data Connection?

From Java

Why can't java decrypt CryptoJS encrypted data?

From Dev

How to use openssl to decrypt data encrypted by Java using AES

From Dev

Encrypted chef data bag json file, how to decrypt and show contents?

From Dev

Decrypt Data From DB Table Encrypted With CryptProtectData in VB.net

From Dev

How to Decrypt data that uses Chilkat for Encryption without using Chilcat library

From Dev

Golang AES StreamReader encryption - Example omits any authentication of the encrypted data

From Dev

How can I convert an encrypted data as string and decrypt the data in SQL Server 2008

From Dev

How can I convert an encrypted data as string and decrypt the data in SQL Server 2008

From Dev

If a user has access to multiple encrypted pieces of data with AES encryption, would they be able to guess the encryption key?

From Dev

Data encryption algorithm which decrypts the data only once but need a different key to decrypt it again

From Dev

Encryption of data between clients and firebase real time database

From Dev

android cipher doesn't decrypt first 16 bytes / characters of encrypted data

From Dev

The report server Cannot decrypt the symmetric key used to access sensitive or encrypted data in a report server database SSRS Error

From Dev

How can I decrypt data encrypted with 'rijndael-128-cbc' in ruby

From Dev

unable to decrypt data in Node which is encrypted in Java using AES-GCM-256

From Dev

The report server Cannot decrypt the symmetric key used to access sensitive or encrypted data in a report server database SSRS Error

From Dev

How can I decrypt data encrypted with 'rijndael-128-cbc' in ruby

Related Related

  1. 1

    Is it possible to decrypt one-way encryption? (with real data & encrypted data)

  2. 2

    decrypt ssl encrypted data in python

  3. 3

    Failing to decrypt Encrypted Data lua

  4. 4

    Failing to decrypt Encrypted Data lua

  5. 5

    Large data not encrypted with RSA Encryption

  6. 6

    Steps to decrypt encrypted data in Crypto++ in libgcrypt

  7. 7

    Tag Mismatch when trying to decrypt encrypted data

  8. 8

    Decrypt AES-128 encrypted data on iOS

  9. 9

    Decrypt large amount of RSA encrypted data

  10. 10

    How to set a machine specific encryption to allow only one machine to decrypt data

  11. 11

    Backing up data in an encrypted way

  12. 12

    How to decrypt AES-encrypted files with Data Connection?

  13. 13

    Why can't java decrypt CryptoJS encrypted data?

  14. 14

    How to use openssl to decrypt data encrypted by Java using AES

  15. 15

    Encrypted chef data bag json file, how to decrypt and show contents?

  16. 16

    Decrypt Data From DB Table Encrypted With CryptProtectData in VB.net

  17. 17

    How to Decrypt data that uses Chilkat for Encryption without using Chilcat library

  18. 18

    Golang AES StreamReader encryption - Example omits any authentication of the encrypted data

  19. 19

    How can I convert an encrypted data as string and decrypt the data in SQL Server 2008

  20. 20

    How can I convert an encrypted data as string and decrypt the data in SQL Server 2008

  21. 21

    If a user has access to multiple encrypted pieces of data with AES encryption, would they be able to guess the encryption key?

  22. 22

    Data encryption algorithm which decrypts the data only once but need a different key to decrypt it again

  23. 23

    Encryption of data between clients and firebase real time database

  24. 24

    android cipher doesn't decrypt first 16 bytes / characters of encrypted data

  25. 25

    The report server Cannot decrypt the symmetric key used to access sensitive or encrypted data in a report server database SSRS Error

  26. 26

    How can I decrypt data encrypted with 'rijndael-128-cbc' in ruby

  27. 27

    unable to decrypt data in Node which is encrypted in Java using AES-GCM-256

  28. 28

    The report server Cannot decrypt the symmetric key used to access sensitive or encrypted data in a report server database SSRS Error

  29. 29

    How can I decrypt data encrypted with 'rijndael-128-cbc' in ruby

HotTag

Archive