Home
last modified time | relevance | path

Searched refs:m_hash1 (Results 1 – 20 of 20) sorted by relevance

/dports/biology/abyss/abyss-2.3.1/BloomDBG/
H A DRollingHash.h48 m_k(k), m_hash1(0), m_rcHash1(0) {} in RollingHash()
72 NTC64(kmer.c_str(), m_k, m_hash1, m_rcHash1); in reset()
75 m_hash = canonicalHash(m_hash1, m_rcHash1); in reset()
91 m_hash = canonicalHash(m_hash1, m_rcHash1); in rollRight()
113 m_hash = canonicalHash(m_hash1, m_rcHash1); in rollLeft()
181 NTC64('A', base, m_k, m_hash1, m_rcHash1); in setLastBase()
184 NTC64(kmer[0], 'A', m_k, m_hash1, m_rcHash1); in setLastBase()
186 NTC64L('A', base, m_k, m_hash1, m_rcHash1); in setLastBase()
188 m_hash = canonicalHash(m_hash1, m_rcHash1); in setLastBase()
204 std::swap(m_hash1, m_rcHash1); in reverseComplement()
[all …]
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/hash/comb4p/
H A Dcomb4p.cpp37 m_hash1(h1), m_hash2(h2) in Comb4P()
39 if(m_hash1->name() == m_hash2->name()) in Comb4P()
53 return m_hash1->hash_block_size(); in hash_block_size()
64 m_hash1->clear(); in clear()
68 m_hash1->update(0); in clear()
75 copy->m_hash1 = m_hash1->copy_state(); in copy_state()
83 m_hash1->update(input, length); in add_data()
89 secure_vector<uint8_t> h1 = m_hash1->final(); in final_result()
96 comb4p_round(h2, h1, 1, *m_hash1, *m_hash2); in final_result()
99 comb4p_round(h1, h2, 2, *m_hash1, *m_hash2); in final_result()
[all …]
H A Dcomb4p.h34 return m_hash1->output_length() + m_hash2->output_length(); in output_length()
39 return new Comb4P(m_hash1->clone(), m_hash2->clone()); in clone()
46 return "Comb4P(" + m_hash1->name() + "," + m_hash2->name() + ")"; in name()
56 std::unique_ptr<HashFunction> m_hash1, m_hash2; variable
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/hash/comb4p/
H A Dcomb4p.cpp37 m_hash1(h1), m_hash2(h2) in Comb4P()
39 if(m_hash1->name() == m_hash2->name()) in Comb4P()
53 return m_hash1->hash_block_size(); in hash_block_size()
64 m_hash1->clear(); in clear()
68 m_hash1->update(0); in clear()
75 copy->m_hash1 = m_hash1->copy_state(); in copy_state()
83 m_hash1->update(input, length); in add_data()
89 secure_vector<uint8_t> h1 = m_hash1->final(); in final_result()
96 comb4p_round(h2, h1, 1, *m_hash1, *m_hash2); in final_result()
99 comb4p_round(h1, h2, 2, *m_hash1, *m_hash2); in final_result()
[all …]
H A Dcomb4p.h34 return m_hash1->output_length() + m_hash2->output_length(); in output_length()
39 return new Comb4P(m_hash1->clone(), m_hash2->clone()); in clone()
46 return "Comb4P(" + m_hash1->name() + "," + m_hash2->name() + ")"; in name()
56 std::unique_ptr<HashFunction> m_hash1, m_hash2; variable
/dports/security/botan2/Botan-2.18.2/src/lib/hash/comb4p/
H A Dcomb4p.cpp37 m_hash1(h1), m_hash2(h2) in Comb4P()
39 if(m_hash1->name() == m_hash2->name()) in Comb4P()
53 return m_hash1->hash_block_size(); in hash_block_size()
64 m_hash1->clear(); in clear()
68 m_hash1->update(0); in clear()
75 copy->m_hash1 = m_hash1->copy_state(); in copy_state()
83 m_hash1->update(input, length); in add_data()
89 secure_vector<uint8_t> h1 = m_hash1->final(); in final_result()
96 comb4p_round(h2, h1, 1, *m_hash1, *m_hash2); in final_result()
99 comb4p_round(h1, h2, 2, *m_hash1, *m_hash2); in final_result()
[all …]
H A Dcomb4p.h34 return m_hash1->output_length() + m_hash2->output_length(); in output_length()
39 return new Comb4P(m_hash1->clone(), m_hash2->clone()); in clone()
46 return "Comb4P(" + m_hash1->name() + "," + m_hash2->name() + ")"; in name()
56 std::unique_ptr<HashFunction> m_hash1, m_hash2; variable
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/cryptography/
H A Dhmac.cs42 internal HashAlgorithm m_hash1; field in System.Security.Cryptography.HMAC
81 KeyValue = m_hash1.ComputeHash(key); in InitializeKey()
110 m_hash1 = HashAlgorithm.Create(m_hashName);
133 m_hash1.Initialize(); in Initialize()
140 m_hash1.TransformBlock(m_inner, 0, m_inner.Length, m_inner, 0); in HashCore()
143 m_hash1.TransformBlock(rgb, ib, cb, rgb, ib); in HashCore()
148 m_hash1.TransformBlock(m_inner, 0, m_inner.Length, m_inner, 0); in HashFinal()
152 m_hash1.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); in HashFinal()
153 byte[] hashValue1 = m_hash1.HashValue; in HashFinal()
169 if (m_hash1 != null) in Dispose()
[all …]
H A Dhmacsha256.cs26m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA256Managed(), () => HashAlgorithm.Create("… in HMACSHA256()
29 m_hash1 = new SHA256Managed(); in HMACSHA256()
H A Dhmacsha1.cs29 m_hash1 = new SHA1Managed(); in HMACSHA1()
33 m_hash1 = new SHA1CryptoServiceProvider(); in HMACSHA1()
H A Dhmacsha512.cs29 m_hash1 = new SHA512Managed(); in HMACSHA512()
32m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA512Managed(), () => HashAlgorithm.Create("… in HMACSHA512()
H A Dhmacsha384.cs29 m_hash1 = new SHA384Managed(); in HMACSHA384()
32m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA384Managed(), () => HashAlgorithm.Create("… in HMACSHA384()
H A Dhmacmd5.cs24 m_hash1 = new MD5CryptoServiceProvider(); in HMACMD5()
H A Dhmacripemd160.cs24 m_hash1 = new RIPEMD160Managed(); in HMACRIPEMD160()
/dports/math/ogdf/OGDF/include/ogdf/basic/
H A Dtuples.h107 : m_hash1(hash1), m_hash2(hash2) { } in HashFuncTuple()
110 return 23*m_hash1.hash(key.x1()) + 443*m_hash2.hash(key.x2()); in hash()
114 Hash1_ m_hash1;
/dports/games/pentobi/pentobi-19.1/libboardgame_mcts/
H A DLastGoodReply.h63 size_t m_hash1[Move::range];
78 for (auto& hash : m_hash1) in LastGoodReply()
88 size_t hash = (m_hash1[last.to_int()] ^ m_hash2[second_last.to_int()]); in get_index()
/dports/emulators/mess/mame-mame0226/src/devices/cpu/powerpc/
H A Dppc.h359 uint32_t m_hash1; variable
H A Dppccom.cpp644 m_hash1 = 0; in device_start()
/dports/emulators/mame/mame-mame0226/src/devices/cpu/powerpc/
H A Dppc.h359 uint32_t m_hash1; variable
H A Dppccom.cpp644 m_hash1 = 0; in device_start()