Hi, I have file encrypted file by BouncyCastle by "AES/ECB/PKCS7Padding" algorithm and also .der certificate which the file is encrypted by. This certificate has 3072 Bits RSA public key. And I need to decrypt that file in C#. So I exported key from that certificate in PKCS#7 format and tried this code but it doesn't works. How can I decrypt that file?
static void Main(string[] args) {
string file = @"C:\encrypted.file";
string keyf = @"C:\key.p7b";
byte[] key = File.ReadAllBytes(keyf);
byte[] data = File.ReadAllBytes(file);
string s = Decrypt(data, key);
Console.Write(s);
}
public static string Decrypt(byte[] data, byte[] key) {
AesCryptoServiceProvider aes = new AesCryptoServiceProvider();
aes.Mode = CipherMode.ECB;
aes.Padding = PaddingMode.PKCS7;
aes.Key = key;
ICryptoTransform decrypt = aes.CreateDecryptor();
return UTF8Encoding.UTF8.GetString(decrypt.TransformFinalBlock(data, 0, data.Length));
}
