Ecng.Security 1.0.248

dotnet add package Ecng.Security --version 1.0.248
                    
NuGet\Install-Package Ecng.Security -Version 1.0.248
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ecng.Security" Version="1.0.248" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Security" Version="1.0.248" />
                    
Directory.Packages.props
<PackageReference Include="Ecng.Security" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ecng.Security --version 1.0.248
                    
#r "nuget: Ecng.Security, 1.0.248"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ecng.Security@1.0.248
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ecng.Security&version=1.0.248
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Security&version=1.0.248
                    
Install as a Cake Tool

Ecng.Security

Cryptography helpers for hashing, encryption and password storage.

Purpose

Simplify common crypto scenarios such as AES encryption, RSA key handling and password verification.

Key Features

  • AES helpers for symmetric encryption
  • RSA utilities and parameter conversions
  • Simple hashing extensions (data.Md5(), data.Sha256(), ...)
  • Secret class for salted password hashes

Hashing

Standard .NET:

using var md5 = MD5.Create();
var hash = Convert.ToHexString(md5.ComputeHash(data));

With Ecng:

var hash = data.Md5();

AES encryption

var salt = TypeHelper.GenerateSalt(Secret.DefaultSaltSize);
var iv = new byte[16];
byte[] cipher = plain.EncryptAes("secret", salt, iv);
byte[] result = cipher.DecryptAes("secret", salt, iv);

Passwords

Secret secret = "qwerty".CreateSecret();
bool ok = secret.IsValid("qwerty");
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Ecng.Security:

Package Downloads
Ecng.Serialization

