Home
last modified time | relevance | path

Searched refs:truncatedHash (Results 1 – 11 of 11) sorted by relevance

/dports/security/py-msoffcrypto-tool/msoffcrypto-tool-4.11.0/msoffcrypto/method/
H A Drc4.py26 truncatedHash = h0[:5]
27 intermediateBuffer = (truncatedHash + salt) * 16
29 truncatedHash = h1[:5]
31 hfinal = md5(truncatedHash + blockbytes).digest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/
H A DEventValidationStore.cs120 byte[] truncatedHash = new byte[HASH_SIZE_IN_BYTES]; in Hash()
121 Buffer.BlockCopy(fullHash, 0, truncatedHash, 0, HASH_SIZE_IN_BYTES); in Hash()
122 return truncatedHash; in Hash()
/dports/www/joomla3/joomla3-3.9.24/libraries/fof/encrypt/
H A Dtotp.php123 $truncatedHash = $this->hashToInt($hash, $offset) & 0x7FFFFFFF;
124 …$pinValue = str_pad($truncatedHash % $this->_pinModulo, $this->_passCodeLength, "0", STR_PAD_LEFT);
/dports/security/pam_google_authenticator/google-authenticator-libpam-1.09/src/
H A Dgoogle-authenticator.c83 unsigned int truncatedHash = 0; in generateCode() local
85 truncatedHash <<= 8; in generateCode()
86 truncatedHash |= hash[offset + i]; in generateCode()
90 truncatedHash &= 0x7FFFFFFF; in generateCode()
91 truncatedHash %= VERIFICATION_CODE_MODULUS; in generateCode()
93 return truncatedHash; in generateCode()
H A Dpam_google_authenticator.c1310 unsigned int truncatedHash = 0; in compute_code() local
1312 truncatedHash <<= 8; in compute_code()
1313 truncatedHash |= hash[offset + i]; in compute_code()
1316 truncatedHash &= 0x7FFFFFFF; in compute_code()
1317 truncatedHash %= 1000000; in compute_code()
1318 return truncatedHash; in compute_code()
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/components/utils/
H A DSampling.jsm79 async truncatedHash(data) {
99 const inputHash = await Sampling.truncatedHash(input);
121 const inputHash = await Sampling.truncatedHash(input);
165 const inputHash = await Sampling.truncatedHash(input);
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/normandy/lib/
H A DSampling.jsm74 async truncatedHash(data) {
94 const inputHash = await Sampling.truncatedHash(input);
116 const inputHash = await Sampling.truncatedHash(input);
158 const inputHash = await Sampling.truncatedHash(input);
/dports/www/firefox/firefox-99.0/toolkit/components/utils/
H A DSampling.jsm79 async truncatedHash(data) {
99 const inputHash = await Sampling.truncatedHash(input);
121 const inputHash = await Sampling.truncatedHash(input);
165 const inputHash = await Sampling.truncatedHash(input);
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/utils/
H A DSampling.jsm79 async truncatedHash(data) {
99 const inputHash = await Sampling.truncatedHash(input);
121 const inputHash = await Sampling.truncatedHash(input);
165 const inputHash = await Sampling.truncatedHash(input);
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/utils/
H A DSampling.jsm79 async truncatedHash(data) {
99 const inputHash = await Sampling.truncatedHash(input);
121 const inputHash = await Sampling.truncatedHash(input);
165 const inputHash = await Sampling.truncatedHash(input);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ukey2/src/src/main/java/com/google/security/cryptauth/lib/securemessage/
H A DCryptoOps.java309 byte[] truncatedHash = new byte[DIGEST_LENGTH]; in digest()
310 System.arraycopy(sha256.digest(data), 0, truncatedHash, 0, DIGEST_LENGTH); in digest() local
311 return truncatedHash; in digest()