aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-08-31 02:04:05 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-08-31 02:04:05 -0400
commit06f38be80c15459b42b5f1602806853117901818 (patch)
tree6b2226fca3f33dd0372ecc2315a8b5acc6b7a73f
parented8fd355d5cb5b2798137e239d40ac18cd4dba40 (diff)
Remove testing write-linesv0.1.1
-rw-r--r--src/HardwareAuthenticator.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/HardwareAuthenticator.cs b/src/HardwareAuthenticator.cs
index f4984ac..a630957 100644
--- a/src/HardwareAuthenticator.cs
+++ b/src/HardwareAuthenticator.cs
@@ -256,8 +256,6 @@ namespace PkiAuthenticator
//Write s to the end of the buffer, zero padding exists from stackalloc
s.CopyTo(concatBuffer[rlen..][(rlen - slen)..]);
-
- Console.WriteLine("r larger");
}
else if (rlen < slen)
{
@@ -266,8 +264,6 @@ namespace PkiAuthenticator
//Write s to the end of the buffer, zero padding exists from stackalloc
s.CopyTo(concatBuffer[slen..]);
-
- Console.WriteLine("s larger");
}
else
{