Lines Matching refs:DO
32 DO(f8_test_mode()); in modes_test()
36 DO(lrw_test()); in modes_test()
42 DO(cbc_start(cipher_idx, iv, key, 16, 0, &cbc)); in modes_test()
44 DO(cbc_getiv(iv2, &l, &cbc)); in modes_test()
49 DO(cbc_encrypt(pt, ct, 64, &cbc)); in modes_test()
52 DO(cbc_setiv(iv2, l, &cbc)); in modes_test()
54 DO(cbc_decrypt(ct, tmp, 64, &cbc)); in modes_test()
64 DO(cfb_start(cipher_idx, iv, key, 16, 0, &cfb)); in modes_test()
66 DO(cfb_getiv(iv2, &l, &cfb)); in modes_test()
72 DO(cfb_encrypt(pt, ct, 64, &cfb)); in modes_test()
75 DO(cfb_setiv(iv, l, &cfb)); in modes_test()
77 DO(cfb_decrypt(ct, tmp, 64, &cfb)); in modes_test()
87 DO(ofb_start(cipher_idx, iv, key, 16, 0, &ofb)); in modes_test()
89 DO(ofb_getiv(iv2, &l, &ofb)); in modes_test()
94 DO(ofb_encrypt(pt, ct, 64, &ofb)); in modes_test()
97 DO(ofb_setiv(iv2, l, &ofb)); in modes_test()
99 DO(ofb_decrypt(ct, tmp, 64, &ofb)); in modes_test()
107 DO(ctr_test()); in modes_test()