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

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived