You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.</Description>
20
20
<PackageLicenseFile>LICENSE</PackageLicenseFile>
21
-
<PackageReleaseNotes>- Add support for Entity Framework Core 3</PackageReleaseNotes>
21
+
<PackageReleaseNotes>- Remove initializationVector parameter from `AesProvider` constructor.
22
+
- Apply unique IV for each row.</PackageReleaseNotes>
/// Creates a new <see cref="AesProvider"/> instance used to perform symetric encryption and decryption on strings.
21
35
/// </summary>
22
36
/// <param name="key">AES key used for the symetric encryption.</param>
23
37
/// <param name="initializationVector">AES Initialization Vector used for the symetric encryption.</param>
24
38
/// <param name="mode">Mode for operation used in the symetric encryption.</param>
25
39
/// <param name="padding">Padding mode used in the symetric encryption.</param>
40
+
[Obsolete("This constructor has been deprecated and will be removed in future versions. Please use the AesProvider(byte[], CipherMode, PaddingMode) constructor instead.")]
0 commit comments