Home
last modified time | relevance | path

Searched refs:hashBuf (Results 101 – 125 of 254) sorted by relevance

1234567891011

/dports/mail/thunderbird/thunderbird-91.8.0/security/nss/lib/freebl/
H A Dshvfy.c345 unsigned char hashBuf[HASH_LENGTH_MAX]; in blapi_SHVerifyFile() local
348 hash.data = hashBuf; in blapi_SHVerifyFile()
349 hash.len = sizeof(hashBuf); in blapi_SHVerifyFile()
499 PORT_Memset(hashBuf, 0, sizeof hashBuf); in blapi_SHVerifyFile()
/dports/archivers/7-zip/7-zip-21.07/C/
H A DLzFindMt.c493 UInt32 *heads = mt->hashBuf + GET_HASH_BLOCK_OFFSET(blockIndex++); in HashThreadFunc()
608 const UInt32 *h = p->hashBuf + k; in BtGetMatches()
672 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++], in BtGetMatches()
689 p->numHashBytes - 1, p->hashBuf + p->hashBufPos, in BtGetMatches()
690 d + limit, p->hashBuf + p->hashBufPos + size, in BtGetMatches()
791 p->hashBuf = NULL; in MatchFinderMt_Construct()
798 ISzAlloc_Free(alloc, p->hashBuf); in MatchFinderMt_FreeMem()
799 p->hashBuf = NULL; in MatchFinderMt_FreeMem()
855 if (!p->hashBuf) in MatchFinderMt_Create()
858 if (!p->hashBuf) in MatchFinderMt_Create()
[all …]
/dports/security/hashcat/hashcat-6.2.5/deps/LZMA-SDK/C/
H A DLzFindMt.c426 p->hashBufPosLimit += p->hashBuf[p->hashBufPos++]; in MatchFinderMt_GetNextBlock_Hash()
427 p->hashNumAvail = p->hashBuf[p->hashBufPos++]; in MatchFinderMt_GetNextBlock_Hash()
590 UInt32 num = (UInt32)(GetMatchesSpec1(lenLimit, pos - p->hashBuf[p->hashBufPos++], in BtGetMatches()
603 d + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, in BtGetMatches()
678 p->hashBuf = NULL; in MatchFinderMt_Construct()
685 ISzAlloc_Free(alloc, p->hashBuf); in MatchFinderMt_FreeMem()
686 p->hashBuf = NULL; in MatchFinderMt_FreeMem()
726 if (!p->hashBuf) in MatchFinderMt_Create()
728 … p->hashBuf = (UInt32 *)ISzAlloc_Alloc(alloc, (kHashBufferSize + kBtBufferSize) * sizeof(UInt32)); in MatchFinderMt_Create()
729 if (!p->hashBuf) in MatchFinderMt_Create()
[all …]
H A DLzFindMt.h63 UInt32 *hashBuf; member
/dports/security/fizz/fizz-2021.12.27.00/fizz/crypto/
H A DKeyDerivation.cpp52 auto hashBuf = folly::IOBuf::copyBuffer(messageHash); in deriveSecret() local
53 auto out = expandLabel(secret, label, std::move(hashBuf), hashLength_); in deriveSecret()
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/crypto/signers/
H A DISO9796d2PSSSigner.java649 byte[] hashBuf = new byte[hLen]; in maskGeneratorFunction1()
661 digest.doFinal(hashBuf, 0); in maskGeneratorFunction1()
663 System.arraycopy(hashBuf, 0, mask, counter * hLen, hLen); in maskGeneratorFunction1()
674 digest.doFinal(hashBuf, 0); in maskGeneratorFunction1()
676 System.arraycopy(hashBuf, 0, mask, counter * hLen, mask.length - (counter * hLen)); in maskGeneratorFunction1()
/dports/security/apache-xml-security-c/xml-security-c-2.0.4/xsec/enc/OpenSSL/
H A DOpenSSLCryptoKeyDSA.cpp269 bool OpenSSLCryptoKeyDSA::verifyBase64Signature(unsigned char * hashBuf, in verifyBase64Signature() argument
361 int err = DSA_do_verify(hashBuf, hashLen, dsa_sig, mp_dsaKey); in verifyBase64Signature()
380 unsigned int OpenSSLCryptoKeyDSA::signBase64Signature(unsigned char * hashBuf, in signBase64Signature() argument
399 DSA_SIG* dsa_sig = DSA_do_sign(hashBuf, hashLen, mp_dsaKey); in signBase64Signature()
H A DOpenSSLCryptoKeyRSA.cpp439 const unsigned char* hashBuf, in verifySHA1PKCS1Base64Signature() argument
549 if (hashBuf[t-oidLen] != decryptBuf[t]) { in verifySHA1PKCS1Base64Signature()
564 unsigned char* hashBuf, in signSHA1PKCS1Base64Signature() argument
609 memcpy(&preEncryptBuf[oidLen], hashBuf, hashLen); in signSHA1PKCS1Base64Signature()
/dports/net-im/jabberd/jabberd-2.7.0/util/
H A Djid.c493 char hashBuf[41]; in jid_random_part() local
505 shahash_r(randomBuf, hashBuf); in jid_random_part()
510 jid_reset_components(jid, hashBuf, jid->domain, jid->resource); in jid_random_part()
514 jid_reset_components(jid, jid->node, hashBuf, jid->resource); in jid_random_part()
518 jid_reset_components(jid, jid->node, jid->domain, hashBuf); in jid_random_part()
/dports/security/apache-xml-security-c/xml-security-c-2.0.4/xsec/enc/NSS/
H A DNSSCryptoKeyDSA.cpp272 bool NSSCryptoKeyDSA::verifyBase64Signature(unsigned char * hashBuf, in verifyBase64Signature() argument
313 data.data = (unsigned char *)hashBuf; in verifyBase64Signature()
327 unsigned int NSSCryptoKeyDSA::signBase64Signature(unsigned char * hashBuf, in signBase64Signature() argument
354 data.data = hashBuf; in signBase64Signature()
H A DNSSCryptoKeyRSA.cpp204 bool NSSCryptoKeyRSA::verifySHA1PKCS1Base64Signature(const unsigned char * hashBuf, in verifySHA1PKCS1Base64Signature() argument
277 di = SGN_CreateDigestInfo(hashalg, (unsigned char * )hashBuf, hashLen); in verifySHA1PKCS1Base64Signature()
306 unsigned int NSSCryptoKeyRSA::signSHA1PKCS1Base64Signature(unsigned char * hashBuf, in signSHA1PKCS1Base64Signature() argument
362 di = SGN_CreateDigestInfo(hashalg, hashBuf, hashLen); in signSHA1PKCS1Base64Signature()
/dports/security/apache-xml-security-c/xml-security-c-2.0.4/xsec/dsig/
H A DDSIGSignature.hpp371 unsigned int calculateSignedInfoAndReferenceHash(unsigned char* hashBuf,
387 unsigned int calculateSignedInfoHash(unsigned char* hashBuf,
H A DDSIGSignature.cpp719 unsigned int DSIGSignature::calculateSignedInfoHash(unsigned char* hashBuf, in calculateSignedInfoHash() argument
749 return chain->getLastTxfm()->readBytes((XMLByte*) hashBuf, hashBufLen); in calculateSignedInfoHash()
752 unsigned int DSIGSignature::calculateSignedInfoAndReferenceHash(unsigned char* hashBuf, in calculateSignedInfoAndReferenceHash() argument
758 return calculateSignedInfoHash(hashBuf,hashBufLen); in calculateSignedInfoAndReferenceHash()
/dports/security/apache-xml-security-c/xml-security-c-2.0.4/xsec/enc/WinCAPI/
H A DWinCAPICryptoKeyDSA.cpp291 bool WinCAPICryptoKeyDSA::verifyBase64Signature(unsigned char * hashBuf, in verifyBase64Signature() argument
373 hashBuf, in verifyBase64Signature()
425 unsigned int WinCAPICryptoKeyDSA::signBase64Signature(unsigned char * hashBuf, in signBase64Signature() argument
456 hashBuf, in signBase64Signature()
H A DWinCAPICryptoKeyRSA.cpp235 bool WinCAPICryptoKeyRSA::verifySHA1PKCS1Base64Signature(const unsigned char * hashBuf, in verifySHA1PKCS1Base64Signature() argument
311 (unsigned char *) hashBuf, in verifySHA1PKCS1Base64Signature()
354 unsigned int WinCAPICryptoKeyRSA::signSHA1PKCS1Base64Signature(unsigned char * hashBuf, in signSHA1PKCS1Base64Signature() argument
399 hashBuf, in signSHA1PKCS1Base64Signature()
/dports/lang/spidermonkey60/firefox-60.9.0/security/nss/lib/freebl/
H A Dshvfy.c344 unsigned char hashBuf[HASH_LENGTH_MAX]; in blapi_SHVerifyFile() local
347 hash.data = hashBuf; in blapi_SHVerifyFile()
348 hash.len = sizeof(hashBuf); in blapi_SHVerifyFile()
/dports/www/firefox-legacy/firefox-52.8.0esr/security/nss/lib/freebl/
H A Dshvfy.c337 unsigned char hashBuf[HASH_LENGTH_MAX]; in blapi_SHVerifyFile() local
340 hash.data = hashBuf; in blapi_SHVerifyFile()
341 hash.len = sizeof(hashBuf); in blapi_SHVerifyFile()
/dports/lang/spidermonkey78/firefox-78.9.0/security/nss/lib/freebl/
H A Dshvfy.c344 unsigned char hashBuf[HASH_LENGTH_MAX]; in blapi_SHVerifyFile() local
347 hash.data = hashBuf; in blapi_SHVerifyFile()
348 hash.len = sizeof(hashBuf); in blapi_SHVerifyFile()
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/libchdr/deps/lzma-16.04/C/
H A DLzFindMt.h69 UInt32 *hashBuf; member
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Dependencies/lzmasdk-18.05/C/
H A DLzFindMt.h69 UInt32 *hashBuf; member
/dports/games/libretro-pcsx_rearmed/pcsx_rearmed-c2d67cd/deps/lzma-16.04/C/
H A DLzFindMt.h69 UInt32 *hashBuf; member
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/dep/libs/lib7z/
H A DLzFindMt.h69 UInt32 *hashBuf; member
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzFindMt.h69 UInt32 *hashBuf; member
/dports/games/kodi-addon-game.libretro.pcsx-rearmed/game.libretro.pcsx-rearmed-22.0.0.19-Matrix/depends/common/pcsx-rearmed/deps/lzma-16.04/C/
H A DLzFindMt.h69 UInt32 *hashBuf; member
/dports/www/firefox-esr/firefox-91.8.0/other-licenses/7zstub/src/C/
H A DLzFindMt.h69 UInt32 *hashBuf; member

1234567891011