WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

726

(post is archived)

[–] 2 pts

Did you ask your rabbi?

[–] 1 pt

Well then you are a retarded faggot. Rainbow tables are collections of hashes not dictionary words. Skiddie.

[–] 0 pt

why are they called rainbow tables then? because the hashes originally were represented as a hex colore like #FFF?

[–] 0 pt (edited )

Not supporting the newfag. just pointing out the fact that it could easily be done.

hash from string

djb2

unsigned long hashstring(unsigned char *str)
{
    unsigned long hash = 5381;
    int c;

    while (c = *str++)
        hash = ((hash << 5) + hash) + c; /* hash * 33 + c */

    return hash;
}

super easy. I use this exact code in one of my programs.

Rainbow tables. Now there's a phrase I haven't seen in a good long time.