Home
last modified time | relevance | path

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

/net-tools-2.7.6/mbedtls-2.4.0/library/
Dblowfish.c102 uint32_t Xl, Xr, temp; in blowfish_enc() local
105 Xl = *xl; in blowfish_enc()
110 Xl = Xl ^ ctx->P[i]; in blowfish_enc()
111 Xr = F( ctx, Xl ) ^ Xr; in blowfish_enc()
113 temp = Xl; in blowfish_enc()
114 Xl = Xr; in blowfish_enc()
118 temp = Xl; in blowfish_enc()
119 Xl = Xr; in blowfish_enc()
123 Xl = Xl ^ ctx->P[MBEDTLS_BLOWFISH_ROUNDS + 1]; in blowfish_enc()
125 *xl = Xl; in blowfish_enc()
[all …]