/third_party/openssl/include/openssl/ |
D | sha.h | 39 } SHA_CTX; typedef 41 int SHA1_Init(SHA_CTX *c); 42 int SHA1_Update(SHA_CTX *c, const void *data, size_t len); 43 int SHA1_Final(unsigned char *md, SHA_CTX *c); 45 void SHA1_Transform(SHA_CTX *c, const unsigned char *data);
|
/third_party/boringssl/src/include/openssl/ |
D | 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 out[SHA_DIGEST_LENGTH], SHA_CTX *sha); 96 OPENSSL_EXPORT void SHA1_Transform(SHA_CTX *sha,
|
D | base.h | 413 typedef struct sha_state_st SHA_CTX; typedef
|
/third_party/openssl/doc/man3/ |
D | SHA256_Init.pod | 14 int SHA1_Init(SHA_CTX *c); 15 int SHA1_Update(SHA_CTX *c, const void *data, size_t len); 16 int SHA1_Final(unsigned char *md, SHA_CTX *c); 61 SHA1_Init() initializes a B<SHA_CTX> structure. 67 for SHA_DIGEST_LENGTH == 20 bytes of output, and erases the B<SHA_CTX>. 71 B<SHA256_CTX> object instead of B<SHA_CTX>. SHA384 and SHA512 use B<SHA512_CTX>.
|
/third_party/openssl/crypto/sha/ |
D | sha1_one.c | 17 SHA_CTX c; in SHA1()
|
D | sha_local.h | 19 #define HASH_CTX SHA_CTX 40 static void sha1_block_data_order(SHA_CTX *c, const void *p, size_t num); 42 void sha1_block_data_order(SHA_CTX *c, const void *p, size_t num); 53 int HASH_INIT(SHA_CTX *c) in HASH_INIT() 136 static void HASH_BLOCK_DATA_ORDER(SHA_CTX *c, const void *p, size_t num) in HASH_BLOCK_DATA_ORDER() 370 static void HASH_BLOCK_DATA_ORDER(SHA_CTX *c, const void *p, size_t num) in HASH_BLOCK_DATA_ORDER()
|
/third_party/openssl/crypto/evp/ |
D | m_sha1.c | 40 SHA_CTX *sha1; in ctrl() 105 sizeof(EVP_MD *) + sizeof(SHA_CTX),
|
D | m_md5_sha1.c | 23 SHA_CTX sha1;
|
D | e_aes_cbc_hmac_sha1.c | 26 SHA_CTX head, tail, md; 55 SHA_CTX *ctx, const void *in0); 59 SHA_CTX *ctx, const void *in0); 97 static void sha1_update(SHA_CTX *c, const void *data, size_t len) in sha1_update()
|
/third_party/boringssl/src/crypto/fipsmodule/sha/ |
D | sha_test.cc | 25 SHA_CTX ctx; in TEST()
|
D | sha1.c | 67 int SHA1_Init(SHA_CTX *sha) { in SHA1_Init() 68 OPENSSL_memset(sha, 0, sizeof(SHA_CTX)); in SHA1_Init() 78 SHA_CTX ctx; in SHA1() 88 #define HASH_CTX SHA_CTX
|
/third_party/boringssl/src/crypto/fipsmodule/digest/ |
D | digests.c | 146 out->ctx_size = sizeof(SHA_CTX); in DEFINE_METHOD_FUNCTION() 248 SHA_CTX sha1;
|
/third_party/openssl/test/ |
D | rc4test.c | 98 SHA_CTX c; in test_rc_bulk()
|
/third_party/ltp/testcases/kernel/security/integrity/ima/src/ |
D | ima_boot_aggregate.c | 68 SHA_CTX c; in main()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | fips_prf_openssl.c | 18 SHA_CTX context; in sha1_transform()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | fips_prf_openssl.c | 18 SHA_CTX context; in sha1_transform()
|
/third_party/openssl/ssl/ |
D | s3_cbc.c | 56 SHA_CTX *sha1 = ctx; in tls1_sha1_final_raw() 184 if (SHA1_Init((SHA_CTX *)md_state.c) <= 0) in ssl3_cbc_digest_record()
|
/third_party/boringssl/src/crypto/cipher_extra/ |
D | tls_cbc.c | 210 SHA_CTX sha1; 231 SHA_CTX *sha1 = &ctx->sha1; in tls1_sha1_final_raw()
|
/third_party/openssl/engines/ |
D | e_ossltest.c | 93 sizeof(EVP_MD *) + sizeof(SHA_CTX)) in digest_sha1() 485 #define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx))
|
D | e_dasync.c | 230 sizeof(EVP_MD *) + sizeof(SHA_CTX)) in bind_dasync() 482 #define data(ctx) ((SHA_CTX *)EVP_MD_CTX_md_data(ctx))
|
/third_party/openssl/crypto/engine/ |
D | eng_openssl.c | 343 sizeof(EVP_MD *) + sizeof(SHA_CTX)) in test_sha_md()
|
/third_party/openssl/util/ |
D | indent.pro | 372 -T SHA_CTX
|
/third_party/boringssl/src/ |
D | API-CONVENTIONS.md | 176 A few types, such as `SHA_CTX`, are data-only types and do not require cleanup.
|
/third_party/python/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 1160 SHA_CTX = SHAstate_st variable
|