Closed bag7dad closed 4 years ago
crypto = new RijndaelManaged(); crypto.Key = key; crypto.IV = new byte[16]; crypto.Padding = PaddingMode.PKCS7;
about key and IV its ok what about Padding ? or its not important?
Padding is not part of this library.
PKCS is a well-defined standard, and PKCS padding method can be applied separately outside this library.
about key and IV its ok what about Padding ? or its not important?