Searched refs:md5_context (Results 1 – 6 of 6) sorted by relevance
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspdefs.c | 547 GChecksum *md5_context = g_checksum_new (G_CHECKSUM_MD5); in auth_digest_compute_a1_md5() local 550 g_checksum_update (md5_context, (const guchar *) username, strlen (username)); in auth_digest_compute_a1_md5() 551 g_checksum_update (md5_context, (const guchar *) ":", 1); in auth_digest_compute_a1_md5() 552 g_checksum_update (md5_context, (const guchar *) realm, strlen (realm)); in auth_digest_compute_a1_md5() 553 g_checksum_update (md5_context, (const guchar *) ":", 1); in auth_digest_compute_a1_md5() 554 g_checksum_update (md5_context, (const guchar *) password, strlen (password)); in auth_digest_compute_a1_md5() 555 ret = g_strdup (g_checksum_get_string (md5_context)); in auth_digest_compute_a1_md5() 557 g_checksum_free (md5_context); in auth_digest_compute_a1_md5() 569 GChecksum *md5_context = g_checksum_new (G_CHECKSUM_MD5); in auth_digest_compute_response_md5() local 577 g_checksum_reset (md5_context); in auth_digest_compute_response_md5() [all …]
|
/third_party/lwip/src/include/netif/ppp/polarssl/ |
D | md5.h | 51 md5_context; typedef 62 void md5_starts( md5_context *ctx ); 71 void md5_update( md5_context *ctx, const unsigned char *input, int ilen ); 79 void md5_finish( md5_context *ctx, unsigned char output[16] );
|
/third_party/lwip/src/netif/ppp/polarssl/ |
D | md5.c | 74 void md5_starts( md5_context *ctx ) in md5_starts() 85 static void md5_process( md5_context *ctx, const unsigned char data[64] ) in md5_process() 211 void md5_update( md5_context *ctx, const unsigned char *input, int ilen ) in md5_update() 263 void md5_finish( md5_context *ctx, unsigned char output[16] ) in md5_finish() 293 md5_context ctx; in md5()
|
/third_party/gstreamer/gstplugins_good/ext/wavpack/ |
D | gstwavpackenc.c | 296 if (enc->md5_context) { in gst_wavpack_enc_reset() 297 g_checksum_free (enc->md5_context); in gst_wavpack_enc_reset() 298 enc->md5_context = NULL; in gst_wavpack_enc_reset() 335 enc->md5_context = NULL; in gst_wavpack_enc_init() 529 if ((enc->md5) && !(enc->md5_context)) { in gst_wavpack_enc_set_wp_config() 531 enc->md5_context = g_checksum_new (G_CHECKSUM_MD5); in gst_wavpack_enc_set_wp_config() 737 g_checksum_update (enc->md5_context, map.data, map.size); in gst_wavpack_enc_handle_frame() 859 if ((enc->md5) && (enc->md5_context)) { in gst_wavpack_enc_drain() 863 g_checksum_get_digest (enc->md5_context, md5_digest, &digest_len); in gst_wavpack_enc_drain()
|
D | gstwavpackenc.h | 71 GChecksum *md5_context; member
|
/third_party/lwip/src/include/netif/ppp/ |
D | pppcrypt.h | 65 #define lwip_md5_context md5_context
|