https://bugs.kde.org/show_bug.cgi?id=362805

--- Comment #6 from Allen Winter <win...@kde.org> ---
yep. if you look at Bruce Schneier's blowfish.c you'll see code like this:
   #ifdef little_endian
     data = ((data & 0xFF000000) >> 24) |
        ((data & 0x00FF0000) >>  8) |
        ((data & 0x0000FF00) <<  8) |
        ((data & 0x000000FF) << 24);
   #endif
which is what we do with the shuffle macro.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to