質問
.NET Framework と .NET Coreでの実行結果が違います。
Q1. corefxのRijndaelImplementation.csを見ると以下のように書かれていました。
なぜ.NET Coreではブロック長256bitがサポートされていないのでしょうか?
Values which were legal in desktop RijndaelManaged but not here in this wrapper type
Q2. .NET Core標準クラスを利用してブロック長256bitの暗号化、複合をするにはどうすれば良いでしょうか。
プログラム
cs
1using System; 2using System.IO; 3using System.Security.Cryptography; 4using System.Text; 5 6namespace Rijndael256Test 7{ 8 class Program 9 { 10 static byte[] RijndaelEncrypt(byte[] bytes) 11 { 12 var key = Encoding.UTF8.GetBytes("aaaaaaaabbbbbbbbccccccccdddddddd"); 13 var iv = Encoding.UTF8.GetBytes("aaaaaaaabbbbbbbbccccccccdddddddd"); 14 15 var aes = Rijndael.Create(); 16 aes.Padding = PaddingMode.PKCS7; 17 aes.Mode = CipherMode.CBC; 18 aes.KeySize = 256; 19 aes.BlockSize = 256; 20 21 using (var decryptor = aes.CreateEncryptor(key, iv)) 22 { 23 return decryptor.TransformFinalBlock(bytes, 0, bytes.Length); 24 } 25 } 26 27 static byte[] RijndaelDecrypt(byte[] bytes) 28 { 29 var key = Encoding.UTF8.GetBytes("aaaaaaaabbbbbbbbccccccccdddddddd"); 30 var iv = Encoding.UTF8.GetBytes("aaaaaaaabbbbbbbbccccccccdddddddd"); 31 32 var aes = Rijndael.Create(); 33 aes.Padding = PaddingMode.PKCS7; 34 aes.Mode = CipherMode.CBC; 35 aes.KeySize = 256; 36 aes.BlockSize = 256; 37 38 using (var decryptor = aes.CreateDecryptor(key, iv)) 39 { 40 return decryptor.TransformFinalBlock(bytes, 0, bytes.Length); 41 } 42 } 43 44 static void Main(string[] args) 45 { 46 var bytes = Encoding.UTF8.GetBytes("helloworld"); 47 bytes = RijndaelEncrypt(bytes); 48 bytes = RijndaelDecrypt(bytes); 49 50 Console.WriteLine(Encoding.UTF8.GetString(bytes)); 51 52 } 53 } 54} 55
.NET Framework 4.6.1での実行結果
helloworld
.NET Core 2.1.201 での実行結果
Unhandled Exception: System.PlatformNotSupportedException: BlockSize must be 128 in this implementation. at Internal.Cryptography.RijndaelImplementation.set_BlockSize(Int32 value) at Rijndael256Test.Program.RijndaelEncrypt(Byte[] bytes) in Program.cs:line 19 at Rijndael256Test.Program.Main(String[] args) in Program.cs:line 47

回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/07/26 00:26 編集
2018/07/26 01:22
2018/07/26 02:56
2018/07/26 05:19