error the input data is not complete blockIs there a benefit to padding with random data in AES encryption?AeS encryption 'Value cannot be null'Decryption Returns x00 StreamI use CBC_CTS_Mode_ExternalCipher and get garbled outputDecrypt serializable struct is not workDifferent results in AES256 encryption in Swift (iOS) and PHPWhat C# AES encryption options to use so result can be decrypted on a public web site?AES in ECB mode with OpenSSL library not producing expected resultsAES256-CBC Ciphertext from BouncyCastle decrypts in BC, but PHP openssl_decrypt fails w/same inputsStoring the IV with the ciphertext Crypto++ CBC AES encryption

Do I have a twin with permutated remainders?

Why Is Death Allowed In the Matrix?

What's the output of a record cartridge playing an out-of-speed record

Font hinting is lost in Chrome-like browsers (for some languages )

Dragon forelimb placement

Why are 150k or 200k jobs considered good when there are 300k+ births a month?

Can a Warlock become Neutral Good?

What is the word for reserving something for yourself before others do?

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

Have astronauts in space suits ever taken selfies? If so, how?

Did Shadowfax go to Valinor?

LaTeX closing $ signs makes cursor jump

Why do falling prices hurt debtors?

Maximum likelihood parameters deviate from posterior distributions

Which models of the Boeing 737 are still in production?

Why doesn't H₄O²⁺ exist?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

What does "Puller Prush Person" mean?

Languages that we cannot (dis)prove to be Context-Free

Is it possible to do 50 km distance without any previous training?

Can divisibility rules for digits be generalized to sum of digits

How old can references or sources in a thesis be?

Is it legal for company to use my work email to pretend I still work there?



error the input data is not complete block


Is there a benefit to padding with random data in AES encryption?AeS encryption 'Value cannot be null'Decryption Returns x00 StreamI use CBC_CTS_Mode_ExternalCipher and get garbled outputDecrypt serializable struct is not workDifferent results in AES256 encryption in Swift (iOS) and PHPWhat C# AES encryption options to use so result can be decrypted on a public web site?AES in ECB mode with OpenSSL library not producing expected resultsAES256-CBC Ciphertext from BouncyCastle decrypts in BC, but PHP openssl_decrypt fails w/same inputsStoring the IV with the ciphertext Crypto++ CBC AES encryption






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















enter image description here



I make a chat application and I use AES algorithm. But I see this error " the input data is not complete block".



This is my code:



 public static string DecryptStringFromBytes_Aes(byte[] cipherText, string key, string mode)
cipherText.Length <= 0)
throw new ArgumentNullException("cipherText");

// Declare the string used to hold
// the decrypted text.
string plaintext = null;

// Create an Aes object
// with the specified key and IV.
using (Aes aesAlg = Aes.Create())

if (mode == "ECB") aesAlg.Mode = CipherMode.ECB;
else if (mode == "CBC") aesAlg.Mode = CipherMode.CBC;
else if (mode == "CFB") aesAlg.Mode = CipherMode.CFB;

aesAlg.Key = Convert.FromBase64String(key);
aesAlg.IV = ASCIIEncoding.ASCII.GetBytes(key.Substring(0, 16));

// Create a decryptor to perform the stream transform.
ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);

// Create the streams used for decryption.
using (MemoryStream msDecrypt = new MemoryStream(cipherText))

using (CryptoStream csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))

using (StreamReader srDecrypt = new StreamReader(csDecrypt))


// Read the decrypted bytes from the decrypting stream
// and place them in a string.
plaintext = srDecrypt.ReadToEnd();




return plaintext;



The error is in line: plaintext = srDecrypt.ReadToEnd();
I don't know why.



Help me, please. Thank you very much.










share|improve this question
























  • Picture is not really helpful. Please remove the image and try to correctly catch the exception into a console or a log file. Then provide the actual error text in your question.

    – LoneWanderer
    Mar 9 at 2:47











  • I have no idea about the rest of your code, but if you're using sockets, remember that one call to Read() doesn't necessarily return a whole "message", or even a single message. What might be two messages sent client-side might arrive in one read, or in three reads, etc.

    – John
    Mar 9 at 2:49


















0















enter image description here



I make a chat application and I use AES algorithm. But I see this error " the input data is not complete block".



This is my code:



 public static string DecryptStringFromBytes_Aes(byte[] cipherText, string key, string mode)
cipherText.Length <= 0)
throw new ArgumentNullException("cipherText");

// Declare the string used to hold
// the decrypted text.
string plaintext = null;

// Create an Aes object
// with the specified key and IV.
using (Aes aesAlg = Aes.Create())

if (mode == "ECB") aesAlg.Mode = CipherMode.ECB;
else if (mode == "CBC") aesAlg.Mode = CipherMode.CBC;
else if (mode == "CFB") aesAlg.Mode = CipherMode.CFB;

aesAlg.Key = Convert.FromBase64String(key);
aesAlg.IV = ASCIIEncoding.ASCII.GetBytes(key.Substring(0, 16));

// Create a decryptor to perform the stream transform.
ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);

// Create the streams used for decryption.
using (MemoryStream msDecrypt = new MemoryStream(cipherText))

using (CryptoStream csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))

using (StreamReader srDecrypt = new StreamReader(csDecrypt))


// Read the decrypted bytes from the decrypting stream
// and place them in a string.
plaintext = srDecrypt.ReadToEnd();




