Skip to content

Commit

Permalink
Updated the project file.
Browse files Browse the repository at this point in the history
  • Loading branch information
yallie committed Dec 19, 2018
1 parent cbd604a commit 8963bbe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/srp/SrpInteger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public SrpInteger ModPow(SrpInteger exponent, SrpInteger modulus)
/// <summary>
/// Returns the fixed-length hexadecimal representation of the <see cref="SrpInteger"/> instance.
/// </summary>
/// <param name="hexLength">Custom hexadecimal length (optional)</param>
/// <param name="hexLength">Custom hexadecimal length (optional).</param>
public string ToHex(int? hexLength = null)
{
hexLength = HexLength ?? hexLength;
Expand Down
7 changes: 5 additions & 2 deletions src/srp/srp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<Description>SRP-6a protocol implementation for .NET Standard 2.0 and .NET Framework 3.5+</Description>
<Copyright>Copyright © 2018 Alexey Yakovlev</Copyright>
<AssemblyTitle>srp</AssemblyTitle>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.3.0</FileVersion>
<FileVersion>$(Version).0</FileVersion>
<Authors>Alexey Yakovlev</Authors>
<TargetFrameworks>net35;net40;net45;netstandard1.6;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -24,6 +24,9 @@
<RootNamespace>SecureRemotePassword</RootNamespace>
<PackageReleaseNotes>What's new:

v1.0.4:
— Fixed padding issues in the arithmetic operations.

v1.0.3:
— Fixed SrpParameters thread safety issue.

Expand Down

0 comments on commit 8963bbe

Please sign in to comment.