-
Notifications
You must be signed in to change notification settings - Fork 22
/
Scrypt.nuspec
22 lines (22 loc) · 1.01 KB
/
Scrypt.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Scrypt.NET</id>
<version>1.3.0</version>
<title>Scrypt.NET</title>
<authors>Vinicius Chiele</authors>
<owners>Vinicius Chiele</owners>
<projectUrl>https://github.com/viniciuschiele/scrypt</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET implementation of scrypt algorithm.</description>
<releaseNotes>1.3.0 - Fix issues
1.2.0 - Add IsValid method
1.1.0 - Add compatibility to .NET Core</releaseNotes>
<language>en-US</language>
<tags>scrypt,password,hash,hashing,crypto,cryptographic,cryptography</tags>
</metadata>
<files>
<file src="src\Scrypt.Net20\bin\Release\Scrypt.dll" target="lib\net20\Scrypt.dll" />
<file src="src\Scrypt.Core\bin\Release\netstandard1.4\Scrypt.dll" target="lib\netstandard1.4\Scrypt.dll" />
</files>
</package>