- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for calculatePreauthHash (0.2 sec)
-
src/main/java/jcifs/smb/SmbSessionImpl.java
this.preauthIntegrityHash = trans.calculatePreauthHash(reqBytes, 0, reqBytes.length, this.preauthIntegrityHash); if ( response.getStatus() == NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED ) { byte[] respBytes = response.getRawPayload(); this.preauthIntegrityHash = trans.calculatePreauthHash(respBytes, 0, respBytes.length, this.preauthIntegrityHash);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
synchronized ( this.preauthIntegrityHash ) { this.preauthIntegrityHash = calculatePreauthHash(input, 0, input.length, this.preauthIntegrityHash); } } byte[] calculatePreauthHash ( byte[] input, int off, int len, byte[] oldHash ) throws CIFSException { if ( !this.smb2 || this.negotiated == null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)