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

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 329 byte[] hashBuf = new byte[mgf1Hash.getDigestSize()];
335 while (counter < (length / hashBuf.length))
341 mgf1Hash.doFinal(hashBuf, 0);
343 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, hashBuf.length);
348 if ((counter * hashBuf.length) < length)
354 mgf1Hash.doFinal(hashBuf, 0);
356 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, mask.length - (counter * hashBuf.length))
    [all...]
  /external/lzma/C/
LzFindMt.h 71 UInt32 *hashBuf;
LzFindMt.c 196 UInt32 *heads = mt->hashBuf + ((numProcessedBlocks++) & kMtHashNumBlocksMask) * kMtHashBlockSize;
222 p->hashBufPosLimit += p->hashBuf[p->hashBufPos++];
223 p->hashNumAvail = p->hashBuf[p->hashBufPos++];
348 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++],
361 distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos) , size, &posRes);
433 p->hashBuf = 0;
440 alloc->Free(alloc, p->hashBuf);
441 p->hashBuf = 0;
472 if (p->hashBuf == 0)
474 p->hashBuf = (UInt32 *)alloc->Alloc(alloc, (kHashBufferSize + kBtBufferSize) * sizeof(UInt32));
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ecc.c 230 PRUint8 * hashBuf;
244 hashBuf = buf;
246 hashBuf = PORT_Alloc(bufLen);
247 if (!hashBuf) {
252 memcpy(hashBuf, client_rand, SSL3_RANDOM_LENGTH);
253 pBuf = hashBuf + SSL3_RANDOM_LENGTH;
262 PORT_Assert((unsigned int)(pBuf - hashBuf) == bufLen);
264 rv = ssl3_ComputeCommonKeyHash(hashAlg, hashBuf, bufLen, hashes,
267 PRINT_BUF(95, (NULL, "ECDHkey hash: ", hashBuf, bufLen));
273 if (hashBuf != buf
    [all...]
ssl3con.c     [all...]
sslimpl.h     [all...]

Completed in 900 milliseconds