Lines Matching defs:arg
134 static int dasync_aes128_cbc_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
142 static int dasync_aes256_ctr_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
151 int arg, void *ptr);
628 static int dasync_cipher_ctrl_helper(EVP_CIPHER_CTX *ctx, int type, int arg,
653 pipe_ctx->numpipes = arg;
658 pipe_ctx->numpipes = arg;
663 pipe_ctx->numpipes = arg;
672 (ctx, type, arg, ptr);
681 if (!aeadcapable || arg != EVP_AEAD_TLS1_AAD_LEN)
691 len = p[arg - 2] << 8 | p[arg - 1];
694 if ((p[arg - 4] << 8 | p[arg - 3]) >= TLS1_1_VERSION) {
803 static int dasync_aes128_cbc_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
806 return dasync_cipher_ctrl_helper(ctx, type, arg, ptr, 0, EVP_aes_128_cbc());
826 static int dasync_aes256_ctr_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
829 return dasync_cipher_ctrl_helper(ctx, type, arg, ptr, 0, EVP_aes_256_ctr());
855 int arg, void *ptr)
857 return dasync_cipher_ctrl_helper(ctx, type, arg, ptr, 1, EVP_aes_128_cbc_hmac_sha1());