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
114
const unsigned char data[DATA_SIZE] = {
crypto/openssl/test/evp_skey_test.c
121
unsigned char encrypted_skey[DATA_SIZE + IV_SIZE];
crypto/openssl/test/evp_skey_test.c
122
unsigned char encrypted_raw[DATA_SIZE + IV_SIZE];
crypto/openssl/test/evp_skey_test.c
160
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_skey, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
170
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_raw, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
172
|| !TEST_mem_eq(encrypted_skey, DATA_SIZE + IV_SIZE, encrypted_raw, DATA_SIZE + IV_SIZE))
crypto/openssl/test/evp_skey_test.c
192
const unsigned char data[DATA_SIZE] = {
crypto/openssl/test/evp_skey_test.c
199
unsigned char encrypted_skey[DATA_SIZE + DES_IV_SIZE];
crypto/openssl/test/evp_skey_test.c
200
unsigned char encrypted_raw[DATA_SIZE + DES_IV_SIZE];
crypto/openssl/test/evp_skey_test.c
237
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_skey, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
247
|| !TEST_int_gt(EVP_CipherUpdate(ctx, encrypted_raw, &enc_len, data, DATA_SIZE), 0)
crypto/openssl/test/evp_skey_test.c
249
|| !TEST_mem_eq(encrypted_skey, DATA_SIZE + DES_IV_SIZE, encrypted_raw,
crypto/openssl/test/evp_skey_test.c
250
DATA_SIZE + DES_IV_SIZE))