Lines Matching refs:temp_len
55 int *temp_len;
95 if (*args->temp_len < ctx->npos) {
113 *args->temp_len -= ctx->npos;
122 (char *)args->temp, *args->temp_len);
129 *args->temp_len -= n;
138 char *temp, int *temp_len)
146 args.temp_len = temp_len;
323 lws_jwe_auth_and_decrypt(struct lws_jwe *jwe, char *temp, int *temp_len)
330 temp, temp_len) < 0) {
375 temp, temp_len);
384 lws_jwe_encrypt(struct lws_jwe *jwe, char *temp, int *temp_len)
386 int valid_aescbc_hmac, valid_aesgcm, ot = *temp_len, ret = -1;
398 (int)jwe->jws.map.len[LJWS_JOSE], temp, temp_len) < 0) {
403 temp += ot - *temp_len;
415 ret = lws_jwe_encrypt_rsa_aes_cbc_hs(jwe, temp, temp_len);
420 ret = lws_jwe_encrypt_rsa_aes_gcm(jwe, temp, temp_len);
429 ret = lws_jwe_encrypt_aeskw_cbc_hs(jwe, temp, temp_len);
437 ret = lws_jwe_encrypt_ecdh_cbc_hs(jwe, temp, temp_len);