Ecng system framework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.248 341 11/24/2025
1.0.247 305 11/24/2025
1.0.246 309 11/23/2025
1.0.245 649 11/22/2025
1.0.244 875 11/20/2025
1.0.243 864 11/18/2025
1.0.242 816 11/18/2025
1.0.241 838 11/13/2025
1.0.240 742 11/10/2025
1.0.239 1,592 11/1/2025
1.0.238 814 10/28/2025
1.0.237 710 10/27/2025
1.0.236 652 10/27/2025
1.0.235 599 10/25/2025
1.0.234 4,210 10/3/2025
1.0.233 2,009 9/28/2025
1.0.232 748 9/25/2025
1.0.231 4,743 9/2/2025
1.0.230 2,891 8/30/2025
1.0.229 801 8/30/2025
1.0.228 1,626 8/19/2025
1.0.227 7,303 7/13/2025
1.0.226 616 7/13/2025
1.0.225 612 7/12/2025
1.0.224 1,846 7/8/2025
1.0.223 1,334 7/4/2025
1.0.222 665 7/2/2025
1.0.221 5,429 6/16/2025
1.0.220 809 6/9/2025
1.0.219 673 6/8/2025
1.0.218 2,294 5/21/2025
1.0.217 823 5/17/2025
1.0.216 2,328 5/12/2025
1.0.215 730 5/12/2025
1.0.214 2,978 4/17/2025
1.0.213 5,678 3/22/2025
1.0.212 693 3/20/2025
1.0.211 629 3/20/2025
1.0.210 662 3/19/2025
1.0.209 5,631 2/26/2025
1.0.208 719 2/26/2025
1.0.207 9,174 2/5/2025
1.0.206 4,556 1/21/2025
1.0.205 3,619 1/14/2025
1.0.204 2,524 1/12/2025
1.0.203 1,252 1/10/2025
1.0.202 4,746 12/27/2024
1.0.201 1,609 11/20/2024
1.0.200 4,101 11/18/2024
1.0.199 2,467 11/7/2024
1.0.198 1,804 10/19/2024
1.0.197 3,752 10/12/2024
1.0.196 4,309 10/5/2024
1.0.195 5,379 9/18/2024
1.0.194 700 9/17/2024
1.0.193 4,993 9/3/2024
1.0.192 718 9/1/2024
1.0.191 14,627 6/12/2024
1.0.190 3,521 5/28/2024
1.0.189 4,289 5/4/2024
1.0.188 2,932 4/23/2024
1.0.187 2,043 4/21/2024
1.0.186 895 4/14/2024
1.0.185 6,182 3/28/2024
1.0.184 838 3/17/2024
1.0.183 4,140 2/23/2024
1.0.182 716 2/23/2024
1.0.181 4,070 2/18/2024
1.0.180 736 2/18/2024
1.0.179 780 2/16/2024
1.0.178 2,813 2/13/2024
1.0.177 2,607 2/8/2024
1.0.176 2,991 2/5/2024
1.0.175 696 2/4/2024
1.0.174 3,151 1/23/2024
1.0.173 738 1/23/2024
1.0.172 2,435 1/12/2024
1.0.171 5,854 1/2/2024
1.0.170 890 12/29/2023
1.0.169 18,884 11/12/2023
1.0.168 1,238 11/10/2023
1.0.167 818 11/10/2023
1.0.166 1,065 11/9/2023
1.0.165 1,856 11/3/2023
1.0.164 797 11/1/2023
1.0.163 900 11/1/2023
1.0.162 26,199 9/8/2023
1.0.161 1,190 9/8/2023
1.0.160 1,391 9/3/2023
1.0.159 1,674 8/21/2023
1.0.158 1,897 8/14/2023
1.0.157 2,050 8/10/2023
1.0.156 41,731 6/29/2023
1.0.155 16,229 5/27/2023
1.0.154 1,357 5/21/2023
1.0.153 1,515 5/19/2023
1.0.152 26,908 5/8/2023
1.0.151 5,873 4/22/2023
1.0.150 1,331 4/21/2023
1.0.149 52,461 4/3/2023
1.0.148 8,367 3/13/2023
1.0.147 20,377 3/6/2023
1.0.146 2,512 2/26/2023
1.0.145 17,195 2/21/2023
1.0.144 1,571 2/20/2023
1.0.143 2,968 2/15/2023
1.0.142 1,592 2/14/2023
1.0.141 34,249 2/9/2023
1.0.140 18,094 2/7/2023
1.0.139 2,188 2/4/2023
1.0.138 22,561 2/2/2023
1.0.137 18,652 1/30/2023
1.0.136 7,483 1/18/2023
1.0.135 46,282 12/30/2022
1.0.134 3,597 12/23/2022
1.0.133 22,969 12/12/2022
1.0.132 25,549 12/4/2022
1.0.131 2,561 12/4/2022
1.0.130 3,306 11/30/2022
1.0.129 2,571 11/29/2022
1.0.128 2,658 11/28/2022
1.0.127 6,909 11/18/2022
1.0.126 29,761 11/11/2022
1.0.125 2,596 11/11/2022
1.0.124 2,586 11/10/2022
1.0.123 2,801 11/5/2022
1.0.122 4,103 11/4/2022
1.0.121 26,685 11/1/2022
1.0.120 27,134 10/16/2022
1.0.119 9,987 9/10/2022
1.0.118 54,192 9/8/2022
1.0.117 3,116 9/8/2022
1.0.116 3,079 9/8/2022
1.0.115 5,436 9/4/2022
1.0.114 94,208 8/24/2022
1.0.113 12,716 8/8/2022
1.0.112 6,484 7/26/2022
1.0.111 3,613 7/26/2022
1.0.110 57,066 7/19/2022
1.0.109 49,052 7/18/2022
1.0.108 8,802 7/8/2022
1.0.107 7,802 6/18/2022
1.0.106 3,547 6/6/2022
1.0.105 101,157 4/30/2022
1.0.104 3,849 4/20/2022
1.0.103 3,933 4/10/2022
1.0.102 3,850 4/7/2022
1.0.101 3,891 4/7/2022
1.0.100 3,956 4/2/2022
1.0.99 15,250 3/29/2022
1.0.98 6,762 3/27/2022
1.0.97 293,819 1/24/2022
1.0.96 166,024 12/29/2021
1.0.95 31,296 12/20/2021
1.0.94 4,093 12/13/2021
1.0.93 31,784 12/7/2021
1.0.92 30,539 12/6/2021
1.0.91 5,681 12/2/2021
1.0.90 32,300 11/29/2021
1.0.89 31,068 11/22/2021
1.0.88 2,403 11/17/2021
1.0.87 32,863 11/13/2021
1.0.86 5,816 11/10/2021
1.0.85 2,567 11/9/2021
1.0.84 65,693 11/5/2021
1.0.83 4,193 11/4/2021
1.0.82 2,439 11/4/2021
1.0.81 2,365 11/3/2021
1.0.80 2,589 10/30/2021
1.0.79 34,061 10/21/2021
1.0.78 3,020 10/17/2021
1.0.77 64,209 10/14/2021
1.0.76 13,804 10/13/2021
1.0.75 2,571 10/12/2021
1.0.74 34,374 10/11/2021
1.0.73 2,437 10/9/2021
1.0.72 37,634 10/7/2021
1.0.71 39,667 10/7/2021
1.0.70 2,499 10/7/2021
1.0.69 2,488 10/6/2021
1.0.68 2,514 9/28/2021
1.0.67 36,333 9/23/2021
1.0.66 4,104 9/10/2021
1.0.65 2,247 9/9/2021
1.0.64 2,167 9/8/2021
1.0.63 2,209 9/8/2021
1.0.62 33,229 9/6/2021
1.0.61 2,410 8/31/2021
1.0.60 604 8/30/2021
1.0.59 31,984 7/31/2021
1.0.58 56,699 7/30/2021
1.0.57 1,339 7/26/2021
1.0.56 84,299 7/5/2021
1.0.55 1,307 7/1/2021
1.0.54 59,391 6/4/2021
1.0.53 85,419 4/26/2021
1.0.52 29,994 4/19/2021
1.0.51 139,979 4/7/2021
1.0.50 29,201 4/3/2021
1.0.49 166,958 3/22/2021
1.0.48 104,686 3/4/2021
1.0.47 30,890 2/26/2021
1.0.46 155,397 2/2/2021
1.0.45 53,820 1/26/2021
1.0.44 52,897 1/24/2021
1.0.43 1,219 1/24/2021
1.0.42 1,375 1/23/2021
1.0.41 54,133 1/20/2021
1.0.40 1,320 1/20/2021
1.0.39 27,831 1/18/2021
1.0.38 1,333 1/18/2021
1.0.37 26,849 1/16/2021
1.0.36 109,071 12/16/2020
1.0.35 54,071 12/14/2020
1.0.34 31,626 12/9/2020
1.0.33 2,141 12/6/2020
1.0.32 1,449 12/2/2020
1.0.31 1,349 12/2/2020
1.0.30 29,322 12/1/2020
1.0.29 154,205 11/12/2020
1.0.29-atestpub 797 11/11/2020
1.0.28 28,871 10/11/2020
1.0.27 105,412 9/9/2020
1.0.26 27,426 9/3/2020
1.0.25 27,993 8/20/2020
1.0.24 79,495 8/9/2020
1.0.23 27,219 7/28/2020
1.0.22 27,185 7/19/2020
1.0.21 52,285 7/6/2020
1.0.20 80,192 6/6/2020
1.0.19 28,422 6/4/2020
1.0.18 54,031 5/29/2020
1.0.17 54,088 5/21/2020
1.0.16 1,571 5/17/2020
1.0.15 51,669 5/12/2020
1.0.14 102,024 5/4/2020
1.0.13 4,438 4/24/2020
1.0.12 6,042 4/22/2020
1.0.11 1,422 4/22/2020
1.0.10 1,492 4/21/2020
1.0.9 28,414 4/18/2020
1.0.8 26,635 4/16/2020
1.0.7 1,411 4/16/2020
1.0.6 22,703 4/15/2020
1.0.5 24,495 4/11/2020
1.0.4 24,206 4/3/2020
1.0.3 1,354 4/1/2020
1.0.2 11,450 3/27/2020
1.0.1 10,413 3/22/2020
1.0.0 3,206 3/22/2020