From a03eb5c003070117b82fcab78e5dabf2a814c7ce Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Wed, 5 Nov 2025 18:42:18 +0700 Subject: [PATCH] Fix typos in Algorithms/Crypto/Paddings/Pkcs7Padding.cs --- Algorithms/Crypto/Paddings/Pkcs7Padding.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms/Crypto/Paddings/Pkcs7Padding.cs b/Algorithms/Crypto/Paddings/Pkcs7Padding.cs index bcfbc304..e0fdca0b 100644 --- a/Algorithms/Crypto/Paddings/Pkcs7Padding.cs +++ b/Algorithms/Crypto/Paddings/Pkcs7Padding.cs @@ -74,7 +74,7 @@ public int AddPadding(byte[] input, int inputOffset) /// /// Removes the PKCS7 padding from the given input data. /// - /// The input data with PKCS7 padding. Must not be null and must have a vaild length and padding. + /// The input data with PKCS7 padding. Must not be null and must have a valid length and padding. /// The input data without the padding as a new byte array. /// /// Thrown if the input data is null, has an invalid length, or has an invalid padding.