Searched refs:out_data_size (Results 1 – 2 of 2) sorted by relevance
/trusty/user/app/storage/ |
D | crypt.c | 101 int out_data_size; in crypt() local 137 evp_ret = EVP_CipherUpdate(cipher_ctx, data_in_out, &out_data_size, in crypt() 143 if (out_data_size != (int)data_size) { in crypt() 144 fprintf(stderr, "bad output data size %d != %zd\n", out_data_size, in crypt() 150 evp_ret = EVP_CipherFinal_ex(cipher_ctx, NULL, &out_data_size); in crypt()
|
/trusty/user/app/sample/hwaes/ |
D | main.c | 66 int out_data_size; in hwaes_aes_op() local 227 evp_ret = EVP_CipherUpdate(cipher_ctx, NULL, &out_data_size, in hwaes_aes_op() 246 &out_data_size, args->text_in.data_ptr, in hwaes_aes_op() 256 assert(out_data_size == (int)args->text_out.len); in hwaes_aes_op() 261 evp_ret = EVP_CipherFinal_ex(cipher_ctx, NULL, &out_data_size); in hwaes_aes_op()
|