HomeSort by relevance Sort by last modified time
    Searched defs:SHA1_Update (Results 1 - 5 of 5) sorted by null

  /external/ppp/pppd/
openssl-hash.h 29 #define SHA1_Update EVP_DigestUpdate
sha1.c 117 SHA1_Update(SHA1_CTX *context, const unsigned char *data, unsigned int len)
151 SHA1_Update(context, (unsigned char *) "\200", 1);
153 SHA1_Update(context, (unsigned char *) "\0", 1);
155 SHA1_Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
  /external/chromium_org/third_party/smhasher/src/
sha1.cpp 182 void SHA1_Update(SHA1_CTX* context, const uint8_t* data, const size_t len)
218 SHA1_Update(context, (uint8_t *)"\200", 1);
220 SHA1_Update(context, (uint8_t *)"\0", 1);
222 SHA1_Update(context, finalcount, 8); /* Should cause a SHA1_Transform() */
245 SHA1_Update(&context, (uint8_t*)key, len);
295 SHA1_Update(&context, (uint8_t*)test_data[k], strlen(test_data[k]));
310 SHA1_Update(&context, (uint8_t*)"a", 1);
  /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...]
evp_locl.h 355 #undef SHA1_Update

Completed in 103 milliseconds