Skip to content

Commit

Permalink
Merge pull request #36 from TechLiam/v1.4.0
Browse files Browse the repository at this point in the history
V1.4.2
  • Loading branch information
TechLiam authored Jan 30, 2020
2 parents e00418a + 612d7a5 commit e5797bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion SqrlForNet/SqrlCommandWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,8 @@ private void SendResponse(Tif tifValue, bool includeCpsUrl = false)
{
var idk = GetClientParams()["idk"];
var suk = Options.GetUserSukInternal(idk, Request.HttpContext);
responseMessageBuilder.AppendLine("suk=" + Base64UrlTextEncoder.Encode(Encoding.ASCII.GetBytes(suk)), true);
//Removed Base64 Encoding for SUK which was causing a validation error on VUK / URS
responseMessageBuilder.AppendLine($"suk={suk}", true);
}

if (!(tifValue.HasFlag(Tif.TransientError) || tifValue.HasFlag(Tif.BadId) ||
Expand Down
11 changes: 6 additions & 5 deletions SqrlForNet/SqrlForNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>1.4.1</Version>
<Version>1.4.2</Version>
<Authors>Liam Raper</Authors>
<Description>SQRL for the .Net Standard runtimes. Secure Quick Reliable Login is a highly secure user privacy based authentication system that removes the need for users to have more than one password for a global identity https://www.grc.com/sqrl/sqrl.htm for more information of the protocal.</Description>
<Copyright>Liam Raper 2019</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TechLiam/SQRL-For-Dot-Net-Standard</PackageProjectUrl>
<RepositoryUrl>https://github.com/TechLiam/SQRL-For-Dot-Net-Standard</RepositoryUrl>
<PackageTags>SQRL, Authentication, ASP.net, ASP.net core, .net core 3.0, ASP.net 3.0</PackageTags>
<PackageReleaseNotes>1.4.1 - Fix for JSON comma missing and Linux new line issue
<PackageReleaseNotes>1.4.2 - Fix for user unlock not unlocking users
1.4.1 - Fix for JSON comma missing and Linux new line issue
1.4.0 - QR codes are now configurable from within the options, Fixed issue with EnableHelpers generating NUT's when it didn't need to
1.3.0 - Fix for spelling mistake for MillieSeconds so its not MilliSeconds
Fix for 500 error with clients that don't send opt in request (opt is now optional)
Expand All @@ -36,10 +37,10 @@ Reduced the NUT size to 43 characters
<RepositoryType>GitHub</RepositoryType>
<SignAssembly>false</SignAssembly>
<PackageIcon>sqrllogo.png</PackageIcon>
<PackageVersion>1.4.1</PackageVersion>
<PackageVersion>1.4.2</PackageVersion>
<Title>SqrlForNet</Title>
<AssemblyVersion>1.4.1.0</AssemblyVersion>
<FileVersion>1.4.1.0</FileVersion>
<AssemblyVersion>1.4.2.0</AssemblyVersion>
<FileVersion>1.4.2.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit e5797bd

Please sign in to comment.