/external/srtp/crypto/include/ |
sha1.h | 73 * sha1_update(&ctx, msg, len) hashes the len octets starting at msg 85 sha1_update(sha1_ctx_t *ctx, const uint8_t *M, int octets_in_msg);
|
/external/srtp/crypto/hash/ |
hmac.c | 143 sha1_update(&state->init_ctx, ipad, 64); 164 sha1_update(&state->ctx, message, msg_octets); 195 sha1_update(&state->ctx, (uint8_t *)state->opad, 64); 198 sha1_update(&state->ctx, (uint8_t *)H, 20);
|
sha1.c | 81 sha1_update(&ctx, msg, octets_in_msg); 204 sha1_update(sha1_ctx_t *ctx, const uint8_t *msg, int octets_in_msg) { function
|
/external/srtp/crypto/test/ |
sha1_driver.c | 111 sha1_update(&ctx, test_case->data, test_case->data_len);
|
/external/openssl/crypto/evp/ |
e_aes_cbc_hmac_sha1.c | 142 static void sha1_update(SHA_CTX *c,const void *data,size_t len) function 149 SHA1_Update (c,ptr,res); 167 SHA1_Update(c,ptr,res); 170 #define SHA1_Update sha1_update 199 SHA1_Update(&key->md,in+iv,sha_off); 214 SHA1_Update(&key->md,in+sha_off,plen-sha_off); 223 SHA1_Update(&key->md,out+plen,SHA_DIGEST_LENGTH); 261 SHA1_Update(&key->md,key->aux.tls_aad,plen); 262 SHA1_Update(&key->md,out+iv,len) [all...] |