- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 98 for hexdump (0.15 sec)
-
src/main/java/jcifs/smb1/util/Hexdump.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.util; import java.io.OutputStream; import java.io.PrintStream; /** */ public class Hexdump { private static final String NL = System.getProperty( "line.separator" ); private static final int NL_LENGTH = NL.length(); private static final char[] SPACE_CHARS = {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/util/Hexdump.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util; /** */ public class Hexdump { /** * */ public static final char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
log.debug("Sign key is " + Hexdump.toHexString(this.signKey)); log.debug("Verify key is " + Hexdump.toHexString(this.verifyKey)); } this.sealClientKey = deriveKey(mk, C2S_SEAL_CONSTANT); this.sealClientHandle = Crypto.getArcfour(this.sealClientKey); if ( log.isDebugEnabled() ) { log.debug("Seal key is " + Hexdump.toHexString(this.sealClientKey)); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
",ntlmsspFlags=0x" + Hexdump.toHexString(ntlmsspFlags, 8) + ",workstation=" + workstation + ",isEstablished=" + isEstablished + ",state=" + state + ",serverChallenge="; if (serverChallenge == null) { ret += "null"; } else { ret += Hexdump.toHexString(serverChallenge, 0, serverChallenge.length * 2); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
",flags=0x" + Hexdump.toHexString( flags, 2 ) + ",desiredAccess=0x" + Hexdump.toHexString( desiredAccess, 4 ) + ",searchAttributes=0x" + Hexdump.toHexString( searchAttributes, 4 ) + ",fileAttributes=0x" + Hexdump.toHexString( fileAttributes, 4 ) + ",creationTime=" + new Date( creationTime ) + ",openFunction=0x" + Hexdump.toHexString( openFunction, 2 ) +
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
super.toString() + ",flags=0x" + Hexdump.toHexString( flags0, 2 ) + ",rootDirectoryFid=" + rootDirectoryFid + ",desiredAccess=0x" + Hexdump.toHexString( desiredAccess, 4 ) + ",allocationSize=" + allocationSize + ",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) + ",shareAccess=0x" + Hexdump.toHexString( shareAccess, 4 ) +
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
+ this.rootDirectoryFid + ",desiredAccess=0x" + Hexdump.toHexString(this.desiredAccess, 4) + ",allocationSize=" + this.allocationSize + ",extFileAttributes=0x" + Hexdump.toHexString(this.extFileAttributes, 4) + ",shareAccess=0x"
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
+ Hexdump.toHexString(this.desiredAccess, 4) + ",searchAttributes=0x" + Hexdump.toHexString(this.searchAttributes, 4) + ",fileAttributes=0x" + Hexdump.toHexString(this.fileAttributes, 4) + ",creationTime=" + new Date(this.creationTime)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
Hexdump.toHexString(checksum), Hexdump.toHexString(this.serverSignature.getChecksum()), this.serverSignature.getType(), data.length)); } if ( log.isTraceEnabled() ) { log.trace(String.format("Checksum data %s", Hexdump.toHexString(checksumData))); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
if ( log.isDebugEnabled() ) { log.debug("signature verification failure"); //$NON-NLS-1$ log.debug("Expect: " + Hexdump.toHexString(signature, 0, 8)); log.debug("Have: " + Hexdump.toHexString(data, offset + SmbConstants.SIGNATURE_OFFSET, 8)); } return true; } } return false; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 10.6K bytes - Viewed (0)