Symbol: BF_ROUNDS
crypto/libressl/crypto/bf/bf_enc.c
100
#if BF_ROUNDS == 20
crypto/libressl/crypto/bf/bf_enc.c
106
r^=p[BF_ROUNDS+1];
crypto/libressl/crypto/bf/bf_enc.c
134
#if BF_ROUNDS == 20
crypto/libressl/crypto/bf/bf_enc.c
140
r^=k[BF_ROUNDS+1];
crypto/libressl/crypto/bf/bf_enc.c
160
l^=p[BF_ROUNDS+1];
crypto/libressl/crypto/bf/bf_enc.c
161
#if BF_ROUNDS == 20
crypto/libressl/crypto/bf/bf_enc.c
194
l^=k[BF_ROUNDS+1];
crypto/libressl/crypto/bf/bf_enc.c
195
#if BF_ROUNDS == 20
crypto/libressl/crypto/bf/bf_enc.c
67
#if (BF_ROUNDS != 16) && (BF_ROUNDS != 20)
crypto/libressl/crypto/bf/bf_locl.h
166
t= KEY[BF_ROUNDS+2 + 0 + ((R>>24)&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
167
t+= KEY[BF_ROUNDS+2 + 256 + ((R>>16)&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
168
t^= KEY[BF_ROUNDS+2 + 512 + ((R>>8 )&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
169
t+= KEY[BF_ROUNDS+2 + 768 + ((R )&0xFF)], \
crypto/libressl/crypto/bf/bf_skey.c
102
for (i=0; i<(BF_ROUNDS+2); i+=2)
crypto/libressl/crypto/bf/bf_skey.c
76
if (len > ((BF_ROUNDS+2)*4)) len=(BF_ROUNDS+2)*4;
crypto/libressl/crypto/bf/bf_skey.c
80
for (i=0; i<(BF_ROUNDS+2); i++)
crypto/libressl/include/openssl/blowfish.h
88
BF_LONG P[BF_ROUNDS+2];
sys/crypto/blowfish/bf_enc.c
105
#if BF_ROUNDS == 20
sys/crypto/blowfish/bf_enc.c
111
r ^= p[BF_ROUNDS + 1];
sys/crypto/blowfish/bf_enc.c
128
l ^= p[BF_ROUNDS + 1];
sys/crypto/blowfish/bf_enc.c
129
#if BF_ROUNDS == 20
sys/crypto/blowfish/bf_enc.c
72
#if (BF_ROUNDS != 16) && (BF_ROUNDS != 20)
sys/crypto/blowfish/bf_enc.c
73
If you set BF_ROUNDS to some value other than 16 or 20, you will have
sys/crypto/blowfish/bf_skey.c
106
for (i = 0; i < BF_ROUNDS + 2; i += 2) {
sys/crypto/blowfish/bf_skey.c
80
if (len > ((BF_ROUNDS + 2) * 4))
sys/crypto/blowfish/bf_skey.c
81
len = (BF_ROUNDS + 2) * 4;
sys/crypto/blowfish/bf_skey.c
85
for (i = 0; i < BF_ROUNDS + 2; i++) {
sys/crypto/blowfish/blowfish.h
79
BF_LONG P[BF_ROUNDS+2];