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.