mysticlife1111
mysticlife1111
Hi, cjose_jws_t *jws = NULL; size_t plaintext_len = 0; uint8_t *plaintext = NULL; I am using this function jws = cjose_jws_import(access_token, strlen(access_token), err); /* Get the Plaintext information */ if...
I tried using strlen(access_token) + 1 but now i am getting error in the function cjose_jws_import
This is the list of functions i am using 1. jws = cjose_jws_import(access_token, strlen(access_token), err); 2. cjose_jws_get_plaintext(jws, &plaintext, &plaintext_len, err) 3. e = cl_json_parse(a_token, &json_top); In the second step, plaintext_len...
Hello, yes First getting the jws Step 1: jws = cjose_jws_import(access_token, strlen(access_token), err); after getting the plaintext Step 2: cjose_jws_get_plaintext(jws, &plaintext, &plaintext_len, err); Step 3: /* Remove the trailing garbage...