I am using the "BouncyCastle.Crypto.dll" for encrypt/decrypt a string in my app. I am using the following code from this blog:
我使用“BouncyCastle.Crypto.dll”来加密/解密我的应用程序中的字符串。我正在使用此博客中的以下代码:
-
I have a class BCEngine, exactly the same as the one given in the link mentioned above.
我有一个BCEngine类,与上面提到的链接完全相同。
public class BCEngine { private readonly Encoding _encoding; private readonly IBlockCipher _blockCipher; private PaddedBufferedBlockCipher _cipher; private IBlockCipherPadding _padding; public BCEngine(IBlockCipher blockCipher, Encoding encoding) { _blockCipher = blockCipher; _encoding = encoding; } public void SetPadding(IBlockCipherPadding padding) { if (padding != null) _padding = padding; } public string Encrypt(string plain, string key) { byte[] result = BouncyCastleCrypto(true, _encoding.GetBytes(plain), key); return Convert.ToBase64String(result); } public string Decrypt(string cipher, string key) { byte[] result = BouncyCastleCrypto(false, Convert.FromBase64String(cipher), key); return _encoding.GetString(result); } /// <summary> /// /// </summary> /// <param name="forEncrypt"></param> /// <param name="input"></param> /// <param name="key"></param> /// <returns></returns> /// <exception cref="CryptoException"></exception> private byte[] BouncyCastleCrypto(bool forEncrypt, byte[] input, string key) { try { _cipher = _padding == null ? new PaddedBufferedBlockCipher(_blockCipher) : new PaddedBufferedBlockCipher(_blockCipher, _padding); byte[] keyByte = _encoding.GetBytes(key); _cipher.Init(forEncrypt, new KeyParameter(keyByte)); return _cipher.DoFinal(input); } catch (Org.BouncyCastle.Crypto.CryptoException ex) { throw new CryptoException(ex.Message); } }
}
}
I am using an asp.net form in which i have written code as given below:
我使用的是asp.net表单,其中我编写了如下代码:
public partial class EncryptionForm : System.Web.UI.Page
{
Encoding _encoding;
IBlockCipherPadding _padding;
string key = "DFGFRT";
string textToBeEncrypted = "Original text. Please encrypt me.";
string txtEncryptedText = string.empty;
string txtDecryptedText = string.empty;
protected void Page_Load(object sender, EventArgs e)
{
_encoding = Encoding.ASCII;
Pkcs7Padding pkcs = new Pkcs7Padding();
_padding = pkcs;
}
protected void btnEncrypt_Click(object sender, EventArgs e)
{
txtEncryptedText = AESEncryption(textToBeEncrypted, key, true);
}
protected void btnDecrypt_Click(object sender, EventArgs e)
{
txtDecryptedText = AESDecryption(txtEncryptedText.Text, key, true);
}
public string AESEncryption(string plain, string key, bool fips)
{
BCEngine bcEngine = new BCEngine(new AesEngine(), _encoding);
bcEngine.SetPadding(_padding);
return bcEngine.Encrypt(plain, key);
}
public string AESDecryption(string cipher, string key, bool fips)
{
BCEngine bcEngine = new BCEngine(new AesEngine(), _encoding);
bcEngine.SetPadding(_padding);
return bcEngine.Decrypt(cipher, key);
}
}
Not sure, but due to some reason, I get an exception when I call the btnEncrypt_Click
不确定,但由于某种原因,我在调用btnEncrypt_Click时遇到异常
"Key length not 128/192/256 bits."
“密钥长度不是128/192/256位。”
Can anybody please guide? I am a complete newbie to this. Thanks in Advance.
有人可以指导吗?我是一个完全新手。提前致谢。
2 个解决方案
#1
7
Your string key = "DFGFRT";
is not 128/192/256 bits.
你的字符串键=“DFGFRT”;不是128/192/256位。
DFGFRT
is 6 characters, which is 6 (or 12?) bytes = 8*12 = 96 bits (at most).
DFGFRT是6个字符,即6(或12?)字节= 8 * 12 = 96位(最多)。
To get a 128 bit key you need a 16 byte string, so I'd go on the safe side and use a 16 character string so it will be a 128 bit key if using single byte characters and 256 if using wide characters.
要获得一个128位密钥,你需要一个16字节的字符串,所以我会安全地使用一个16字符的字符串,因此如果使用单字节字符则为128位密钥,如果使用宽字符则为256。
#2
5
Fairly simple, your key is "DFGFRT" which is 6 characters/bytes, which is 6 * 8 = 48 bits.
相当简单,你的密钥是“DFGFRT”,它是6个字符/字节,即6 * 8 = 48位。
The encryption methods used needs a key of 128/192/256 bits in length, which equals to 16/24/32 characters/bytes.
使用的加密方法需要长度为128/192/256位的密钥,等于16/24/32字符/字节。
#1
7
Your string key = "DFGFRT";
is not 128/192/256 bits.
你的字符串键=“DFGFRT”;不是128/192/256位。
DFGFRT
is 6 characters, which is 6 (or 12?) bytes = 8*12 = 96 bits (at most).
DFGFRT是6个字符,即6(或12?)字节= 8 * 12 = 96位(最多)。
To get a 128 bit key you need a 16 byte string, so I'd go on the safe side and use a 16 character string so it will be a 128 bit key if using single byte characters and 256 if using wide characters.
要获得一个128位密钥,你需要一个16字节的字符串,所以我会安全地使用一个16字符的字符串,因此如果使用单字节字符则为128位密钥,如果使用宽字符则为256。
#2
5
Fairly simple, your key is "DFGFRT" which is 6 characters/bytes, which is 6 * 8 = 48 bits.
相当简单,你的密钥是“DFGFRT”,它是6个字符/字节,即6 * 8 = 48位。
The encryption methods used needs a key of 128/192/256 bits in length, which equals to 16/24/32 characters/bytes.
使用的加密方法需要长度为128/192/256位的密钥,等于16/24/32字符/字节。