Closed pablofridman closed 9 years ago
in c# library CryptLib.cs Change Line Number about 120
byte[] plainText = _rcipher.CreateEncryptor().TransformFinalBlock(_enc.GetBytes(_inputText), 0,_inputText.Length);
To
byte[] plainText = _rcipher.CreateEncryptor().TransformFinalBlock(_enc.GetBytes(_inputText), 0, _enc.GetBytes(_inputText).Length);
Thanks a lot
Before star thanks for the code! very useful. I having a problem with big texts, its always cutting the text in some point, I'm not sure if it is cutting the text in the encryption or in the decryption process. Thanks! Pablo