Searched refs:hashSize (Results 1 – 12 of 12) sorted by relevance
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | X0017_StrongEncryptionHeader.java | 257 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/ |
D | hkdf.go | 34 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/ |
D | pcphashgettag.c | 86 int hashSize = cpHashAlgAttr[HASH_ALG_ID(pState)].hashSize; variable 87 if(tagLen<1||hashSize<tagLen) IPP_ERROR_RET(ippStsLengthErr);
|
D | pcphashfinal.c | 84 int hashSize = cpHashAlgAttr[algID].hashSize; variable 86 cpComputeDigest(pMD, hashSize, pState);
|
D | pcpmgf2ca_rmf.c | 89 int hashSize = pMethod->hashLen; variable 109 if((outLen + hashSize) <= maskLen) { 111 outLen += hashSize;
|
D | pcpmgf1ca_rmf.c | 88 int hashSize = pMethod->hashLen; variable 108 if((outLen + hashSize) <= maskLen) { 110 outLen += hashSize;
|
D | pcpshsmgfca.c | 101 int hashSize = cpHashSize(hashAlg); variable 122 if((outLen + hashSize) <= maskLen) { 124 outLen += hashSize;
|
D | pcphashmessage.c | 101 int hashSize = pAttr->hashSize; /* hash size */ variable 164 CopyBlock(hash, pMD, hashSize);
|
D | pcphash.h | 140 int hashSize; /* attr: length (bytes) of hash */ member 214 { return cpHashAlgAttr[algID].hashSize; } in cpHashSize()
|
D | pcpgfpsetelemhash.c | 114 int hashLen = cpHashAlgAttr[hashID].hashSize;
|
D | pcpgfpecsetpointhash.c | 130 int hashLen = cpHashAlgAttr[hashID].hashSize;
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.cpp | 1472 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()
|