aboutsummaryrefslogtreecommitdiff
path: root/src/hkdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hkdf.c')
-rw-r--r--src/hkdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hkdf.c b/src/hkdf.c
index ab661de..16e0b5b 100644
--- a/src/hkdf.c
+++ b/src/hkdf.c
@@ -61,7 +61,7 @@ cstatus_t hkdfExpandProcess(
counter[0] = 1; /* counter is offset by 1 for init */
result = CSTATUS_FAIL; /* Start in fail state */
- /* counter as a span */
+ /* span over counter value that points to the counter buffer */
ncSpanInitC(&counterSpan, counter, sizeof(counter));
/* Compute T(N) = HMAC(prk, T(n-1) | info | n) */