mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-08-20 09:37:44 +08:00
Use the plain Aes.Create() instead of Aes.Create("AesManaged")
This commit is contained in:
parent
181444afbc
commit
8cfaa099c8
@ -688,7 +688,7 @@
|
||||
|
||||
var iv = new byte[16];
|
||||
|
||||
using (var aes = Aes.Create("AesManaged")!)
|
||||
using (var aes = Aes.Create())
|
||||
{
|
||||
aes.Key = intermediateKey;
|
||||
aes.IV = iv;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user