aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs')
-rw-r--r--Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs32
1 files changed, 16 insertions, 16 deletions
diff --git a/Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs b/Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs
index 745b1f663..a178e319b 100644
--- a/Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs
+++ b/Emby.Common.Implementations/IO/SharpCifs/Smb/NtlmChallenge.cs
@@ -18,23 +18,23 @@ using SharpCifs.Util;
namespace SharpCifs.Smb
{
-
- public sealed class NtlmChallenge
- {
- public byte[] Challenge;
- public UniAddress Dc;
+ public sealed class NtlmChallenge
+ {
+ public byte[] Challenge;
- internal NtlmChallenge(byte[] challenge, UniAddress dc)
- {
- this.Challenge = challenge;
- this.Dc = dc;
- }
+ public UniAddress Dc;
- public override string ToString()
- {
- return "NtlmChallenge[challenge=0x" + Hexdump.ToHexString(Challenge, 0, Challenge
- .Length * 2) + ",dc=" + Dc + "]";
- }
- }
+ internal NtlmChallenge(byte[] challenge, UniAddress dc)
+ {
+ this.Challenge = challenge;
+ this.Dc = dc;
+ }
+
+ public override string ToString()
+ {
+ return "NtlmChallenge[challenge=0x" + Hexdump.ToHexString(Challenge, 0, Challenge.Length * 2)
+ + ",dc=" + Dc + "]";
+ }
+ }
}