Searched refs:pc1_table (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/crypto/des/
H A Ddes_ks.c29 static uint64_t pc1_table[2][128]= variable
258 c = pc1_table[0][key >> 57] |
259 ((pc1_table[0][(key >> 49) & 127ULL]) << 1) |
260 ((pc1_table[0][(key >> 41) & 127ULL]) << 2) |
261 ((pc1_table[0][(key >> 33) & 127ULL]) << 3) |
262 pc1_table[1][(key >> 25) & 127ULL] |
263 ((pc1_table[1][(key >> 17) & 127ULL]) << 1) |
264 ((pc1_table[1][(key >> 9) & 127ULL]) << 2) |
265 ((pc1_table[1][(key >> 1) & 127ULL]) << 3);

Completed in 56 milliseconds