Lines Matching refs:idx
214 static int do_test_bio_cipher(const EVP_CIPHER* cipher, int idx) in do_test_bio_cipher() argument
216 switch (idx) { in do_test_bio_cipher()
225 static int test_bio_enc_aes_128_cbc(int idx) in test_bio_enc_aes_128_cbc() argument
227 return do_test_bio_cipher(EVP_aes_128_cbc(), idx); in test_bio_enc_aes_128_cbc()
230 static int test_bio_enc_aes_128_ctr(int idx) in test_bio_enc_aes_128_ctr() argument
232 return do_test_bio_cipher(EVP_aes_128_ctr(), idx); in test_bio_enc_aes_128_ctr()
235 static int test_bio_enc_aes_256_cfb(int idx) in test_bio_enc_aes_256_cfb() argument
237 return do_test_bio_cipher(EVP_aes_256_cfb(), idx); in test_bio_enc_aes_256_cfb()
240 static int test_bio_enc_aes_256_ofb(int idx) in test_bio_enc_aes_256_ofb() argument
242 return do_test_bio_cipher(EVP_aes_256_ofb(), idx); in test_bio_enc_aes_256_ofb()
246 static int test_bio_enc_chacha20(int idx) in test_bio_enc_chacha20() argument
248 return do_test_bio_cipher(EVP_chacha20(), idx); in test_bio_enc_chacha20()
252 static int test_bio_enc_chacha20_poly1305(int idx) in test_bio_enc_chacha20_poly1305() argument
254 return do_test_bio_cipher(EVP_chacha20_poly1305(), idx); in test_bio_enc_chacha20_poly1305()