From 0c9409721defcc33fbca9332c2553a7379b51a6a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 8 Dec 2020 22:20:00 +1100 Subject: [PATCH] docs: fix simple typo, lenth -> length There is a small typo in arcfour.h. Should read `length` rather than `lenth`. --- arcfour.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcfour.h b/arcfour.h index f9f1e87..3205612 100644 --- a/arcfour.h +++ b/arcfour.h @@ -18,7 +18,7 @@ typedef unsigned char BYTE; // 8-bit byte /*********************** FUNCTION DECLARATIONS **********************/ // Input: state - the state used to generate the keystream // key - Key to use to initialize the state -// len - length of key in bytes (valid lenth is 1 to 256) +// len - length of key in bytes (valid length is 1 to 256) void arcfour_key_setup(BYTE state[], const BYTE key[], int len); // Pseudo-Random Generator Algorithm