Symbol: sha1_update
crypto/sha1.c
82
sha1_update(SHA1_CTX(desc), data, len);
drivers/net/ppp/ppp_mppe.c
119
sha1_update(&ctx, state->master_key, state->keylen);
drivers/net/ppp/ppp_mppe.c
120
sha1_update(&ctx, sha_pad1, sizeof(sha_pad1));
drivers/net/ppp/ppp_mppe.c
121
sha1_update(&ctx, state->session_key, state->keylen);
drivers/net/ppp/ppp_mppe.c
122
sha1_update(&ctx, sha_pad2, sizeof(sha_pad2));
drivers/tee/tee_core.c
156
sha1_update(&ctx, (const u8 *)ns, sizeof(*ns));
drivers/tee/tee_core.c
157
sha1_update(&ctx, (const u8 *)name, size);
include/crypto/sha1.h
162
sha1_update(&ctx->sha_ctx, data, data_len);
include/crypto/sha1.h
66
void sha1_update(struct sha1_ctx *ctx, const u8 *data, size_t len);
lib/crypto/sha1.c
172
EXPORT_SYMBOL_GPL(sha1_update);
lib/crypto/sha1.c
205
sha1_update(&ctx, data, len);
lib/crypto/tests/sha1_kunit.c
12
#define HASH_UPDATE sha1_update
lib/digsig.c
230
sha1_update(&ctx, data, datalen);
lib/digsig.c
231
sha1_update(&ctx, sig, sizeof(*sh));
net/ipv6/addrconf.c
3378
sha1_update(&sha_ctx, data.__data, sizeof(data));
security/keys/trusted-keys/trusted_tpm1.c
155
sha1_update(&sha_ctx, data, dlen);
security/keys/trusted-keys/trusted_tpm1.c
207
sha1_update(&sha_ctx, (const u8 *)&result, sizeof(result));
security/keys/trusted-keys/trusted_tpm1.c
208
sha1_update(&sha_ctx, (const u8 *)&ordinal, sizeof(ordinal));
security/keys/trusted-keys/trusted_tpm1.c
215
sha1_update(&sha_ctx, buffer + dpos, dlen);
security/keys/trusted-keys/trusted_tpm1.c
279
sha1_update(&sha_ctx, (const u8 *)&result, sizeof(result));
security/keys/trusted-keys/trusted_tpm1.c
280
sha1_update(&sha_ctx, (const u8 *)&ordinal, sizeof(ordinal));
security/keys/trusted-keys/trusted_tpm1.c
288
sha1_update(&sha_ctx, buffer + dpos, dlen);