- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for calculateMac (0.07 sec)
-
src/main/java/jcifs/smb/SpnegoContext.java
return this.mechContext.isPreferredMech(mech); } @Override public byte[] calculateMIC ( byte[] data ) throws CIFSException { if ( !this.completed ) { throw new CIFSException("Context is not established"); } return this.mechContext.calculateMIC(data); } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Jan 04 04:18:31 UTC 2021 - 14.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
return true; } /** * {@inheritDoc} * * @throws CIFSException * * @see jcifs.smb.SSPContext#calculateMIC(byte[]) */ @Override public byte[] calculateMIC ( byte[] data ) throws CIFSException { try { return this.gssContext.getMIC(data, 0, data.length, new MessageProp(false)); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:22:42 UTC 2018 - 13.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
} @Override public boolean isMICAvailable () { return !this.auth.isGuest() && this.signKey != null && this.verifyKey != null; } @Override public byte[] calculateMIC ( byte[] data ) throws CIFSException { byte[] sk = this.signKey; if ( sk == null ) { throw new CIFSException("Signing is not initialized"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0)