Home
last modified time | relevance | path

Searched refs:MD5_BLOCKSIZE (Results 1 - 1 of 1) sorted by relevance

/third_party/python/Modules/
H A Dmd5module.c43 #define MD5_BLOCKSIZE 64 macro
51 unsigned char buf[MD5_BLOCKSIZE];
247 if (md5->curlen == 0 && inlen >= MD5_BLOCKSIZE) { in md5_process()
249 md5->length += MD5_BLOCKSIZE * 8; in md5_process()
250 in += MD5_BLOCKSIZE; in md5_process()
251 inlen -= MD5_BLOCKSIZE; in md5_process()
253 n = Py_MIN(inlen, (Py_ssize_t)(MD5_BLOCKSIZE - md5->curlen)); in md5_process()
258 if (md5->curlen == MD5_BLOCKSIZE) { in md5_process()
260 md5->length += 8*MD5_BLOCKSIZE; in md5_process()
458 return PyLong_FromLong(MD5_BLOCKSIZE); in MD5_get_block_size()
[all...]

Completed in 2 milliseconds