Home
last modified time | relevance | path

Searched refs:sbox_table (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/crypto/des/
H A Ddes_impl.c59 static const uint64_t sbox_table[8][64]= variable
482 t = sbox_table[0][t >> 58] | in des_crypt_impl()
483 sbox_table[1][(t >> 44) & 63] | in des_crypt_impl()
484 sbox_table[2][(t >> 38) & 63] | in des_crypt_impl()
485 sbox_table[3][(t >> 32) & 63] | in des_crypt_impl()
486 sbox_table[4][(t >> 26) & 63] | in des_crypt_impl()
487 sbox_table[5][(t >> 15) & 63] | in des_crypt_impl()
488 sbox_table[6][(t >> 9) & 63] | in des_crypt_impl()
489 sbox_table[7][(t >> 3) & 63]; in des_crypt_impl()