Browse Source

Bugfix: DerEncodingHelper.WriteLength was writing incorrect length

Tal Aloni 7 years ago
parent
commit
4fffe28a83
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SMBLibrary/Authentication/GSSAPI/SPNEGO/DerEncodingHelper.cs

+ 1 - 1
SMBLibrary/Authentication/GSSAPI/SPNEGO/DerEncodingHelper.cs

@@ -46,7 +46,7 @@ namespace SMBLibrary.Authentication.GSSAPI
                 {
                     byte value = (byte)(length % 256);
                     values.Add(value);
-                    length = value / 256;
+                    length = length / 256;
                 }
                 while (length > 0);
                 values.Reverse();