summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/poly1305/poly1305.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/poly1305/poly1305.c b/crypto/poly1305/poly1305.c
index b3bf2b117b..3d8f32ebae 100644
--- a/crypto/poly1305/poly1305.c
+++ b/crypto/poly1305/poly1305.c
@@ -168,7 +168,7 @@ poly1305_blocks(void *ctx, const unsigned char *inp, size_t len, u32 padbit)
h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8));
/*
* padbit can be zero only when original len was
- * POLY1306_BLOCK_SIZE, but we don't check
+ * POLY1305_BLOCK_SIZE, but we don't check
*/
h2 += (u64)(d1 >> 64) + padbit;