HomeSort by relevance Sort by last modified time
    Searched refs:SHA512_BLOCKSIZE (Results 1 - 2 of 2) sorted by null

  /external/e2fsprogs/lib/ext2fs/
sha512.c 205 #define SHA512_BLOCKSIZE 128
213 if (md->sha512.curlen == 0 && inlen >= SHA512_BLOCKSIZE) {
215 md->sha512.length += SHA512_BLOCKSIZE * 8;
216 in += SHA512_BLOCKSIZE;
217 inlen -= SHA512_BLOCKSIZE;
219 n = MIN(inlen, (SHA512_BLOCKSIZE - md->sha512.curlen));
225 if (md->sha512.curlen == SHA512_BLOCKSIZE) {
227 md->sha512.length += SHA512_BLOCKSIZE * 8;
  /external/f2fs-tools/tools/
sha512.c 225 #define SHA512_BLOCKSIZE 128
233 if (md->sha512.curlen == 0 && inlen >= SHA512_BLOCKSIZE) {
235 md->sha512.length += SHA512_BLOCKSIZE * 8;
236 in += SHA512_BLOCKSIZE;
237 inlen -= SHA512_BLOCKSIZE;
239 n = MIN(inlen, (SHA512_BLOCKSIZE - md->sha512.curlen));
245 if (md->sha512.curlen == SHA512_BLOCKSIZE) {
247 md->sha512.length += SHA512_BLOCKSIZE * 8;

Completed in 3175 milliseconds