Home
last modified time | relevance | path

Searched refs:SHAKE_128 (Results 1 – 16 of 16) sorted by relevance

/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/hash/shake/
H A Dshake.cpp14 SHAKE_128::SHAKE_128(size_t output_bits) : in SHAKE_128() function in Botan::SHAKE_128
22 std::string SHAKE_128::name() const in name()
27 HashFunction* SHAKE_128::clone() const in clone()
29 return new SHAKE_128(m_output_bits); in clone()
32 std::unique_ptr<HashFunction> SHAKE_128::copy_state() const in copy_state()
34 return std::unique_ptr<HashFunction>(new SHAKE_128(*this)); in copy_state()
37 void SHAKE_128::clear() in clear()
43 void SHAKE_128::add_data(const uint8_t input[], size_t length) in add_data()
48 void SHAKE_128::final_result(uint8_t output[]) in final_result()
H A Dshake.h22 class BOTAN_PUBLIC_API(2,0) SHAKE_128 final : public HashFunction
30 explicit SHAKE_128(size_t output_bits);
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/hash/shake/
H A Dshake.cpp14 SHAKE_128::SHAKE_128(size_t output_bits) : in SHAKE_128() function in Botan::SHAKE_128
22 std::string SHAKE_128::name() const in name()
27 HashFunction* SHAKE_128::clone() const in clone()
29 return new SHAKE_128(m_output_bits); in clone()
32 std::unique_ptr<HashFunction> SHAKE_128::copy_state() const in copy_state()
34 return std::unique_ptr<HashFunction>(new SHAKE_128(*this)); in copy_state()
37 void SHAKE_128::clear() in clear()
43 void SHAKE_128::add_data(const uint8_t input[], size_t length) in add_data()
48 void SHAKE_128::final_result(uint8_t output[]) in final_result()
H A Dshake.h22 class BOTAN_PUBLIC_API(2,0) SHAKE_128 final : public HashFunction
30 explicit SHAKE_128(size_t output_bits);
/dports/security/botan2/Botan-2.18.2/src/lib/hash/shake/
H A Dshake.cpp14 SHAKE_128::SHAKE_128(size_t output_bits) : in SHAKE_128() function in Botan::SHAKE_128
22 std::string SHAKE_128::name() const in name()
27 HashFunction* SHAKE_128::clone() const in clone()
29 return new SHAKE_128(m_output_bits); in clone()
32 std::unique_ptr<HashFunction> SHAKE_128::copy_state() const in copy_state()
34 return std::unique_ptr<HashFunction>(new SHAKE_128(*this)); in copy_state()
37 void SHAKE_128::clear() in clear()
43 void SHAKE_128::add_data(const uint8_t input[], size_t length) in add_data()
48 void SHAKE_128::final_result(uint8_t output[]) in final_result()
H A Dshake.h22 class BOTAN_PUBLIC_API(2,0) SHAKE_128 final : public HashFunction
30 explicit SHAKE_128(size_t output_bits);
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/multiformats/go-multihash/
H A Dmultihash.go55 SHAKE_128 = 0x18 const
113 "shake-128": SHAKE_128,
137 SHAKE_128: "shake-128",
161 SHAKE_128: 32,
H A Dsum_test.go55 {SHAKE_128, 32, "foo", "1820f84e95cb5fbd2038863ab27d3cdeac295ad2d4ab96ad1f4b070c0bf36078ef08"},
H A Dsum.go204 RegisterHashFunc(SHAKE_128, sumSHAKE128)
/dports/security/hash/Hash-3c8d607b3d470d8a41ac3262ee310e850fab61cd/src/
H A Dcshake.h250SHAKE_128, Hash::SHA3_NS::Keccak<(1344 / 8), 0x04>, (1344 / 8)> { explicit CSHAKE_128(const int l,…
H A Dsha3.h566 …struct SHAKE_128 : Hash::SHA3_NS::Keccak<(1344 / 8), 0x1F> { explicit SHAKE_128(const int d) : Has… in SHAKE_128() struct
/dports/security/hash/Hash-3c8d607b3d470d8a41ac3262ee310e850fab61cd/tests/
H A Dtest_shake.cpp77 using Hash = Chocobo1::SHAKE_128;
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/hash/
H A Dhash.cpp275 return std::unique_ptr<HashFunction>(new SHAKE_128(req.arg_as_integer(0, 128))); in create()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/hash/
H A Dhash.cpp275 return std::unique_ptr<HashFunction>(new SHAKE_128(req.arg_as_integer(0, 128))); in create()
/dports/security/botan2/Botan-2.18.2/src/lib/hash/
H A Dhash.cpp275 return std::unique_ptr<HashFunction>(new SHAKE_128(req.arg_as_integer(0, 128))); in create()
/dports/security/hash/Hash-3c8d607b3d470d8a41ac3262ee310e850fab61cd/src/program/
H A Dmain.cpp494 readNPrint(Chocobo1::SHAKE_128(digestLength), argv[3]); in runHash()