- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MD4 (0.01 sec)
-
src/main/java/jcifs/smb1/util/MD4.java
/** * Creates a new MD4 message digest instance. * Initializes the digest with the MD4 algorithm parameters. */ public MD4() { super("MD4"); engineReset(); } /** * This constructor is here to implement cloneability of this class. */ private MD4(final MD4 md) { this(); context = md.context.clone();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
/** * */ private Crypto() { } /** * Get an MD4 message digest instance. * @return MD4 digest instance */ public static MessageDigest getMD4() { try { return MessageDigest.getInstance("MD4", getProvider()); } catch (final NoSuchAlgorithmException e) { throw new CIFSUnsupportedCryptoException(e); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0)