- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for DECRYPTION (0.07 sec)
-
src/main/java/jcifs/smb/SmbSessionImpl.java
* Decrypt a message using the session's encryption context * * @param encryptedMessage the encrypted message with transform header * @return decrypted message * @throws CIFSException if decryption fails or encryption is not enabled */ public byte[] decryptMessage(byte[] encryptedMessage) throws CIFSException { if (this.encryptionContext == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} else { throw new SmbUnsupportedOperationException("SMB3 required for encryption, negotiated: " + dialect); } try { // Derive encryption and decryption keys using SMB3 KDF final int dialectInt = dialect.getDialect(); final byte[] encryptionKey = Smb3KeyDerivation.deriveEncryptionKey(dialectInt, sessionKey, preauthHash);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0)