HomeSort by relevance Sort by last modified time
    Searched refs:SHA_CTX (Results 1 - 25 of 28) sorted by null

1 2

  /external/libconstrainedcrypto/include/constrainedcrypto/
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);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Hash/
CryptSha1.c 34 return (UINTN) (sizeof (SHA_CTX));
65 return (BOOLEAN) (SHA1_Init ((SHA_CTX *) Sha1Context));
95 CopyMem (NewSha1Context, Sha1Context, sizeof (SHA_CTX));
143 return (BOOLEAN) (SHA1_Update ((SHA_CTX *) Sha1Context, Data, DataSize));
183 return (BOOLEAN) (SHA1_Final (HashValue, (SHA_CTX *) Sha1Context));
  /external/ppp/pppd/
openssl-hash.h 26 #define SHA1_CTX SHA_CTX
  /external/boringssl/src/include/openssl/
sha.h 77 OPENSSL_EXPORT int SHA1_Init(SHA_CTX *sha);
80 OPENSSL_EXPORT int SHA1_Update(SHA_CTX *sha, const void *data, size_t len);
85 OPENSSL_EXPORT int SHA1_Final(uint8_t *md, SHA_CTX *sha);
95 OPENSSL_EXPORT void SHA1_Transform(SHA_CTX *sha, const uint8_t *block);
base.h 315 typedef struct sha_state_st SHA_CTX;
  /external/curl/src/
tool_metalink.c 40 # define SHA_CTX struct sha1_ctx
45 # define SHA_CTX gcry_md_hd_t
51 # define SHA_CTX void *
59 # define SHA_CTX sha1_context
90 # define SHA_CTX struct win32_crypto_hash
140 static int SHA1_Init(SHA_CTX *ctx)
146 static void SHA1_Update(SHA_CTX *ctx,
153 static void SHA1_Final(unsigned char digest[20], SHA_CTX *ctx)
197 static int SHA1_Init(SHA_CTX *ctx)
203 static void SHA1_Update(SHA_CTX *ctx
    [all...]
  /bootable/recovery/applypatch/include/applypatch/
applypatch.h 71 size_t patch_offset, SinkFn sink, SHA_CTX* ctx);
75 SHA_CTX* ctx, const Value* bonus_data);
  /external/libconstrainedcrypto/
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;
  /external/libvncserver/libvncserver/
rfbcrypto_openssl.c 42 SHA_CTX c;
  /bootable/recovery/applypatch/
bspatch.cpp 68 size_t patch_offset, SinkFn sink, SHA_CTX* ctx) {
imgpatch.cpp 52 const char* deflate_header, SinkFn sink, SHA_CTX* ctx) {
142 SHA_CTX* ctx, const Value* bonus_data) {
applypatch.cpp 123 SHA_CTX sha_ctx; local
124 SHA1_Init(&sha_ctx);
145 SHA1_Update(&sha_ctx, buffer_ptr, read);
152 SHA_CTX temp_ctx;
153 memcpy(&temp_ctx, &sha_ctx, sizeof(SHA_CTX));
177 SHA1_Final(file->sha1, &sha_ctx);
649 SHA_CTX ctx;
  /external/ltp/testcases/kernel/security/integrity/ima/src/
ima_measure.c 74 SHA_CTX c;
172 SHA_CTX c;
ima_boot_aggregate.c 68 SHA_CTX c;
  /external/wpa_supplicant_8/src/crypto/
fips_prf_openssl.c 18 SHA_CTX context;
  /external/boringssl/src/crypto/fipsmodule/digest/
digests.c 146 out->ctx_size = sizeof(SHA_CTX);
248 SHA_CTX sha1;
  /external/libbrillo/brillo/
cryptohome.cc 69 SHA_CTX ctx;
  /external/boringssl/src/crypto/cipher_extra/
tls_cbc.c 210 SHA_CTX sha1;
231 SHA_CTX *sha1 = &ctx->sha1;
  /external/boringssl/src/crypto/fipsmodule/sha/
sha1.c 73 int SHA1_Init(SHA_CTX *sha) {
74 OPENSSL_memset(sha, 0, sizeof(SHA_CTX));
84 SHA_CTX ctx;
94 #define HASH_CTX SHA_CTX
  /art/compiler/
elf_writer_quick.cc 289 SHA_CTX ctx;
  /bootable/recovery/
verifier.cpp 209 SHA_CTX sha1_ctx;
  /external/ipsec-tools/src/racoon/
crypto_openssl.c     [all...]
  /bootable/recovery/updater/
blockimg.cpp     [all...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 83 SHA_CTX ctx;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py     [all...]

Completed in 914 milliseconds

1 2