Searched refs:_sasl_MD5Update (Results 1 – 6 of 6) sorted by relevance
/titanic_44/usr/src/lib/libsip/common/ |
H A D | sip_gids.c | 82 _sasl_MD5Update(&ctx, (uchar_t *)&sip_hash_salt, sizeof (uint64_t)); in sip_md5_hash() 85 _sasl_MD5Update(&ctx, (uchar_t *)str1, lstr1); in sip_md5_hash() 88 _sasl_MD5Update(&ctx, (uchar_t *)str2, lstr2); in sip_md5_hash() 91 _sasl_MD5Update(&ctx, (uchar_t *)str3, lstr3); in sip_md5_hash() 94 _sasl_MD5Update(&ctx, (uchar_t *)str4, lstr4); in sip_md5_hash() 97 _sasl_MD5Update(&ctx, (uchar_t *)str5, lstr5); in sip_md5_hash() 100 _sasl_MD5Update(&ctx, (uchar_t *)str6, lstr6); in sip_md5_hash() 244 _sasl_MD5Update(&ctx, (uchar_t *)via->sip_hdr_start, hdrlen); in sip_branchid() 246 _sasl_MD5Update(&ctx, (uchar_t *)to->sip_hdr_start, hdrlen); in sip_branchid() 248 _sasl_MD5Update(&ctx, (uchar_t *)from->sip_hdr_start, hdrlen); in sip_branchid() [all …]
|
/titanic_44/usr/src/lib/libsasl/lib/ |
H A D | md5.c | 137 void _sasl_MD5Update (context, input, inputLen) in _sasl_MD5Update() function 195 _sasl_MD5Update (context, PADDING, padLen); 198 _sasl_MD5Update (context, bits, 8); 384 _sasl_MD5Update(&tctx, key, key_len); in _sasl_hmac_md5_init() 415 _sasl_MD5Update(&hmac->ictx, k_ipad, 64); /* apply inner pad */ in _sasl_hmac_md5_init() 418 _sasl_MD5Update(&hmac->octx, k_opad, 64); /* apply outer pad */ in _sasl_hmac_md5_init() 471 _sasl_MD5Update(&hmac->octx, digest, 16); /* Update outer ctx */ in _sasl_hmac_md5_final() 499 _sasl_MD5Update(&tctx, key, key_len); 534 _sasl_MD5Update(&context, k_ipad, 64); /* start with inner pad */ 535 _sasl_MD5Update(&context, text, text_len); /* then text of datagram */ [all …]
|
H A D | checkpw.c | 137 _sasl_MD5Update(&ctx, salt, 16); in _sasl_make_plain_secret() 138 _sasl_MD5Update(&ctx, "sasldb", 6); in _sasl_make_plain_secret() 139 _sasl_MD5Update(&ctx, passwd, passlen); in _sasl_make_plain_secret() 311 _sasl_MD5Update(&ctx, challenge, strlen(challenge)); in _sasl_auxprop_verify_apop() 312 _sasl_MD5Update(&ctx, auxprop_values[0].values[0], in _sasl_auxprop_verify_apop()
|
H A D | common.c | 1998 utils->MD5Update= &_sasl_MD5Update; in _sasl_alloc_utils()
|
/titanic_44/usr/src/lib/libsasl/include/ |
H A D | md5_private.h | 38 #define _sasl_MD5Update(md5_ctx, s, n) MD5Update(md5_ctx, s, n) macro 49 void _sasl_MD5Update PROTO_LIST
|
H A D | hmac-md5.h | 57 #define _sasl_hmac_md5_update(hmac, text, text_len) _sasl_MD5Update(&(hmac)->ictx, (text), (text_le…
|