Soenneker.Hashing.Argon2 3.0.514

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Hashing.Argon2 --version 3.0.514
                    
NuGet\Install-Package Soenneker.Hashing.Argon2 -Version 3.0.514
                    
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="Soenneker.Hashing.Argon2" Version="3.0.514" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Hashing.Argon2" Version="3.0.514" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Hashing.Argon2" />
                    
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 Soenneker.Hashing.Argon2 --version 3.0.514
                    
#r "nuget: Soenneker.Hashing.Argon2, 3.0.514"
                    
#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.
#addin nuget:?package=Soenneker.Hashing.Argon2&version=3.0.514
                    
Install Soenneker.Hashing.Argon2 as a Cake Addin
#tool nuget:?package=Soenneker.Hashing.Argon2&version=3.0.514
                    
Install Soenneker.Hashing.Argon2 as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Hashing.Argon2

A utility library for Argon2 hashing and verification

Features

  • Password Hashing: Generates a secure, Base64-encoded hash for a plaintext password.
  • Password Verification: Verifies a plaintext password against a hashed value.
  • Fully customizable parameters for salt size, hash size, iterations, memory usage, and parallelism.

Installation

dotnet add package Soenneker.Hashing.Argon2

Usage

1. Hashing a Password
string password = "SecurePassword123";
string hash = await Argon2HashingUtil.Hash(password);

// Result: A Base64-encoded hash string
Console.WriteLine(hash);
2. Verifying a Password
string password = "SecurePassword123";
string hash = await Argon2HashingUtil.Hash(password);

bool isValid = await Argon2HashingUtil.Verify(password, hash);

// Result: True if the password matches the hash
Console.WriteLine(isValid ? "Password is valid!" : "Invalid password.");
3. Custom Parameters
string password = "CustomPassword";
int saltSize = 32;       // Custom salt size (bytes)
int hashSize = 64;       // Custom hash size (bytes)
int iterations = 8;      // Custom iteration count
int memorySize = 131072; // Custom memory size (KB)
int parallelism = 4;     // Custom thread count

string hash = await Argon2HashingUtil.Hash(password, saltSize, hashSize, iterations, memorySize, parallelism);
bool isValid = await Argon2HashingUtil.Verify(password, hash, saltSize, hashSize, iterations, memorySize, parallelism);

