Symbol: nvme_auth_hmac_update
drivers/nvme/common/auth.c
268
EXPORT_SYMBOL_GPL(nvme_auth_hmac_update);
drivers/nvme/common/auth.c
297
nvme_auth_hmac_update(&hmac, data, data_len);
drivers/nvme/common/auth.c
347
nvme_auth_hmac_update(&hmac, nqn, strlen(nqn));
drivers/nvme/common/auth.c
348
nvme_auth_hmac_update(&hmac, "NVMe-over-Fabrics", 17);
drivers/nvme/common/auth.c
556
nvme_auth_hmac_update(&hmac, c1, hash_len);
drivers/nvme/common/auth.c
557
nvme_auth_hmac_update(&hmac, c2, hash_len);
drivers/nvme/common/auth.c
642
nvme_auth_hmac_update(&hmac, hostnqn, strlen(hostnqn));
drivers/nvme/common/auth.c
643
nvme_auth_hmac_update(&hmac, " ", 1);
drivers/nvme/common/auth.c
644
nvme_auth_hmac_update(&hmac, subsysnqn, strlen(subsysnqn));
drivers/nvme/common/auth.c
645
nvme_auth_hmac_update(&hmac, " NVMe-over-Fabrics", 18);
drivers/nvme/host/auth.c
458
nvme_auth_hmac_update(&hmac, challenge, chap->hash_len);
drivers/nvme/host/auth.c
461
nvme_auth_hmac_update(&hmac, buf, 4);
drivers/nvme/host/auth.c
464
nvme_auth_hmac_update(&hmac, buf, 2);
drivers/nvme/host/auth.c
467
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/host/auth.c
468
nvme_auth_hmac_update(&hmac, "HostHost", 8);
drivers/nvme/host/auth.c
469
nvme_auth_hmac_update(&hmac, ctrl->opts->host->nqn,
drivers/nvme/host/auth.c
472
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/host/auth.c
473
nvme_auth_hmac_update(&hmac, ctrl->opts->subsysnqn,
drivers/nvme/host/auth.c
530
nvme_auth_hmac_update(&hmac, challenge, chap->hash_len);
drivers/nvme/host/auth.c
533
nvme_auth_hmac_update(&hmac, buf, 4);
drivers/nvme/host/auth.c
536
nvme_auth_hmac_update(&hmac, buf, 2);
drivers/nvme/host/auth.c
539
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/host/auth.c
540
nvme_auth_hmac_update(&hmac, "Controller", 10);
drivers/nvme/host/auth.c
541
nvme_auth_hmac_update(&hmac, ctrl->opts->subsysnqn,
drivers/nvme/host/auth.c
544
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/host/auth.c
545
nvme_auth_hmac_update(&hmac, ctrl->opts->host->nqn,
drivers/nvme/target/auth.c
325
nvme_auth_hmac_update(&hmac, challenge, shash_len);
drivers/nvme/target/auth.c
328
nvme_auth_hmac_update(&hmac, buf, 4);
drivers/nvme/target/auth.c
331
nvme_auth_hmac_update(&hmac, buf, 2);
drivers/nvme/target/auth.c
334
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/target/auth.c
335
nvme_auth_hmac_update(&hmac, "HostHost", 8);
drivers/nvme/target/auth.c
337
nvme_auth_hmac_update(&hmac, ctrl->hostnqn, strlen(ctrl->hostnqn));
drivers/nvme/target/auth.c
338
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/target/auth.c
339
nvme_auth_hmac_update(&hmac, ctrl->subsys->subsysnqn,
drivers/nvme/target/auth.c
394
nvme_auth_hmac_update(&hmac, challenge, shash_len);
drivers/nvme/target/auth.c
397
nvme_auth_hmac_update(&hmac, buf, 4);
drivers/nvme/target/auth.c
400
nvme_auth_hmac_update(&hmac, buf, 2);
drivers/nvme/target/auth.c
403
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/target/auth.c
404
nvme_auth_hmac_update(&hmac, "Controller", 10);
drivers/nvme/target/auth.c
405
nvme_auth_hmac_update(&hmac, ctrl->subsys->subsysnqn,
drivers/nvme/target/auth.c
408
nvme_auth_hmac_update(&hmac, buf, 1);
drivers/nvme/target/auth.c
409
nvme_auth_hmac_update(&hmac, ctrl->hostnqn, strlen(ctrl->hostnqn));
include/linux/nvme-auth.h
36
void nvme_auth_hmac_update(struct nvme_auth_hmac_ctx *hmac, const u8 *data,