yescrypt 1.0.0-dev-5

This is a prerelease version of yescrypt.
There is a newer version of this package available.
See the version list below for details.
dotnet add package yescrypt --version 1.0.0-dev-5
NuGet\Install-Package yescrypt -Version 1.0.0-dev-5
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="yescrypt" Version="1.0.0-dev-5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add yescrypt --version 1.0.0-dev-5
#r "nuget: yescrypt, 1.0.0-dev-5"
#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.
// Install yescrypt as a Cake Addin
#addin nuget:?package=yescrypt&version=1.0.0-dev-5&prerelease

// Install yescrypt as a Cake Tool
#tool nuget:?package=yescrypt&version=1.0.0-dev-5&prerelease

.NET implementation of the yescrypt a password-based key derivation function (KDF) and password hashing scheme.
- Yescrypt.CheckPasswd() validates plaintext passwords against yescrypt password hashes typical of the /etc/shadow file in modern Linux distros
- Yescrypt.ChangePasswd() generates a new password hash in the same format with random salt, using yescrypt settings in the existing password hash
- Yescrypt.NewPasswd() generates a new password hash with the settings specified by the caller

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.
  • .NETStandard 2.1

    • No dependencies.

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
1.0.15 220 4/12/2024
1.0.13 6,916 11/10/2023
1.0.12 94 11/10/2023
1.0.11 11,397 2/4/2023
1.0.10 265 2/4/2023
1.0.0-dev-8 141 2/4/2023
1.0.0-dev-7 134 2/4/2023
1.0.0-dev-5 137 2/4/2023
1.0.0-dev-4 131 2/3/2023

- Initial version validated against latest Ubuntu / Debian release
- Limitations:
   1. Does not implement p>1 (i.e., no parallelism
   2. No ROMs support, and therefore, is best suited to casual checking of passwords, not proof of work or password cracking
   3. Only tested with YESCRYPT_RW flavor, if YESCRYPT_WORM flavor is encountered, an exception will be thrown