1 18 19 package jcifs.smb; 20 21 import java.io.Serializable ; 22 import jcifs.UniAddress; 23 import jcifs.util.Hexdump; 24 25 public final class NtlmChallenge implements Serializable { 26 27 public byte[] challenge; 28 public UniAddress dc; 29 30 NtlmChallenge( byte[] challenge, UniAddress dc ) { 31 this.challenge = challenge; 32 this.dc = dc; 33 } 34 35 public String toString() { 36 return "NtlmChallenge[challenge=0x" + 37 Hexdump.toHexString( challenge, 0, challenge.length * 2 ) + 38 ",dc=" + dc.toString() + "]"; 39 } 40 } 41 | Popular Tags |