Lines Matching defs:temp
54 char *temp;
101 * We keep both b64u and decoded in temp mapped using map / map_b64,
107 args->jws->map_b64.buf[m] = args->temp;
111 memcpy(args->temp, ctx->buf, ctx->npos);
112 args->temp += ctx->npos;
117 args->jws->map.buf[m] = args->temp;
122 (char *)args->temp, *args->temp_len);
128 args->temp += n;
138 char *temp, int *temp_len)
145 args.temp = temp;
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)
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);