Lines Matching refs:dctx
79 coap_digest_ctx_t *dctx;
87 dctx = coap_digest_setup();
88 if (!dctx)
93 if (!coap_digest_update(dctx, (const uint8_t *)&session, sizeof(session))) {
100 if (!coap_digest_update(dctx, (const uint8_t *)&opt_iter.number,
104 if (!coap_digest_update(dctx, coap_opt_value(option),
117 if (!coap_digest_update(dctx, data, len)) {
123 if (!coap_digest_final(dctx, &digest)) {
124 /* coap_digest_final() is guaranteed to free off dctx no matter what */
133 coap_digest_free(dctx);