Symbol: rc4_off
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
118
size_t rc4_off = 32-1-(key->ks.x&(32-1)), /* 32 is $MOD from rc4_md5-x86_64.pl */
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
133
if (rc4_off > md5_off)
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
140
RC4(&key->ks, rc4_off, in, out);
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
142
rc4_md5_enc(&key->ks, in + rc4_off, out + rc4_off,
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
145
rc4_off += blocks;
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
152
rc4_off = 0;
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
160
memcpy(out + rc4_off, in + rc4_off,
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
161
plen - rc4_off);
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
170
RC4(&key->ks, len - rc4_off, out + rc4_off,
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
171
out + rc4_off);
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
173
RC4(&key->ks, len - rc4_off, in + rc4_off,
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
174
out + rc4_off);
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
180
if (md5_off > rc4_off)
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
181
rc4_off += 2*MD5_CBLOCK;
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
183
rc4_off += MD5_CBLOCK;
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
185
if (len > rc4_off && (blocks = (len - rc4_off) / MD5_CBLOCK) &&
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
187
RC4(&key->ks, rc4_off, in, out);
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
190
rc4_md5_enc(&key->ks, in + rc4_off, out + rc4_off,
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
193
rc4_off += blocks;
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
202
rc4_off = 0;
crypto/libressl/crypto/evp/e_rc4_hmac_md5.c
206
RC4(&key->ks, len - rc4_off, in + rc4_off, out + rc4_off);