return plaintext;



The error is in line: plaintext = srDecrypt.ReadToEnd();
I don't know why.



Help me, please. Thank you very much.










share|improve this question
























  • Picture is not really helpful. Please remove the image and try to correctly catch the exception into a console or a log file. Then provide the actual error text in your question.

    – LoneWanderer
    Mar 9 at 2:47











  • I have no idea about the rest of your code, but if you're using sockets, remember that one call to Read() doesn't necessarily return a whole "message", or even a single message. What might be two messages sent client-side might arrive in one read, or in three reads, etc.

    – John
    Mar 9 at 2:49














0












0








0








enter image description here



I make a chat application and I use AES algorithm. But I see this error " the input data is not complete block".



This is my code:



 public static string DecryptStringFromBytes_Aes(byte[] cipherText, string key, string mode)
cipherText.Length <= 0)
throw new ArgumentNullException("cipherText");

// Declare the string used to hold
// the decrypted text.
string plaintext = null;

// Create an Aes object
// with the specified key and IV.
using (Aes aesAlg = Aes.Create())

if (mode == "ECB") aesAlg.Mode = CipherMode.ECB;
else if (mode == "CBC") aesAlg.Mode = CipherMode.CBC;
else if (mode == "CFB") aesAlg.Mode = CipherMode.CFB;

aesAlg.Key = Convert.FromBase64String(key);
aesAlg.IV = ASCIIEncoding.ASCII.GetBytes(key.Substring(0, 16));

// Create a decryptor to perform the stream transform.
ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);

// Create the streams used for decryption.
using (MemoryStream msDecrypt = new MemoryStream(cipherText))

using (CryptoStream csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))

using (StreamReader srDecrypt = new StreamReader(csDecrypt))


// Read the decrypted bytes from the decrypting stream
// and place them in a string.
plaintext = srDecrypt.ReadToEnd();




return plaintext;



The error is in line: plaintext = srDecrypt.ReadToEnd();
I don't know why.



Help me, please. Thank you very much.










share|improve this question
















enter image description here



I make a chat application and I use AES algorithm. But I see this error " the input data is not complete block".



This is my code:



 public static string DecryptStringFromBytes_Aes(byte[] cipherText, string key, string mode)
cipherText.Length <= 0)
throw new ArgumentNullException("cipherText");

// Declare the string used to hold
// the decrypted text.
string plaintext = null;

// Create an Aes object
// with the specified key and IV.
using (Aes aesAlg = Aes.Create())

if (mode == "ECB") aesAlg.Mode = CipherMode.ECB;
else if (mode == "CBC") aesAlg.Mode = CipherMode.CBC;
else if (mode == "CFB") aesAlg.Mode = CipherMode.CFB;

aesAlg.Key = Convert.FromBase64String(key);
aesAlg.IV = ASCIIEncoding.ASCII.GetBytes(key.Substring(0, 16));

// Create a decryptor to perform the stream transform.
ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);

// Create the streams used for decryption.
using (MemoryStream msDecrypt = new MemoryStream(cipherText))

using (CryptoStream csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))

using (StreamReader srDecrypt = new StreamReader(csDecrypt))


// Read the decrypted bytes from the decrypting stream
// and place them in a string.
plaintext = srDecrypt.ReadToEnd();




return plaintext;



The error is in line: plaintext = srDecrypt.ReadToEnd();
I don't know why.



Help me, please. Thank you very much.







c# aes






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 at 2:48









John

13.8k32645




13.8k32645










asked Mar 9 at 2:44









phong tro cho thuephong tro cho thue

1




1












  • Picture is not really helpful. Please remove the image and try to correctly catch the exception into a console or a log file. Then provide the actual error text in your question.

    – LoneWanderer
    Mar 9 at 2:47











  • I have no idea about the rest of your code, but if you're using sockets, remember that one call to Read() doesn't necessarily return a whole "message", or even a single message. What might be two messages sent client-side might arrive in one read, or in three reads, etc.

    – John
    Mar 9 at 2:49


















  • Picture is not really helpful. Please remove the image and try to correctly catch the exception into a console or a log file. Then provide the actual error text in your question.

    – LoneWanderer
    Mar 9 at 2:47











  • I have no idea about the rest of your code, but if you're using sockets, remember that one call to Read() doesn't necessarily return a whole "message", or even a single message. What might be two messages sent client-side might arrive in one read, or in three reads, etc.

    – John
    Mar 9 at 2:49

















Picture is not really helpful. Please remove the image and try to correctly catch the exception into a console or a log file. Then provide the actual error text in your question.

– LoneWanderer
Mar 9 at 2:47





Picture is not really helpful. Please remove the image and try to correctly catch the exception into a console or a log file. Then provide the actual error text in your question.

– LoneWanderer
Mar 9 at 2:47













I have no idea about the rest of your code, but if you're using sockets, remember that one call to Read() doesn't necessarily return a whole "message", or even a single message. What might be two messages sent client-side might arrive in one read, or in three reads, etc.

– John
Mar 9 at 2:49






I have no idea about the rest of your code, but if you're using sockets, remember that one call to Read() doesn't necessarily return a whole "message", or even a single message. What might be two messages sent client-side might arrive in one read, or in three reads, etc.

– John
Mar 9 at 2:49













0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073519%2ferror-the-input-data-is-not-complete-block%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073519%2ferror-the-input-data-is-not-complete-block%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page