/system/core/include/mincrypt/ |
sha.h | 36 typedef HASH_CTX SHA_CTX; 38 void SHA_init(SHA_CTX* ctx); 39 void SHA_update(SHA_CTX* ctx, const void* data, int len); 40 const uint8_t* SHA_final(SHA_CTX* ctx);
|
/external/ppp/pppd/ |
openssl-hash.h | 26 #define SHA1_CTX SHA_CTX
|
/external/curl/src/ |
tool_metalink.c | 39 # define SHA_CTX struct sha1_ctx 44 # define SHA_CTX gcry_md_hd_t 50 # define SHA_CTX void * 58 # define SHA_CTX sha1_context 89 # define SHA_CTX struct win32_crypto_hash 141 static int SHA1_Init(SHA_CTX *ctx) 147 static void SHA1_Update(SHA_CTX *ctx, 154 static void SHA1_Final(unsigned char digest[20], SHA_CTX *ctx) 198 static int SHA1_Init(SHA_CTX *ctx) 204 static void SHA1_Update(SHA_CTX *ctx [all...] |
/system/core/libmincrypt/ |
sha.c | 38 static void SHA1_Transform(SHA_CTX* ctx) { 96 void SHA_init(SHA_CTX* ctx) { 107 void SHA_update(SHA_CTX* ctx, const void* data, int len) { 123 const uint8_t* SHA_final(SHA_CTX* ctx) { 150 SHA_CTX ctx;
|
/bootable/recovery/applypatch/ |
applypatch.h | 72 SinkFn sink, void* token, SHA_CTX* ctx); 80 SinkFn sink, void* token, SHA_CTX* ctx,
|
applypatch.cpp | 180 SHA_CTX sha_ctx; local 181 SHA1_Init(&sha_ctx); 210 SHA1_Update(&sha_ctx, p, read); 217 SHA_CTX temp_ctx; 218 memcpy(&temp_ctx, &sha_ctx, sizeof(SHA_CTX)); 254 SHA1_Final(file->sha1, &sha_ctx); 776 SHA_CTX ctx; [all...] |
bspatch.cpp | 103 SinkFn sink, void* token, SHA_CTX* ctx) {
|
imgpatch.cpp | 52 SinkFn sink, void* token, SHA_CTX* ctx,
|
/external/libvncserver/libvncserver/ |
rfbcrypto_openssl.c | 42 SHA_CTX c;
|
/external/boringssl/src/include/openssl/ |
sha.h | 81 OPENSSL_EXPORT int SHA1_Init(SHA_CTX *sha); 84 OPENSSL_EXPORT int SHA1_Update(SHA_CTX *sha, const void *data, size_t len); 89 OPENSSL_EXPORT int SHA1_Final(uint8_t *md, SHA_CTX *sha); 98 OPENSSL_EXPORT void SHA1_Transform(SHA_CTX *sha, const uint8_t *block);
|
base.h | 233 typedef struct sha_state_st SHA_CTX;
|
/external/wpa_supplicant_8/src/crypto/ |
fips_prf_openssl.c | 18 SHA_CTX context;
|
/external/libbrillo/brillo/ |
cryptohome.cc | 69 SHA_CTX ctx;
|
/external/boringssl/src/crypto/digest/ |
digests.c | 130 sha1_update, sha1_final, 64 /* block size */, sizeof(SHA_CTX), 222 SHA_CTX sha1;
|
/external/boringssl/src/crypto/sha/ |
sha1.c | 70 int SHA1_Init(SHA_CTX *sha) { 71 memset(sha, 0, sizeof(SHA_CTX)); 81 SHA_CTX ctx; 99 #define HASH_CTX SHA_CTX
|
/external/boringssl/src/crypto/cipher/ |
tls_cbc.c | 231 SHA_CTX *sha1 = ctx; 238 #define LARGEST_DIGEST_CTX SHA_CTX 307 SHA1_Init((SHA_CTX *)md_state.c);
|
/bootable/recovery/ |
verifier.cpp | 202 SHA_CTX sha1_ctx;
|
/external/ipsec-tools/src/racoon/ |
crypto_openssl.c | [all...] |
/external/boringssl/src/crypto/sha/asm/ |
sha1-586.pl | 345 &mov($tmp1,&wparam(0)); # SHA_CTX *c 375 &mov($A,&DWP(0,$tmp1)); # load SHA_CTX 389 &mov($tmp1,&wparam(0)); # re-load SHA_CTX* 398 &mov(&DWP(0,$tmp1),$E); # update SHA_CTX [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | [all...] |
/bootable/recovery/updater/ |
blockimg.cpp | [all...] |
/frameworks/native/services/inputflinger/ |
EventHub.cpp | 83 SHA_CTX ctx; [all...] |