Home
last modified time | relevance | path

Searched refs:hashSize (Results 1 – 12 of 12) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DX0017_StrongEncryptionHeader.java257 private int hashSize; field in X0017_StrongEncryptionHeader
311 this.hashSize = ZipShort.getValue(data, offset + 14); in parseCentralDirectoryFormat()
314 for (int j = 0; j < this.hashSize; j++) { in parseCentralDirectoryFormat()
354 this.hashSize = ZipShort.getValue(data, offset + ivSize + 22 + erdSize); in parseFileFormat()
356 this.recipientKeyHash = new byte[this.hashSize]; in parseFileFormat()
357 this.keyBlob = new byte[resize - this.hashSize]; in parseFileFormat()
358 … System.arraycopy(data, offset + ivSize + 24 + erdSize, this.recipientKeyHash, 0, this.hashSize); in parseFileFormat()
359 …raycopy(data, offset + ivSize + 24 + erdSize + this.hashSize, this.keyBlob, 0, resize - this.hashS… in parseFileFormat()
/external/boringssl/src/ssl/test/runner/
Dhkdf.go34 hashSize := hash().Size()
35 if length > 255*hashSize {
38 if len(prk) < hashSize {
53 copy(okm[(int(counter)-1)*hashSize:], block)
54 length -= hashSize
/external/epid-sdk/ext/ipp/sources/ippcp/
Dpcphashgettag.c86 int hashSize = cpHashAlgAttr[HASH_ALG_ID(pState)].hashSize; variable
87 if(tagLen<1||hashSize<tagLen) IPP_ERROR_RET(ippStsLengthErr);
Dpcphashfinal.c84 int hashSize = cpHashAlgAttr[algID].hashSize; variable
86 cpComputeDigest(pMD, hashSize, pState);
Dpcpmgf2ca_rmf.c89 int hashSize = pMethod->hashLen; variable
109 if((outLen + hashSize) <= maskLen) {
111 outLen += hashSize;
Dpcpmgf1ca_rmf.c88 int hashSize = pMethod->hashLen; variable
108 if((outLen + hashSize) <= maskLen) {
110 outLen += hashSize;
Dpcpshsmgfca.c101 int hashSize = cpHashSize(hashAlg); variable
122 if((outLen + hashSize) <= maskLen) {
124 outLen += hashSize;
Dpcphashmessage.c101 int hashSize = pAttr->hashSize; /* hash size */ variable
164 CopyBlock(hash, pMD, hashSize);
Dpcphash.h140 int hashSize; /* attr: length (bytes) of hash */ member
214 { return cpHashAlgAttr[algID].hashSize; } in cpHashSize()
Dpcpgfpsetelemhash.c114 int hashLen = cpHashAlgAttr[hashID].hashSize;
Dpcpgfpecsetpointhash.c130 int hashLen = cpHashAlgAttr[hashID].hashSize;
/external/lzma/CPP/7zip/UI/Common/
DBench.cpp1472 UInt32 hashSize = hf->GetDigestSize(); in CrcBig() local
1473 if (hashSize > sizeof(hash)) in CrcBig()
1476 for (UInt32 j = 0; j < hashSize; j += 4) in CrcBig()