- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMD5 (0.04 sec)
-
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
this.digest = Crypto.getMD5(); this.macSigningKey = macSigningKey; } /** * Construct a digest with a non-zero starting sequence number * * @param macSigningKey * @param initialSequence */ public SMB1SigningDigest ( byte[] macSigningKey, int initialSequence ) { this.digest = Crypto.getMD5(); this.macSigningKey = macSigningKey;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
log.debug("Server seal key is " + Hexdump.toHexString(this.sealServerKey)); } } private static byte[] deriveKey ( byte[] masterKey, String cnst ) { MessageDigest md5 = Crypto.getMD5(); md5.update(masterKey); md5.update(cnst.getBytes(StandardCharsets.US_ASCII)); md5.update((byte) 0); return md5.digest(); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0)