Lines Matching defs:compact
29 * Currently only support flattened or compact (implicitly single signature)
471 /* "none" compact serialization has 2 blocks: jose.payload */
686 * it's already a compact / concatenated b64 string, we will make a temp
927 lws_jws_write_compact(struct lws_jws *jws, char *compact, size_t len)
934 lws_strnncpy(compact + n, jws->map_b64.buf[LJWS_JOSE],
936 n += strlen(compact + n);
939 compact[n++] = '.';
940 lws_strnncpy(compact + n, jws->map_b64.buf[LJWS_PYLD],
942 n += strlen(compact + n);
945 compact[n++] = '.';
946 lws_strnncpy(compact + n, jws->map_b64.buf[LJWS_SIG],
948 n += strlen(compact + n);
968 * Decode the b64.b64[.b64] compact serialization
1161 /* create the compact JWS representation */