Lines Matching full:buffer_size
23 #define BUFFER_SIZE 17 macro
32 unsigned char ebuf[BUFFER_SIZE + 32]; in test_afalg_aes_cbc()
33 unsigned char dbuf[BUFFER_SIZE + 32]; in test_afalg_aes_cbc()
43 static const unsigned char in[BUFFER_SIZE] = in test_afalg_aes_cbc()
46 static const unsigned char encresult_128[BUFFER_SIZE] = in test_afalg_aes_cbc()
49 static const unsigned char encresult_192[BUFFER_SIZE] = in test_afalg_aes_cbc()
52 static const unsigned char encresult_256[BUFFER_SIZE] = in test_afalg_aes_cbc()
86 || !TEST_true(EVP_CipherUpdate(ctx, ebuf, &encl, in, BUFFER_SIZE)) in test_afalg_aes_cbc()
91 if (!TEST_mem_eq(enc_result, BUFFER_SIZE, ebuf, BUFFER_SIZE)) in test_afalg_aes_cbc()
101 if (!TEST_int_eq(decl, BUFFER_SIZE) in test_afalg_aes_cbc()
102 || !TEST_mem_eq(dbuf, BUFFER_SIZE, in, BUFFER_SIZE)) in test_afalg_aes_cbc()