- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道有人对此提出了其他问题,但到目前为止还没有提供解决方案或正是我遇到的问题。
下面的类处理字符串的加密和解密,传入的 key 和向量始终相同。
被加密和解密的字符串总是数字,大多数工作但偶尔会在解密时失败(但仅在生产服务器上)。我应该提到本地和生产环境都在 Windows Server 2003 上的 IIS6 中,使用该类的代码位于 .ashx 处理程序中。在生产服务器上失败的例子是“0000232668”
错误信息是
System.Security.Cryptography.CryptographicException:填充无效且无法删除。
在 System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[]& outputBuffer, Int32 outputOffset, PaddingMode paddingMode, Boolean fLast)
对于代码
public class Aes
{
private byte[] Key;
private byte[] Vector;
private ICryptoTransform EncryptorTransform, DecryptorTransform;
private System.Text.UTF8Encoding UTFEncoder;
public Aes(byte[] key, byte[] vector)
{
this.Key = key;
this.Vector = vector;
// our encyption method
RijndaelManaged rm = new RijndaelManaged();
rm.Padding = PaddingMode.PKCS7;
// create an encryptor and decyptor using encryption method. key and vector
EncryptorTransform = rm.CreateEncryptor(this.Key, this.Vector);
DecryptorTransform = rm.CreateDecryptor(this.Key, this.Vector);
// used to translate bytes to text and vice versa
UTFEncoder = new System.Text.UTF8Encoding();
}
/// Encrypt some text and return a string suitable for passing in a URL.
public string EncryptToString(string TextValue)
{
return ByteArrToString(Encrypt(TextValue));
}
/// Encrypt some text and return an encrypted byte array.
public byte[] Encrypt(string TextValue)
{
//Translates our text value into a byte array.
Byte[] bytes = UTFEncoder.GetBytes(TextValue);
Byte[] encrypted = null;
//Used to stream the data in and out of the CryptoStream.
using (MemoryStream memoryStream = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(memoryStream, EncryptorTransform, CryptoStreamMode.Write))
{
cs.Write(bytes, 0, bytes.Length);
}
encrypted = memoryStream.ToArray();
}
return encrypted;
}
/// The other side: Decryption methods
public string DecryptString(string EncryptedString)
{
return Decrypt(StrToByteArray(EncryptedString));
}
/// Decryption when working with byte arrays.
public string Decrypt(byte[] EncryptedValue)
{
Byte[] decryptedBytes = null;
using (MemoryStream encryptedStream = new MemoryStream())
{
using (CryptoStream decryptStream = new CryptoStream(encryptedStream, DecryptorTransform, CryptoStreamMode.Write))
{
decryptStream.Write(EncryptedValue, 0, EncryptedValue.Length);
}
decryptedBytes = encryptedStream.ToArray();
}
return UTFEncoder.GetString(decryptedBytes);
}
/// Convert a string to a byte array. NOTE: Normally we'd create a Byte Array from a string using an ASCII encoding (like so).
// System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
// return encoding.GetBytes(str);
// However, this results in character values that cannot be passed in a URL. So, instead, I just
// lay out all of the byte values in a long string of numbers (three per - must pad numbers less than 100).
public byte[] StrToByteArray(string str)
{
if (str.Length == 0)
throw new Exception("Invalid string value in StrToByteArray");
byte val;
byte[] byteArr = new byte[str.Length / 3];
int i = 0;
int j = 0;
do
{
val = byte.Parse(str.Substring(i, 3));
byteArr[j++] = val;
i += 3;
}
while (i < str.Length);
return byteArr;
}
// Same comment as above. Normally the conversion would use an ASCII encoding in the other direction:
// System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
// return enc.GetString(byteArr);
public string ByteArrToString(byte[] byteArr)
{
byte val;
string tempStr = "";
for (int i = 0; i <= byteArr.GetUpperBound(0); i++)
{
val = byteArr[i];
if (val < (byte)10)
tempStr += "00" + val.ToString();
else if (val < (byte)100)
tempStr += "0" + val.ToString();
else
tempStr += val.ToString();
}
return tempStr;
}
最佳答案
我倾向于明确地调用 FlushFinalBlock CryptoStream 上的方法,然后再关闭它。这意味着在您的加密方法中执行以下操作:
using (CryptoStream cs = new CryptoStream(memoryStream, EncryptorTransform, CryptoStreamMode.Write))
{
cs.Write(bytes, 0, bytes.Length);
cs.FlushFinalBlock();
}
关于.net - RijndaelManaged "Padding is invalid and cannot be removed"仅在生产中解密时发生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2116607/
问题 我想用 RijndaelManaged 解密加密数据但结果始终为空("" 或数据长度全为零的字节数组)。 所有参数,盐和数据都正确,CryptoHelper.CreateRijndaelMana
我在搜索 RSACypthyServiceProvider 时在 MSDN 上找到了以下代码示例。在评论的帮助下我无法理解代码的某些部分。 什么是模数和指数? 什么是IV? 为什么他们使用 Rijnd
我想在我的应用程序中实现最安全、最可靠的对称 key 加密形式。用户应该输入密码来加密/解密,仅此而已。对于 RijndaelManaged,必须输入 key 和 IV。我不确定如何解决这种情况。现在
我有一个关于加密的问题:基本上在我的网络应用程序中我使用了 Enterprise Library 5.0 他们有一个密码 block ,所以基本上在他们提供的配置工具中我注册了一个 block 并生成
我正在尝试使用 Rijndael 256 位 block 大小、256 位 key 大小、ECB 模式和用于填充的零进行加密。 我试图使用 OpenSSL::Cipher::AES.new(256,
我可以加密图像文件。但无法解密该文件。 while ((readLen = cryptStrm.Read(bs, 0, bs.Length)) > 0) 谁能猜出哪一部分是错的?我编写的代码如下。 当
我在使用 RijndaelManaged 时遇到了一个奇怪的问题。基本上我有一个新实例,我在其中设置了 CipherMode、Padding、IV 和 Key。然后,我创建了另一个实例并将以下属性的相
我有以下 C# 代码(代码是继承的,无法编译)。这用于解密和解压缩保存的文件。 using System.Security.Cryptography; using System.Text; using
我已经从 http://msdn.microsoft.com/en-us/library/system.security.cryptography.cryptostream.aspx 中获取了解密代码
我想使用 RijndaelManaged 通过任何加盐来加密字符串,因此如果我使用相同的 key 传递加密字符串,我将收到相同的密文。我调用的方法看起来像这样 public static s
有两种方法可以为 RijndaelManaged 指定 key 和 IV。对象。一种是调用CreateEncryptor : var encryptor = rij.CreateEncryptor(E
我目前正在开发一个连接到旧网络服务的 Silverlight 应用程序。 我们的旧网络服务使用了 Silverlight 不支持的加密工具。 最后,我们决定使用 AesManaged 进行加密,但是,
关于方法... RijndaelManaged.CreateDecryptor Method (Byte[], Byte[]) Here它说的是第一个参数... The secret key to b
我正在尝试使用 .NET 中的 RijndaelManaged 类来加密文本字符串。但是,我不断收到 CryptographicException(“要解密的数据长度无效”)。此消息并不是很有帮助,尤
鉴于我将 KeySize 设置为 192,当我通过执行以下操作加密一些数据时: static void Main() { var querystrings =
我得到了这段代码: public static string DoPrefixCipherEncrypt(string strIn, byte[] btKey) { i
我花了一些时间学习如何在 .NET 中使用 RijndaelManaged 库,并开发了以下函数来测试加密文本,并对 MSDN 库稍作修改: Function encryptBytesToBytes_
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我知道有人对此提出了其他问题,但到目前为止还没有提供解决方案或正是我遇到的问题。 下面的类处理字符串的加密和解密,传入的 key 和向量始终相同。 被加密和解密的字符串总是数字,大多数工作但偶尔会在解
RijndaelManaged 类属性 KeySize 、 BlockSize 、 FeedbackSize 和 Padding 的默认值是什么?默认值是否也是最好的? 最佳答案 这是 Rijndea
我是一名优秀的程序员,十分优秀!