Home
last modified time | relevance | path

Searched refs:hash_input (Results 1 – 25 of 83) sorted by relevance

1234

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/sidekiq_logging/
H A Djson_formatter_spec.rb12 subject { Gitlab::Json.parse(described_class.new.call('INFO', now, 'my program', hash_input)) }
30 expected_output = hash_input.stringify_keys.merge!(
49 hash_input[:jobstr] = 'job string'
67 hash_input['args'] = [1, 2, 'a' * half_limit, 'b' * half_limit, 3]
69 expected_args = hash_input['args'].take(3).map(&:to_s) + ['...']
77 hash_input['args'] = [1, 'foo', 'bar']
78 hash_input['class'] = 'WebHookWorker'
85 hash_input['args'] = [1, "test", 2, { 'test' => 1 }]
104 hash_input['retry'] = retry_in_job
/dports/mail/dovecot/dovecot-2.3.17/src/lib-fs/
H A Dfs-sis.c23 struct istream *hash_input; member
111 if (i_stream_read(file->hash_input) == -1) { in fs_sis_file_init()
117 i_stream_destroy(&file->hash_input); in fs_sis_file_init()
139 i_stream_unref(&file->hash_input); in fs_sis_file_close()
189 if (file->hash_input == NULL) { in fs_sis_replace_hash_file()
254 if (file->hash_input != NULL && in fs_sis_write()
256 i_stream_read_eof(file->hash_input)) { in fs_sis_write()
281 if (file->hash_input == NULL) { in fs_sis_write_stream()
287 file->hash_input); in fs_sis_write_stream()
304 if (file->hash_input != NULL && in fs_sis_write_stream_finish()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/sync/base/
H A Dhash_util.cc23 std::string hash_input; in GenerateSyncableBookmarkHash() local
24 serialized_type.AppendToString(&hash_input); in GenerateSyncableBookmarkHash()
25 hash_input.append(originator_cache_guid + originator_client_item_id); in GenerateSyncableBookmarkHash()
28 base::Base64Encode(base::SHA1HashString(hash_input), &encode_output); in GenerateSyncableBookmarkHash()
H A Dclient_tag_hash.cc23 std::string hash_input; in FromUnhashed() local
24 serialized_type.AppendToString(&hash_input); in FromUnhashed()
25 hash_input.append(client_tag); in FromUnhashed()
28 base::Base64Encode(base::SHA1HashString(hash_input), &encode_output); in FromUnhashed()
/dports/finance/chiapos/chiapos-1.0.3/src/
H A Dverifier.hpp50 std::vector<unsigned char> hash_input(32 + Util::ByteAlign(2 * k) / 8, 0); in GetQualityString() local
51 memcpy(hash_input.data(), challenge, 32); in GetQualityString()
52 proof.Slice(k * quality_index, k * (quality_index + 2)).ToBytes(hash_input.data() + 32); in GetQualityString()
54 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end()); in GetQualityString()
H A Dcli.cpp252 vector<unsigned char> hash_input = intToBytes(num, 4); in main() local
253 hash_input.insert(hash_input.end(), &id_bytes[0], &id_bytes[32]); in main()
256 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end()); in main()
H A Dprover_disk.hpp189 std::vector<unsigned char> hash_input(32 + Util::ByteAlign(2 * k) / 8, 0); in GetQualitiesForChallenge() local
190 memcpy(hash_input.data(), challenge, 32); in GetQualitiesForChallenge()
192 .ToBytes(hash_input.data() + 32); in GetQualitiesForChallenge()
194 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end()); in GetQualitiesForChallenge()
/dports/devel/py-hvac/hvac-0.11.2/hvac/api/secrets_engines/
H A Dtransit.py616 hash_input, argument
665 "input": hash_input,
684 hash_input, argument
727 "input": hash_input,
750 hash_input, argument
839 "input": hash_input,
866 hash_input, argument
959 "input": hash_input,
/dports/games/libtmcg/libTMCG-1.3.18/src/
H A DCallasDonnerhackeFinneyShawThayerRFC4880.cc11649 hash_input.insert(hash_input.end(), data.begin(), data.end()); in BinaryDocumentHashV3()
11712 hash_input.insert(hash_input.end(), data.begin(), data.end()); in BinaryDocumentHash()
11766 hash_input.insert(hash_input.end(), data.begin(), data.end()); in BinaryDocumentHashV5()
12072 hash_input.insert(hash_input.end(), key.begin(), key.end()); in CertificationHashV3()
12108 hash_input.insert(hash_input.end(), key.begin(), key.end()); in CertificationHash()
12172 hash_input.insert(hash_input.end(), key.begin(), key.end()); in CertificationHashV5()
12228 hash_input.insert(hash_input.end(), key.begin(), key.end()); in KeyHashV3()
12264 hash_input.insert(hash_input.end(), key.begin(), key.end()); in KeyHash()
12300 hash_input.insert(hash_input.end(), key.begin(), key.end()); in KeyHashV5()
12340 hash_input.insert(hash_input.end(), subkey.begin(), subkey.end()); in KeyHashV3()
[all …]
/dports/devel/py-aws-sam-translator/aws-sam-translator-1.39.0/samtranslator/model/
H A Dapigateway.py93 hash_input = [str(swagger)]
95 hash_input.append(str(openapi_version))
97 hash_input.append(json.dumps(domain))
105 hash_input.append(function_names.get(self.logical_id[:-10], ""))
106 data = self._X_HASH_DELIMITER.join(hash_input)
H A Dsam_resources.py361 def _make_gen_condition_name(self, name, hash_input): argument
363 hash_digest = logical_id_generator.LogicalIdGenerator("", hash_input).gen()
/dports/finance/chiapos/chiapos-1.0.3/tests/
H A Dtest.cpp507 vector<unsigned char> hash_input = intToBytes(i, 4); in TestProofOfSpace() local
509 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end()); in TestProofOfSpace()
711 vector<unsigned char> hash_input = intToBytes(i, 4); variable
713 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end());
739 vector<unsigned char> hash_input = intToBytes(i, 4); variable
741 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end());
767 vector<unsigned char> hash_input = intToBytes(i, 4); variable
769 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end());
/dports/finance/chiapos/chiapos-1.0.3/hellman_example/
H A Dcli.cpp179 vector<unsigned char> hash_input = intToBytes(num, 4); in main() local
181 picosha2::hash256(hash_input.begin(), hash_input.end(), hash.begin(), hash.end()); in main()
/dports/security/py-requests-credssp/requests-credssp-1.2.0/requests_credssp/
H A Dcredssp.py207 hash_input = b"CredSSP Client-To-Server Binding Hash\x00" + nonce + public_key
208 pub_value = hashlib.sha256(hash_input).digest()
245 hash_input = b"CredSSP Server-To-Client Binding Hash\x00" + nonce + public_key
246 actual = hashlib.sha256(hash_input).digest()
/dports/security/py-msoffcrypto-tool/msoffcrypto-tool-4.11.0/msoffcrypto/method/
H A Decma376_agile.py125 hash_input = _decrypt_aes_cbc(encryptedVerifierHashInput, key1, saltValue)
127 acutal_hash = hashCalc(hash_input)
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/source/detail/cryptography/
H A Dencryption_info.cpp146 auto hash_input = calculate_block(h_n, input_block_key, info.key_encryptor.verifier_hash_input); in calculate_agile_key() local
147 auto calculated_verifier = hash(info.key_encryptor.hash, hash_input); in calculate_agile_key()
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/tools/testing/compare_with_cpython/
H A D__main__.py132 hash_input = " -- ".join(cpython_cmd)
134 hash_input = hash_input.encode("utf8")
136 command_hash = hashlib.md5(hash_input)
/dports/games/py-mnemosyne/Mnemosyne-2.7.3/mnemosyne/libmnemosyne/filters/
H A Dlatex.py43 hash_input = latex_command.rstrip() + \
48 return md5(hash_input.encode("utf-8")).hexdigest() + ".png"
/dports/devel/ode/ode-0.13/ode/src/
H A Dcollision_trimesh_trimesh_new.cpp173 unsigned int hash_input = hash_v[0]; in UpdateContactKey() local
175 hash_input ^= hash_v[i]; in UpdateContactKey()
177 hash = (( hash << 4 ) + (hash_input >> 24)) ^ ( hash >> 28 ); in UpdateContactKey()
178 hash = (( hash << 4 ) + ((hash_input >> 16) & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
179 hash = (( hash << 4 ) + ((hash_input >> 8) & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
180 hash = (( hash << 4 ) + (hash_input & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
/dports/games/alienarena/alienarena-7.66/source/unix/odesrc/
H A Dcollision_trimesh_trimesh_new.cpp172 unsigned int hash_input = hash_v[0]; in UpdateContactKey() local
174 hash_input ^= hash_v[i]; in UpdateContactKey()
176 hash = (( hash << 4 ) + (hash_input >> 24)) ^ ( hash >> 28 ); in UpdateContactKey()
177 hash = (( hash << 4 ) + ((hash_input >> 16) & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
178 hash = (( hash << 4 ) + ((hash_input >> 8) & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
179 hash = (( hash << 4 ) + (hash_input & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
/dports/games/alienarena-data/alienarena-7.66/source/unix/odesrc/
H A Dcollision_trimesh_trimesh_new.cpp172 unsigned int hash_input = hash_v[0]; in UpdateContactKey() local
174 hash_input ^= hash_v[i]; in UpdateContactKey()
176 hash = (( hash << 4 ) + (hash_input >> 24)) ^ ( hash >> 28 ); in UpdateContactKey()
177 hash = (( hash << 4 ) + ((hash_input >> 16) & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
178 hash = (( hash << 4 ) + ((hash_input >> 8) & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
179 hash = (( hash << 4 ) + (hash_input & 0xFF)) ^ ( hash >> 28 ); in UpdateContactKey()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/smb_client/
H A Dsmbfs_share.cc316 std::string hash_input = GenerateStableMountIdInput(); in GenerateStableMountId() local
318 crypto::SHA256HashString(hash_input).c_str(), crypto::kSHA256Length)); in GenerateStableMountId()
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Dmain.cpp248 … const unsigned char *hash_input = reinterpret_cast<const unsigned char *>( params[0] ); in parse_commandline() local
249 result.seed = djb2_hash( hash_input ); in parse_commandline()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Dmain.cpp248 … const unsigned char *hash_input = reinterpret_cast<const unsigned char *>( params[0] ); in parse_commandline() local
249 result.seed = djb2_hash( hash_input ); in parse_commandline()
/dports/security/py-pyspnego/pyspnego-0.3.1/src/spnego/
H A D_credssp.py106 hash_input = (b'CredSSP %s Binding Hash\x00' % direction) + nonce + pub_key
107 key_auth = hashlib.sha256(hash_input).digest()

1234