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;
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
add a comment |
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
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 toRead()
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
add a comment |
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
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
c# aes
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 toRead()
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
add a comment |
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 toRead()
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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