Crc32 short string decryption

I am retrieving crc32 hash lists that contain file names, not contents.

I need to be able to decrypt strings that are hashed names such as "vacationplans_2010.txt"

less than 25 characters long.

Is it possible?

+3
source share
3 answers

This is a one-way hash function. It cannot be decrypted.

+7
source

, , CRC32 -; ( ). - " -", CRC32 "" .

: 25 2 ^ 32, -. , , CRC32 - ( ). "" ( , , - , ).

, . - ( 25 ). - . CRC32 , ( , ). , . artice.

EDIT: ( , ):

, ..... , "hard" : x f (x), .

- , , ( ) ( , ) ( -).

- .

+5

A hash function since CRC32 calculates a simple given value (variable). The calculation is not reversible - i.e. You cannot reliably get the original value, given only the hash.

+2
source

Source: https://habr.com/ru/post/1740315/


All Articles