Default Parameters

  • Salt Size: 16 bytes
  • Hash Size: 32 bytes
  • Iterations: 4
  • Memory Size: 65536 KB
  • Parallelism: 2
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.524 0 4/4/2025
3.0.523 0 4/4/2025
3.0.522 56 4/1/2025
3.0.521 52 4/1/2025
3.0.520 53 4/1/2025
3.0.519 56 3/31/2025
3.0.518 55 3/31/2025
3.0.517 58 3/31/2025
3.0.516 54 3/31/2025
3.0.515 55 3/31/2025
3.0.514 66 3/29/2025
3.0.513 65 3/29/2025
3.0.512 69 3/29/2025
3.0.511 443 3/25/2025
3.0.510 438 3/25/2025
3.0.509 439 3/25/2025
3.0.508 452 3/25/2025
3.0.507 101 3/21/2025
3.0.506 96 3/21/2025
3.0.505 113 3/21/2025
3.0.504 113 3/21/2025
3.0.503 126 3/18/2025
3.0.502 128 3/18/2025
3.0.501 128 3/18/2025
3.0.500 126 3/18/2025
3.0.499 59 3/15/2025
3.0.498 55 3/15/2025
3.0.497 53 3/15/2025
3.0.496 57 3/15/2025
3.0.495 51 3/15/2025
3.0.493 141 3/12/2025
3.0.492 138 3/12/2025
3.0.491 143 3/11/2025
3.0.490 140 3/11/2025
3.0.489 152 3/11/2025
3.0.488 146 3/11/2025
3.0.487 148 3/11/2025
3.0.486 144 3/11/2025
3.0.485 153 3/11/2025
3.0.484 144 3/11/2025
3.0.483 144 3/11/2025
3.0.482 141 3/11/2025
3.0.481 144 3/11/2025
3.0.480 145 3/11/2025
3.0.479 202 3/7/2025
3.0.478 188 3/7/2025
3.0.477 194 3/7/2025
3.0.476 200 3/7/2025
3.0.475 104 3/2/2025
3.0.474 82 3/2/2025
3.0.473 76 3/2/2025
3.0.472 82 3/2/2025
3.0.471 83 3/2/2025
3.0.470 84 3/2/2025
3.0.469 82 3/2/2025
3.0.468 81 3/2/2025
3.0.467 79 3/2/2025
3.0.466 80 3/2/2025
3.0.465 82 3/1/2025
3.0.464 80 3/1/2025
3.0.463 83 3/1/2025
3.0.462 84 3/1/2025
3.0.461 79 3/1/2025
3.0.460 83 3/1/2025
3.0.459 84 3/1/2025
3.0.458 84 3/1/2025
3.0.457 85 3/1/2025
3.0.456 84 3/1/2025
3.0.455 81 3/1/2025
3.0.454 83 3/1/2025
3.0.453 76 3/1/2025
3.0.452 73 3/1/2025
3.0.451 86 2/26/2025
3.0.450 86 2/25/2025
3.0.449 87 2/25/2025
3.0.448 81 2/25/2025
3.0.447 81 2/25/2025
3.0.446 80 2/25/2025
3.0.445 83 2/24/2025
3.0.444 73 2/24/2025
3.0.443 96 2/23/2025
3.0.442 76 2/23/2025
3.0.441 79 2/23/2025
3.0.440 79 2/23/2025
3.0.439 78 2/23/2025
3.0.438 82 2/22/2025
3.0.437 79 2/22/2025
3.0.436 84 2/22/2025
3.0.435 84 2/22/2025
3.0.434 76 2/22/2025
3.0.433 76 2/22/2025
3.0.432 78 2/22/2025
3.0.431 80 2/22/2025
3.0.430 81 2/22/2025
3.0.429 83 2/22/2025
3.0.428 81 2/21/2025
3.0.427 82 2/21/2025
3.0.426 90 2/21/2025
3.0.425 90 2/21/2025
3.0.424 87 2/21/2025
3.0.423 88 2/21/2025
3.0.422 88 2/19/2025
3.0.421 93 2/19/2025
3.0.420 84 2/19/2025
3.0.419 90 2/19/2025
3.0.418 88 2/19/2025
3.0.417 92 2/19/2025
3.0.416 83 2/19/2025
3.0.415 93 2/19/2025
3.0.414 87 2/19/2025
3.0.413 87 2/19/2025
3.0.412 86 2/18/2025
3.0.411 86 2/18/2025
3.0.410 95 2/18/2025
3.0.409 93 2/18/2025
3.0.408 92 2/18/2025
3.0.407 78 2/18/2025
3.0.406 94 2/18/2025
3.0.405 89 2/14/2025
3.0.404 87 2/14/2025
3.0.403 88 2/14/2025
3.0.402 86 2/13/2025
3.0.401 85 2/13/2025
3.0.400 90 2/13/2025
3.0.399 88 2/12/2025
3.0.398 100 2/12/2025
3.0.397 93 2/12/2025
3.0.396 89 2/12/2025
3.0.395 92 2/12/2025
3.0.394 98 2/12/2025
3.0.393 88 2/12/2025
3.0.392 85 2/12/2025
3.0.391 91 2/12/2025
3.0.390 88 2/12/2025
3.0.389 97 2/11/2025
3.0.388 89 2/11/2025
3.0.387 96 2/11/2025
3.0.386 91 2/11/2025
3.0.385 93 2/11/2025
3.0.384 90 2/11/2025
3.0.383 85 2/11/2025
3.0.382 84 2/11/2025
3.0.381 87 2/11/2025
3.0.380 88 2/11/2025
3.0.379 85 2/11/2025
3.0.378 88 2/11/2025
3.0.377 93 2/11/2025
3.0.376 88 2/11/2025
3.0.375 88 2/11/2025
3.0.374 94 2/10/2025
3.0.373 89 2/10/2025
3.0.372 85 2/10/2025
3.0.371 88 2/10/2025
3.0.370 90 2/10/2025
3.0.369 92 2/10/2025
3.0.368 91 2/10/2025
3.0.367 91 2/10/2025
3.0.366 93 2/10/2025
3.0.365 85 2/10/2025
3.0.364 83 2/9/2025
3.0.363 78 2/9/2025
3.0.362 91 2/9/2025
3.0.361 84 2/9/2025
3.0.360 88 2/9/2025
3.0.359 85 2/9/2025
3.0.358 92 2/8/2025
3.0.357 88 2/8/2025
3.0.356 85 2/8/2025
3.0.355 86 2/8/2025
3.0.354 91 2/8/2025
3.0.353 79 2/8/2025
3.0.352 82 2/8/2025
3.0.351 87 2/8/2025
3.0.350 79 2/8/2025
3.0.349 86 2/7/2025
3.0.348 81 2/7/2025
3.0.347 84 2/7/2025
3.0.346 83 2/7/2025
3.0.345 84 2/7/2025
3.0.344 87 2/7/2025
3.0.343 84 2/7/2025
3.0.342 80 2/7/2025
3.0.341 88 2/7/2025
3.0.340 82 2/7/2025
3.0.339 81 2/7/2025
3.0.338 84 2/7/2025
3.0.337 87 2/7/2025
3.0.336 84 2/7/2025
3.0.335 83 2/7/2025
3.0.334 76 2/7/2025
3.0.333 81 2/7/2025
3.0.332 80 2/7/2025
3.0.331 82 2/7/2025
3.0.330 81 2/6/2025
3.0.329 82 2/6/2025
3.0.328 84 2/5/2025
3.0.327 89 2/5/2025
3.0.326 89 2/5/2025
3.0.325 82 2/5/2025
3.0.324 90 2/5/2025
3.0.323 92 2/5/2025
3.0.322 88 2/5/2025
3.0.321 87 2/5/2025
3.0.320 94 2/5/2025
3.0.319 90 1/28/2025
3.0.318 75 1/28/2025
3.0.317 82 1/28/2025
3.0.316 82 1/28/2025
3.0.315 74 1/28/2025
3.0.314 71 1/28/2025
3.0.313 81 1/28/2025
3.0.312 84 1/28/2025
3.0.311 78 1/27/2025
3.0.310 76 1/27/2025
3.0.309 74 1/27/2025
3.0.308 77 1/27/2025
3.0.307 85 1/27/2025
3.0.306 83 1/27/2025
3.0.305 89 1/26/2025
3.0.304 82 1/26/2025
3.0.303 76 1/26/2025
3.0.302 89 1/26/2025
3.0.301 78 1/26/2025
3.0.300 81 1/26/2025
3.0.299 81 1/26/2025
3.0.298 84 1/26/2025
3.0.297 80 1/25/2025
3.0.296 81 1/25/2025
3.0.295 78 1/25/2025
3.0.294 79 1/25/2025
3.0.293 80 1/25/2025
3.0.292 79 1/25/2025
3.0.291 79 1/25/2025
3.0.290 76 1/25/2025
3.0.289 76 1/25/2025
3.0.288 74 1/24/2025
3.0.287 71 1/24/2025
3.0.286 69 1/24/2025
3.0.285 70 1/24/2025
3.0.284 80 1/24/2025
3.0.283 85 1/24/2025
3.0.282 79 1/24/2025
3.0.281 77 1/24/2025
3.0.280 73 1/24/2025
3.0.279 78 1/24/2025
3.0.278 80 1/24/2025
3.0.277 82 1/23/2025
3.0.276 81 1/23/2025
3.0.275 78 1/23/2025
3.0.274 82 1/23/2025
3.0.273 74 1/23/2025
3.0.272 78 1/22/2025
3.0.271 79 1/22/2025
3.0.270 76 1/22/2025
3.0.269 87 1/21/2025
3.0.268 82 1/21/2025
3.0.266 77 1/21/2025
3.0.265 75 1/21/2025
3.0.264 86 1/21/2025
3.0.263 81 1/21/2025
3.0.262 82 1/21/2025
3.0.261 79 1/21/2025
3.0.260 80 1/21/2025
3.0.259 79 1/21/2025
3.0.258 79 1/21/2025
3.0.257 77 1/21/2025
3.0.256 86 1/21/2025
3.0.255 74 1/21/2025
3.0.254 78 1/21/2025
3.0.253 73 1/21/2025
3.0.252 85 1/21/2025
3.0.251 80 1/21/2025
3.0.250 77 1/21/2025
3.0.249 82 1/21/2025
3.0.248 78 1/21/2025
3.0.247 90 1/20/2025
3.0.246 80 1/20/2025
3.0.245 82 1/20/2025
3.0.244 79 1/20/2025
3.0.243 72 1/20/2025
3.0.242 82 1/20/2025
3.0.241 69 1/20/2025
3.0.240 74 1/20/2025
3.0.239 82 1/20/2025
3.0.238 83 1/20/2025
3.0.237 80 1/20/2025
3.0.236 84 1/20/2025
3.0.235 92 1/20/2025
3.0.234 83 1/20/2025
3.0.233 75 1/20/2025
3.0.232 81 1/20/2025
3.0.231 79 1/20/2025
3.0.230 79 1/20/2025
3.0.229 73 1/19/2025
3.0.228 80 1/19/2025
3.0.227 79 1/19/2025
3.0.226 71 1/19/2025
3.0.225 78 1/19/2025
3.0.224 74 1/19/2025
3.0.223 78 1/19/2025
3.0.222 75 1/19/2025
3.0.221 72 1/19/2025
3.0.220 74 1/19/2025
3.0.219 76 1/18/2025
3.0.218 71 1/18/2025
3.0.217 78 1/18/2025
3.0.216 74 1/18/2025
3.0.215 80 1/18/2025
3.0.214 81 1/18/2025
3.0.213 71 1/18/2025
3.0.212 77 1/18/2025
3.0.211 74 1/18/2025
3.0.210 86 1/17/2025
3.0.209 75 1/17/2025
3.0.208 74 1/17/2025
3.0.207 72 1/17/2025
3.0.206 75 1/17/2025
3.0.205 73 1/17/2025
3.0.204 86 1/17/2025
3.0.203 84 1/17/2025
3.0.202 70 1/17/2025
3.0.201 81 1/16/2025
3.0.200 78 1/16/2025
3.0.199 72 1/16/2025
3.0.198 80 1/16/2025
3.0.197 85 1/16/2025
3.0.196 87 1/16/2025
3.0.195 70 1/16/2025
3.0.194 73 1/16/2025
3.0.193 72 1/16/2025
3.0.192 72 1/16/2025
3.0.191 73 1/16/2025
3.0.190 72 1/16/2025
3.0.189 80 1/16/2025
3.0.188 71 1/15/2025
3.0.187 74 1/15/2025
3.0.186 75 1/15/2025
3.0.185 80 1/15/2025
3.0.184 80 1/15/2025
3.0.183 76 1/15/2025
3.0.182 69 1/15/2025
3.0.181 71 1/15/2025
3.0.180 80 1/15/2025
3.0.179 71 1/15/2025
3.0.178 68 1/15/2025
3.0.177 65 1/15/2025
3.0.176 65 1/15/2025
3.0.175 45 1/15/2025
3.0.174 44 1/15/2025
3.0.173 29 1/15/2025
3.0.172 27 1/15/2025
3.0.171 27 1/15/2025
3.0.170 26 1/15/2025
3.0.169 28 1/15/2025
3.0.168 43 1/14/2025
3.0.167 42 1/14/2025
3.0.166 35 1/14/2025
3.0.165 44 1/14/2025
3.0.164 37 1/14/2025
3.0.163 50 1/13/2025
3.0.162 47 1/13/2025
3.0.161 51 1/13/2025
3.0.160 46 1/13/2025
3.0.159 49 1/13/2025
3.0.158 52 1/13/2025
3.0.157 56 1/11/2025
3.0.156 54 1/11/2025
3.0.155 61 1/11/2025
3.0.154 55 1/11/2025
3.0.153 63 1/11/2025
3.0.152 58 1/11/2025
3.0.151 60 1/10/2025
3.0.150 59 1/10/2025
3.0.149 61 1/10/2025
3.0.148 58 1/10/2025
3.0.147 57 1/10/2025
3.0.146 58 1/10/2025
3.0.145 58 1/10/2025
3.0.144 57 1/10/2025
3.0.143 118 1/3/2025
3.0.142 114 1/3/2025
3.0.141 117 1/3/2025
3.0.140 114 1/3/2025
3.0.139 93 1/3/2025
3.0.138 89 1/3/2025
3.0.137 87 1/3/2025
3.0.136 87 1/3/2025
3.0.135 96 1/2/2025
3.0.134 94 1/2/2025
3.0.133 101 1/2/2025
3.0.132 97 1/2/2025
3.0.131 91 1/2/2025
3.0.130 89 1/2/2025
3.0.129 97 1/2/2025
3.0.128 104 1/1/2025
3.0.127 101 1/1/2025
3.0.126 98 1/1/2025
3.0.125 99 1/1/2025
3.0.124 98 1/1/2025
3.0.123 95 1/1/2025
3.0.122 99 1/1/2025
3.0.121 96 1/1/2025
3.0.120 97 1/1/2025
3.0.119 93 1/1/2025
3.0.118 88 1/1/2025
3.0.117 98 1/1/2025
3.0.116 98 12/31/2024
3.0.115 90 12/31/2024
3.0.114 96 12/31/2024
3.0.113 92 12/31/2024
3.0.112 86 12/31/2024
3.0.111 85 12/31/2024
3.0.110 87 12/31/2024
3.0.109 109 12/31/2024
3.0.108 107 12/31/2024
3.0.107 106 12/31/2024
3.0.106 110 12/31/2024
3.0.105 103 12/31/2024
3.0.104 83 12/31/2024
3.0.103 83 12/31/2024
3.0.102 82 12/31/2024
3.0.101 77 12/31/2024
3.0.100 79 12/31/2024
3.0.99 84 12/31/2024
3.0.98 87 12/31/2024
3.0.97 85 12/30/2024
3.0.96 82 12/30/2024
3.0.95 88 12/28/2024
3.0.94 82 12/28/2024
3.0.93 89 12/28/2024
3.0.92 86 12/28/2024
3.0.91 80 12/28/2024
3.0.90 84 12/27/2024
3.0.89 93 12/27/2024
3.0.88 86 12/27/2024
3.0.87 92 12/24/2024
3.0.86 81 12/24/2024
3.0.85 78 12/24/2024
3.0.84 85 12/24/2024
3.0.83 82 12/24/2024
3.0.82 86 12/24/2024
3.0.81 81 12/24/2024
3.0.80 80 12/24/2024
3.0.79 82 12/24/2024
3.0.78 89 12/24/2024
3.0.77 82 12/24/2024
3.0.76 82 12/24/2024
3.0.75 80 12/24/2024
3.0.74 80 12/24/2024
3.0.73 85 12/24/2024
3.0.72 80 12/24/2024
3.0.71 79 12/23/2024
3.0.70 84 12/23/2024
3.0.69 86 12/23/2024
3.0.68 85 12/23/2024
3.0.67 87 12/23/2024
3.0.66 82 12/23/2024
3.0.65 80 12/23/2024
3.0.64 85 12/23/2024
3.0.63 89 12/23/2024
3.0.62 78 12/23/2024
3.0.61 82 12/23/2024
3.0.60 95 12/22/2024
3.0.59 85 12/22/2024
3.0.58 83 12/22/2024
3.0.57 95 12/22/2024
3.0.56 81 12/22/2024
3.0.55 82 12/22/2024
3.0.54 90 12/22/2024
3.0.53 90 12/22/2024
3.0.52 84 12/22/2024
3.0.51 84 12/22/2024
3.0.50 93 12/22/2024
3.0.49 83 12/22/2024
3.0.48 99 12/22/2024
3.0.47 98 12/21/2024
3.0.46 87 12/21/2024
3.0.45 88 12/21/2024
3.0.44 88 12/21/2024
3.0.43 98 12/21/2024
3.0.42 86 12/21/2024
3.0.41 90 12/21/2024
3.0.40 84 12/21/2024
3.0.39 96 12/21/2024
3.0.38 87 12/21/2024
3.0.37 97 12/21/2024
3.0.36 86 12/21/2024
3.0.35 93 12/21/2024
3.0.34 97 12/21/2024
3.0.33 87 12/21/2024
3.0.32 91 12/20/2024
3.0.31 96 12/20/2024
3.0.30 98 12/20/2024
3.0.29 86 12/20/2024
3.0.28 86 12/20/2024
3.0.27 101 12/20/2024
3.0.26 81 12/20/2024
3.0.25 81 12/20/2024
3.0.24 94 12/20/2024
3.0.23 88 12/20/2024
3.0.22 96 12/20/2024
3.0.21 90 12/19/2024
3.0.20 85 12/19/2024
3.0.19 89 12/19/2024
3.0.18 85 12/19/2024
3.0.17 80 12/19/2024
3.0.16 87 12/19/2024
3.0.15 86 12/19/2024
3.0.14 88 12/19/2024
3.0.13 94 12/19/2024
3.0.12 86 12/19/2024
3.0.11 86 12/18/2024
3.0.9 97 12/17/2024
3.0.8 86 12/17/2024
3.0.7 92 12/17/2024
3.0.6 97 12/16/2024
3.0.5 99 12/16/2024
3.0.4 100 12/11/2024
3.0.3 108 12/11/2024
3.0.2 100 12/10/2024
3.0.1 99 12/10/2024