Lines Matching refs:cdata
102 u_int32_t cdata[BCRYPT_WORDS]; in bcrypt_hashpass() local
171 cdata[i] = Blowfish_stream2word(ciphertext, 4 * BCRYPT_WORDS, &j); in bcrypt_hashpass()
175 blf_enc(&state, cdata, BCRYPT_WORDS / 2); in bcrypt_hashpass()
178 ciphertext[4 * i + 3] = cdata[i] & 0xff; in bcrypt_hashpass()
179 cdata[i] = cdata[i] >> 8; in bcrypt_hashpass()
180 ciphertext[4 * i + 2] = cdata[i] & 0xff; in bcrypt_hashpass()
181 cdata[i] = cdata[i] >> 8; in bcrypt_hashpass()
182 ciphertext[4 * i + 1] = cdata[i] & 0xff; in bcrypt_hashpass()
183 cdata[i] = cdata[i] >> 8; in bcrypt_hashpass()
184 ciphertext[4 * i + 0] = cdata[i] & 0xff; in bcrypt_hashpass()
194 explicit_bzero(cdata, sizeof(cdata)); in bcrypt_hashpass()