Does the class returned by System.Security.Cryptography.Aes.Create() uses a managed or a native crypto implementation? #81155
-
I've developed an app with .NET 7 / Maui which uses encryption. I need to know if the class returned by System.Security.Cryptography.Aes.Create() uses a managed or a native crypto implementation before I can deploy the app to the Apple AppStore. From appstoreconnect.apple.com: I do not need to provide the export compliance documentation if my app uses native iOS encryption. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Native. There is no managed implementation of AES in .NET Core / .NET 5+. (The type AesManaged exists, but even it uses native libraries on .NET Core / .NET 5+) |
Beta Was this translation helpful? Give feedback.
Native. There is no managed implementation of AES in .NET Core / .NET 5+. (The type AesManaged exists, but even it uses native libraries on .NET Core / .NET 5+)