Merge pull request #1187 from Celant/general-devel
Updated project to use NuGet where possible
This commit is contained in:
commit
2ab5df8b97
11 changed files with 36 additions and 211 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -61,3 +61,7 @@ postbuild.bat
|
|||
##################
|
||||
*.dotCover
|
||||
_ReSharper.*
|
||||
|
||||
# GTFO NuGet stuff #
|
||||
####################
|
||||
packages/*
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
language: csharp
|
||||
solution: ./TShockAPI/TShockAPI.csproj
|
||||
install:
|
||||
- nuget restore
|
||||
notifications:
|
||||
slack:
|
||||
secure: O4Nibe2fdaUa2ZxuETUg6WEoQKvNM2CotnfaIVgm3fjfe61dfE1P+EgTpbwDG8646jSmpTqMDw8Z6I/WJwGTlXV/ZQsbwu63Cps4MgOTvPHZ0Lsye5azySlJZs1iI4ItYSj2czXfcnJ+qAl1SOOkXJrjB5uyTMWtDpCrSCFB3MA=
|
||||
|
|
|
|||
|
|
@ -54,24 +54,27 @@
|
|||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="BCrypt.Net, Version=0.1.4141.31969, Culture=neutral, PublicKeyToken=f3bc8f8c31beeb49, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\BCrypt.Net.0.1.0\lib\net35\BCrypt.Net.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="HttpServer">
|
||||
<HintPath>..\prebuilts\HttpServer.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Mono.Data.Sqlite">
|
||||
<HintPath>..\prebuilts\Mono.Data.Sqlite.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="BCrypt.Net">
|
||||
<HintPath>..\prebuilts\BCrypt.Net.dll</HintPath>
|
||||
<Reference Include="MySql.Data, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MySql.Data.6.9.8\lib\net45\MySql.Data.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Web" />
|
||||
<Reference Include="MySql.Data">
|
||||
<HintPath>..\prebuilts\MySql.Data.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json">
|
||||
<HintPath>..\prebuilts\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="BackupManager.cs" />
|
||||
|
|
@ -142,6 +145,8 @@
|
|||
<Compile Include="DB\WarpsManager.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<None Include="packages.config" />
|
||||
<None Include="TShockAPI.licenseheader" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
@ -190,7 +195,7 @@
|
|||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
<UserProperties BuildVersion_IncrementBeforeBuild="False" BuildVersion_StartDate="2011/6/17" BuildVersion_BuildVersioningStyle="None.None.None.MonthAndDayStamp" BuildVersion_BuildAction="Both" BuildVersion_UpdateFileVersion="True" BuildVersion_UpdateAssemblyVersion="True" />
|
||||
<UserProperties BuildVersion_UpdateAssemblyVersion="True" BuildVersion_UpdateFileVersion="True" BuildVersion_BuildAction="Both" BuildVersion_BuildVersioningStyle="None.None.None.MonthAndDayStamp" BuildVersion_StartDate="2011/6/17" BuildVersion_IncrementBeforeBuild="False" />
|
||||
</VisualStudio>
|
||||
</ProjectExtensions>
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
|
|
|
|||
9
TShockAPI/app.config
Normal file
9
TShockAPI/app.config
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<system.data>
|
||||
<DbProviderFactories>
|
||||
<remove invariant="MySql.Data.MySqlClient" />
|
||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
|
||||
</DbProviderFactories>
|
||||
</system.data>
|
||||
</configuration>
|
||||
6
TShockAPI/packages.config
Normal file
6
TShockAPI/packages.config
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="BCrypt.Net" version="0.1.0" targetFramework="net45" />
|
||||
<package id="MySql.Data" version="6.9.8" targetFramework="net45" />
|
||||
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net45" />
|
||||
</packages>
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 038bb3ca31da35cb3cd044283f5709e9f95ca311
|
||||
Subproject commit 9aa16827fbd4d029d1fa0ab6b9697bfc11138b0e
|
||||
|
|
@ -1,201 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>BCrypt.Net</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:BCrypt.Net.BCrypt">
|
||||
<summary>BCrypt implementation.</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
BCrypt implements OpenBSD-style Blowfish password hashing using the scheme described in
|
||||
<a href="http://www.usenix.org/event/usenix99/provos/provos_html/index.html">"A Future-
|
||||
Adaptable Password Scheme"</a> by Niels Provos and David Mazieres.
|
||||
</para>
|
||||
<para>
|
||||
This password hashing system tries to thwart off-line password cracking using a
|
||||
computationally-intensive hashing algorithm, based on Bruce Schneier's Blowfish cipher.
|
||||
The work factor of the algorithm is parameterised, so it can be increased as computers
|
||||
get faster.
|
||||
</para>
|
||||
<para>
|
||||
Usage is really simple. To hash a password for the first time, call the <see cref="M:BCrypt.Net.BCrypt.HashPassword(System.String)"/> method with a random salt, like this:
|
||||
</para>
|
||||
<code>string pw_hash = BCrypt.HashPassword(plain_password);</code>
|
||||
<para>
|
||||
To check whether a plaintext password matches one that has been hashed previously,
|
||||
use the <see cref="M:BCrypt.Net.BCrypt.Verify(System.String,System.String)"/> method:
|
||||
</para>
|
||||
<code>
|
||||
if (BCrypt.Verify(candidate_password, stored_hash))
|
||||
Console.WriteLine("It matches");
|
||||
else
|
||||
Console.WriteLine("It does not match");
|
||||
</code>
|
||||
<para>
|
||||
The <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/> method takes an optional parameter (workFactor) that
|
||||
determines the computational complexity of the hashing:
|
||||
</para>
|
||||
<code>
|
||||
string strong_salt = BCrypt.GenerateSalt(10);
|
||||
string stronger_salt = BCrypt.GenerateSalt(12);
|
||||
</code>
|
||||
<para>
|
||||
The amount of work increases exponentially (2**log_rounds), so each increment is twice
|
||||
as much work. The default log_rounds is 10, and the valid range is 4 to 31.
|
||||
</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashString(System.String)">
|
||||
<summary>
|
||||
Hash a string using the OpenBSD bcrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<remarks>Just an alias for HashPassword.</remarks>
|
||||
<param name="source">The string to hash.</param>
|
||||
<returns>The hashed string.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashString(System.String,System.Int32)">
|
||||
<summary>
|
||||
Hash a string using the OpenBSD bcrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<remarks>Just an alias for HashPassword.</remarks>
|
||||
<param name="source"> The string to hash.</param>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2**workFactor.</param>
|
||||
<returns>The hashed string.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String)">
|
||||
<summary>
|
||||
Hash a password using the OpenBSD bcrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt"/>.
|
||||
</summary>
|
||||
<param name="input">The password to hash.</param>
|
||||
<returns>The hashed password.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.Int32)">
|
||||
<summary>
|
||||
Hash a password using the OpenBSD bcrypt scheme and a salt generated by <see cref="M:BCrypt.Net.BCrypt.GenerateSalt(System.Int32)"/> using the given <paramref name="workFactor"/>.
|
||||
</summary>
|
||||
<param name="input"> The password to hash.</param>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2**workFactor.</param>
|
||||
<returns>The hashed password.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String)">
|
||||
<summary>Hash a password using the OpenBSD bcrypt scheme.</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="input">The password to hash.</param>
|
||||
<param name="salt"> the salt to hash with (perhaps generated using BCrypt.gensalt).</param>
|
||||
<returns>The hashed password</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.GenerateSalt(System.Int32)">
|
||||
<summary>
|
||||
Generate a salt for use with the <see cref="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String)"/> method.
|
||||
</summary>
|
||||
<param name="workFactor">The log2 of the number of rounds of hashing to apply - the work
|
||||
factor therefore increases as 2**workFactor.</param>
|
||||
<returns>A base64 encoded salt value.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.GenerateSalt">
|
||||
<summary>
|
||||
Generate a salt for use with the <see cref="M:BCrypt.Net.BCrypt.HashPassword(System.String,System.String)"/> method
|
||||
selecting a reasonable default for the number of hashing rounds to apply.
|
||||
</summary>
|
||||
<returns>A base64 encoded salt value.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Verify(System.String,System.String)">
|
||||
<summary>
|
||||
Verifies that the hash of the given <paramref name="text"/> matches the provided
|
||||
<paramref name="hash"/>
|
||||
</summary>
|
||||
<param name="text">The text to verify.</param>
|
||||
<param name="hash"> The previously-hashed password.</param>
|
||||
<returns>true if the passwords match, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EncodeBase64(System.Byte[],System.Int32)">
|
||||
<summary>
|
||||
Encode a byte array using bcrypt's slightly-modified base64 encoding scheme. Note that this
|
||||
is *not* compatible with the standard MIME-base64 encoding.
|
||||
</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="byteArray">The byte array to encode.</param>
|
||||
<param name="length"> The number of bytes to encode.</param>
|
||||
<returns>Base64-encoded string.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.DecodeBase64(System.String,System.Int32)">
|
||||
<summary>
|
||||
Decode a string encoded using bcrypt's base64 scheme to a byte array. Note that this is *not*
|
||||
compatible with the standard MIME-base64 encoding.
|
||||
</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="encodedstring">The string to decode.</param>
|
||||
<param name="maximumBytes"> The maximum bytes to decode.</param>
|
||||
<returns>The decoded byte array.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Char64(System.Char)">
|
||||
<summary>
|
||||
Look up the 3 bits base64-encoded by the specified character, range-checking against
|
||||
conversion table.
|
||||
</summary>
|
||||
<param name="character">The base64-encoded value.</param>
|
||||
<returns>The decoded value of x.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Encipher(System.UInt32[],System.Int32)">
|
||||
<summary>Blowfish encipher a single 64-bit block encoded as two 32-bit halves.</summary>
|
||||
<param name="blockArray">An array containing the two 32-bit half blocks.</param>
|
||||
<param name="offset"> The position in the array of the blocks.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.StreamToWord(System.Byte[],System.Int32@)">
|
||||
<summary>Cycically extract a word of key material.</summary>
|
||||
<param name="data">The string to extract the data from.</param>
|
||||
<param name="off"> [in,out] The current offset.</param>
|
||||
<returns>The next word of material from data.</returns>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.InitializeKey">
|
||||
<summary>Initializes the Blowfish key schedule.</summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.Key(System.Byte[])">
|
||||
<summary>Key the Blowfish cipher.</summary>
|
||||
<param name="keyBytes">The key byte array.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.EKSKey(System.Byte[],System.Byte[])">
|
||||
<summary>
|
||||
Perform the "enhanced key schedule" step described by Provos and Mazieres in "A Future-
|
||||
Adaptable Password Scheme" http://www.openbsd.org/papers/bcrypt-paper.ps.
|
||||
</summary>
|
||||
<param name="saltBytes"> Salt byte array.</param>
|
||||
<param name="inputBytes">Input byte array.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.BCrypt.CryptRaw(System.Byte[],System.Byte[],System.Int32)">
|
||||
<summary>Perform the central hashing step in the bcrypt scheme.</summary>
|
||||
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
|
||||
illegal values.</exception>
|
||||
<param name="inputBytes">The input byte array to hash.</param>
|
||||
<param name="saltBytes"> The salt byte array to hash with.</param>
|
||||
<param name="logRounds"> The binary logarithm of the number of rounds of hashing to apply.</param>
|
||||
<returns>A byte array containing the hashed result.</returns>
|
||||
</member>
|
||||
<member name="T:BCrypt.Net.SaltParseException">
|
||||
<summary>Exception for signalling parse errors. </summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor">
|
||||
<summary>Default constructor. </summary>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.SaltParseException"/>.</summary>
|
||||
<param name="message">The message.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor(System.String,System.Exception)">
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.SaltParseException"/>.</summary>
|
||||
<param name="message"> The message.</param>
|
||||
<param name="innerException">The inner exception.</param>
|
||||
</member>
|
||||
<member name="M:BCrypt.Net.SaltParseException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>Initializes a new instance of <see cref="T:BCrypt.Net.SaltParseException"/>.</summary>
|
||||
<param name="info"> The information.</param>
|
||||
<param name="context">The context.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue