Skip to content
This repository was archived by the owner on Dec 20, 2018. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Core/Rfc6238AuthenticationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal static class Rfc6238AuthenticationService
private static readonly Encoding _encoding = new UTF8Encoding(false, true);
private static readonly RandomNumberGenerator _rng = RandomNumberGenerator.Create();

// Generates a new 80-bit security token
// Generates a new 160-bit security token
public static byte[] GenerateRandomKey()
{
byte[] bytes = new byte[20];
Expand Down