/third_party/node/deps/openssl/openssl/crypto/sha/ |
H A D | sha1dgst.c | 47 if (SHA1_Update(sha1, ms, mslen) <= 0) in ossl_sha1_ctrl() 53 if (!SHA1_Update(sha1, padtmp, sizeof(padtmp))) in ossl_sha1_ctrl() 64 if (SHA1_Update(sha1, ms, mslen) <= 0) in ossl_sha1_ctrl() 70 if (!SHA1_Update(sha1, padtmp, sizeof(padtmp))) in ossl_sha1_ctrl() 73 if (!SHA1_Update(sha1, sha1tmp, sizeof(sha1tmp))) in ossl_sha1_ctrl()
|
H A D | sha1_one.c | 32 SHA1_Update(&c, d, n); in ossl_sha1()
|
H A D | sha_local.h | 31 #define HASH_UPDATE SHA1_Update
|
/third_party/openssl/crypto/sha/ |
H A D | sha1dgst.c | 47 if (SHA1_Update(sha1, ms, mslen) <= 0) in ossl_sha1_ctrl() 53 if (!SHA1_Update(sha1, padtmp, sizeof(padtmp))) in ossl_sha1_ctrl() 64 if (SHA1_Update(sha1, ms, mslen) <= 0) in ossl_sha1_ctrl() 70 if (!SHA1_Update(sha1, padtmp, sizeof(padtmp))) in ossl_sha1_ctrl() 73 if (!SHA1_Update(sha1, sha1tmp, sizeof(sha1tmp))) in ossl_sha1_ctrl()
|
H A D | sha1_one.c | 32 SHA1_Update(&c, d, n); in ossl_sha1()
|
H A D | sha_local.h | 31 #define HASH_UPDATE SHA1_Update
|
/third_party/node/deps/openssl/openssl/crypto/md5/ |
H A D | md5_sha1.c | 31 return SHA1_Update(&mctx->sha1, data, count); in ossl_md5_sha1_update() 73 if (!SHA1_Update(&mctx->sha1, padtmp, 40)) in ossl_md5_sha1_ctrl() 96 if (!SHA1_Update(&mctx->sha1, padtmp, 40)) in ossl_md5_sha1_ctrl() 99 if (!SHA1_Update(&mctx->sha1, sha1tmp, sizeof(sha1tmp))) in ossl_md5_sha1_ctrl()
|
/third_party/openssl/crypto/md5/ |
H A D | md5_sha1.c | 31 return SHA1_Update(&mctx->sha1, data, count); in ossl_md5_sha1_update() 73 if (!SHA1_Update(&mctx->sha1, padtmp, 40)) in ossl_md5_sha1_ctrl() 96 if (!SHA1_Update(&mctx->sha1, padtmp, 40)) in ossl_md5_sha1_ctrl() 99 if (!SHA1_Update(&mctx->sha1, sha1tmp, sizeof(sha1tmp))) in ossl_md5_sha1_ctrl()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | e_aes_cbc_hmac_sha1.c | 112 SHA1_Update(c, ptr, res); in sha1_update() 131 SHA1_Update(c, ptr, res); in sha1_update() 134 # ifdef SHA1_Update 135 # undef SHA1_Update macro 137 # define SHA1_Update sha1_update macro 440 SHA1_Update(&key->md, in + iv, sha_off); in aesni_cbc_hmac_sha1_cipher() 456 SHA1_Update(&key->md, in + sha_off, plen - sha_off); in aesni_cbc_hmac_sha1_cipher() 465 SHA1_Update(&key->md, out + plen, SHA_DIGEST_LENGTH); in aesni_cbc_hmac_sha1_cipher() 553 SHA1_Update(&key->md, key->aux.tls_aad, plen); in aesni_cbc_hmac_sha1_cipher() 563 SHA1_Update( in aesni_cbc_hmac_sha1_cipher() [all...] |
/third_party/openssl/crypto/evp/ |
H A D | e_aes_cbc_hmac_sha1.c | 112 SHA1_Update(c, ptr, res); in sha1_update() 131 SHA1_Update(c, ptr, res); in sha1_update() 134 # ifdef SHA1_Update 135 # undef SHA1_Update macro 137 # define SHA1_Update sha1_update macro 440 SHA1_Update(&key->md, in + iv, sha_off); in aesni_cbc_hmac_sha1_cipher() 456 SHA1_Update(&key->md, in + sha_off, plen - sha_off); in aesni_cbc_hmac_sha1_cipher() 465 SHA1_Update(&key->md, out + plen, SHA_DIGEST_LENGTH); in aesni_cbc_hmac_sha1_cipher() 553 SHA1_Update(&key->md, key->aux.tls_aad, plen); in aesni_cbc_hmac_sha1_cipher() 563 SHA1_Update( in aesni_cbc_hmac_sha1_cipher() [all...] |
/third_party/ltp/testcases/kernel/security/integrity/ima/src/ |
H A D | ima_boot_aggregate.c | 89 SHA1_Update(&c, pcr[event.header.pcr].digest, in do_test() 91 SHA1_Update(&c, event.header.digest, in do_test() 116 SHA1_Update(&c, pcr[i].digest, SHA_DIGEST_LENGTH); in do_test()
|
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A D | sha2_prov.c | 63 SHA1_Init, SHA1_Update, SHA1_Final,
|
/third_party/openssl/providers/implementations/digests/ |
H A D | sha2_prov.c | 63 SHA1_Init, SHA1_Update, SHA1_Final,
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | sha.rs | 136 #[corresponds(SHA1_Update)] 140 ffi::SHA1_Update(&mut self.0, buf.as_ptr() as *const c_void, buf.len()); in update()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | sha.h | 50 OSSL_DEPRECATEDIN_3_0 int SHA1_Update(SHA_CTX *c, const void *data, size_t len);
|
/third_party/openssl/include/openssl/ |
H A D | sha.h | 50 OSSL_DEPRECATEDIN_3_0 int SHA1_Update(SHA_CTX *c, const void *data, size_t len);
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | sha.h | 42 int SHA1_Update(SHA_CTX *c, const void *data, size_t len);
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | sha.rs | 22 pub fn SHA1_Update(c: *mut SHA_CTX, data: *const c_void, len: size_t) -> c_int; in SHA1_Update() functions
|
/third_party/openssl/test/ |
H A D | rc4test.c | 117 SHA1_Update(&c, buf, sizeof(buf)); in test_rc_bulk()
|
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_cbc_hmac_sha1_hw.c | 78 SHA1_Update(c, ptr, res); in sha1_update() 97 SHA1_Update(c, ptr, res); in sha1_update()
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_cbc_hmac_sha1_hw.c | 78 SHA1_Update(c, ptr, res); in sha1_update() 97 SHA1_Update(c, ptr, res); in sha1_update()
|
/third_party/node/deps/openssl/openssl/crypto/engine/ |
H A D | eng_openssl.c | 339 return SHA1_Update(EVP_MD_CTX_get0_md_data(ctx), data, count); in test_sha1_update()
|
/third_party/openssl/crypto/engine/ |
H A D | eng_openssl.c | 339 return SHA1_Update(EVP_MD_CTX_get0_md_data(ctx), data, count); in test_sha1_update()
|