diff --git a/src/srp/SrpInteger.cs b/src/srp/SrpInteger.cs index 93f174a..ae9813e 100644 --- a/src/srp/SrpInteger.cs +++ b/src/srp/SrpInteger.cs @@ -121,7 +121,7 @@ public SrpInteger ModPow(SrpInteger exponent, SrpInteger modulus) /// /// Returns the fixed-length hexadecimal representation of the instance. /// - /// Custom hexadecimal length (optional) + /// Custom hexadecimal length (optional). public string ToHex(int? hexLength = null) { hexLength = HexLength ?? hexLength; diff --git a/src/srp/srp.csproj b/src/srp/srp.csproj index 7188464..8548a37 100644 --- a/src/srp/srp.csproj +++ b/src/srp/srp.csproj @@ -4,9 +4,9 @@ SRP-6a protocol implementation for .NET Standard 2.0 and .NET Framework 3.5+ Copyright © 2018 Alexey Yakovlev srp - 1.0.3 + 1.0.4 1.0.0.0 - 1.0.3.0 + $(Version).0 Alexey Yakovlev net35;net40;net45;netstandard1.6;netstandard2.0 true @@ -24,6 +24,9 @@ SecureRemotePassword What's new: + v1.0.4: + — Fixed padding issues in the arithmetic operations. + v1.0.3: — Fixed SrpParameters thread safety issue.