- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for engineDigest (0.12 sec)
-
src/main/java/jcifs/smb1/util/HMACT64.java
throw new IllegalStateException(ex.getMessage()); } } protected byte[] engineDigest() { byte[] digest = md5.digest(); md5.update(opad); return md5.digest(digest); } protected int engineDigest(byte[] buf, int offset, int len) { byte[] digest = md5.digest(); md5.update(opad); md5.update(digest); try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/util/HMACT64.java
throw new IllegalStateException(ex.getMessage()); } } @Override protected byte[] engineDigest () { byte[] digest = this.md5.digest(); this.md5.update(this.opad); return this.md5.digest(digest); } @Override protected int engineDigest ( byte[] buf, int offset, int len ) { byte[] digest = this.md5.digest(); this.md5.update(this.opad);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
} /** * Completes the hash computation by performing final operations such * as padding. At the return of this engineDigest, the MD engine is * reset. * * @return the array of bytes for the resulting hash value. */ public byte[] engineDigest () { // pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512 int bufferNdx = (int)(count % BLOCK_LENGTH);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 9.3K bytes - Viewed (0)