Symbol: DATA_SIZE
crypto/openssl/test/bio_enc_test.c
113
mem = BIO_new_mem_buf(inp, DATA_SIZE);
crypto/openssl/test/bio_enc_test.c
157
if (!TEST_mem_eq(inp, DATA_SIZE, out, len))
crypto/openssl/test/bio_enc_test.c
184
if (!TEST_mem_eq(inp, DATA_SIZE, out, len)) {
crypto/openssl/test/bio_enc_test.c
211
if (!TEST_mem_eq(inp, DATA_SIZE, out, len)) {
crypto/openssl/test/bio_enc_test.c
22
#define BUF_SIZE (DATA_SIZE + MAX_IV)
crypto/openssl/test/bio_enc_test.c
47
if (!TEST_int_gt(RAND_bytes(inp, DATA_SIZE), 0))
crypto/openssl/test/bio_enc_test.c
58
mem = BIO_new_mem_buf(inp, DATA_SIZE);
crypto/openssl/test/bio_enc_test.c
74
mem = BIO_new_mem_buf(inp, DATA_SIZE);
crypto/openssl/test/evp_skey_test.c
100
const unsigned char data[DATA_SIZE] = {
crypto/openssl/test/evp_skey_test.c
107
unsigned char encrypted_skey[DATA_SIZE + IV_SIZE];
crypto/openssl/test/evp_skey_test.c
108
unsigned char encrypted_raw[DATA_SIZE + IV_SIZE];
crypto/openssl/test/evp_skey_test.c
146
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_skey, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
156
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_raw, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
158
|| !TEST_mem_eq(encrypted_skey, DATA_SIZE + IV_SIZE, encrypted_raw, DATA_SIZE + IV_SIZE))
crypto/openssl/test/evp_skey_test.c
178
const unsigned char data[DATA_SIZE] = {
crypto/openssl/test/evp_skey_test.c
185
unsigned char encrypted_skey[DATA_SIZE + DES_IV_SIZE];
crypto/openssl/test/evp_skey_test.c
186
unsigned char encrypted_raw[DATA_SIZE + DES_IV_SIZE];
crypto/openssl/test/evp_skey_test.c
223
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_skey, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
233
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_raw, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
235
|| !TEST_mem_eq(encrypted_skey, DATA_SIZE + DES_IV_SIZE, encrypted_raw,
crypto/openssl/test/evp_skey_test.c
236
DATA_SIZE + DES_IV_SIZE))