/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/chromium_org/third_party/openssl/openssl/crypto/evp/ |
e_aes_cbc_hmac_sha1.c | 146 static void sha1_update(SHA_CTX *c,const void *data,size_t len) function 153 SHA1_Update (c,ptr,res); 171 SHA1_Update(c,ptr,res); 174 #ifdef SHA1_Update 175 #undef SHA1_Update 177 #define SHA1_Update sha1_update 208 SHA1_Update(&key->md,in+iv,sha_off); 223 SHA1_Update(&key->md,in+sha_off,plen-sha_off); 232 SHA1_Update(&key->md,out+plen,SHA_DIGEST_LENGTH) [all...] |
/external/openssl/crypto/evp/ |
e_aes_cbc_hmac_sha1.c | 146 static void sha1_update(SHA_CTX *c,const void *data,size_t len) function 153 SHA1_Update (c,ptr,res); 171 SHA1_Update(c,ptr,res); 174 #ifdef SHA1_Update 175 #undef SHA1_Update 177 #define SHA1_Update sha1_update 208 SHA1_Update(&key->md,in+iv,sha_off); 223 SHA1_Update(&key->md,in+sha_off,plen-sha_off); 232 SHA1_Update(&key->md,out+plen,SHA_DIGEST_LENGTH) [all...] |