sbox 30 lib/crypto/arcfour.c for (ind = 0; ind < sizeof(state->sbox); ind++) { sbox 31 lib/crypto/arcfour.c state->sbox[ind] = (uint8_t)ind; sbox 34 lib/crypto/arcfour.c for (ind = 0; ind < sizeof(state->sbox); ind++) { sbox 37 lib/crypto/arcfour.c j += (state->sbox[ind] + key->data[ind%key->length]); sbox 39 lib/crypto/arcfour.c tc = state->sbox[ind]; sbox 40 lib/crypto/arcfour.c state->sbox[ind] = state->sbox[j]; sbox 41 lib/crypto/arcfour.c state->sbox[j] = tc; sbox 57 lib/crypto/arcfour.c state->index_j += state->sbox[state->index_i]; sbox 59 lib/crypto/arcfour.c tc = state->sbox[state->index_i]; sbox 60 lib/crypto/arcfour.c state->sbox[state->index_i] = state->sbox[state->index_j]; sbox 61 lib/crypto/arcfour.c state->sbox[state->index_j] = tc; sbox 63 lib/crypto/arcfour.c t = state->sbox[state->index_i] + state->sbox[state->index_j]; sbox 64 lib/crypto/arcfour.c data[ind] = data[ind] ^ state->sbox[t]; sbox 5 lib/crypto/arcfour.h uint8_t sbox[256]; sbox 118 lib/replace/crypt.c static int sbox[8][4][16]= { sbox 293 lib/replace/crypt.c #define s_lookup(i,s) sbox[(i)][(((s)>>4) & 0x2)|((s) & 0x1)][((s)>>1) & 0xf]; sbox 41 source3/libsmb/ntlmssp_sign.c dump_data_pw(description, state->sbox, sizeof(state->sbox)); sbox 108 source3/libsmb/smbdes.c static const uchar sbox[8][4][16] = { sbox 238 source3/libsmb/smbdes.c b[j][k] = (sbox[j][m][n] & (1<<(3-k)))?1:0; sbox 400 source4/auth/ntlmssp/ntlmssp_sign.c gensec_ntlmssp_state->crypt.ntlm2.send_seal_arcfour_state->sbox, sbox 401 source4/auth/ntlmssp/ntlmssp_sign.c sizeof(gensec_ntlmssp_state->crypt.ntlm2.send_seal_arcfour_state->sbox)); sbox 421 source4/auth/ntlmssp/ntlmssp_sign.c gensec_ntlmssp_state->crypt.ntlm2.recv_seal_arcfour_state->sbox, sbox 422 source4/auth/ntlmssp/ntlmssp_sign.c sizeof(gensec_ntlmssp_state->crypt.ntlm2.recv_seal_arcfour_state->sbox)); sbox 436 source4/auth/ntlmssp/ntlmssp_sign.c dump_data_pw("NTLMSSP hash:\n", gensec_ntlmssp_state->crypt.ntlm.arcfour_state->sbox, sbox 437 source4/auth/ntlmssp/ntlmssp_sign.c sizeof(gensec_ntlmssp_state->crypt.ntlm.arcfour_state->sbox)); sbox 107 source4/libcli/auth/smbdes.c static const uint8_t sbox[8][4][16] = { sbox 237 source4/libcli/auth/smbdes.c b[j][k] = (sbox[j][m][n] & (1<<(3-k)))?1:0;