Home
last modified time | relevance | path

Searched refs:HashConfig (Results 1 – 2 of 2) sorted by relevance

/third_party/node/src/crypto/
Dcrypto_hash.h42 struct HashConfig final : public MemoryRetainer {
48 HashConfig() = default;
50 explicit HashConfig(HashConfig&& other) noexcept;
52 HashConfig& operator=(HashConfig&& other) noexcept;
55 SET_MEMORY_INFO_NAME(HashConfig)
56 SET_SELF_SIZE(HashConfig)
60 using AdditionalParameters = HashConfig;
69 HashConfig* params);
73 const HashConfig& params,
78 const HashConfig& params,
Dcrypto_hash.cc214 HashConfig::HashConfig(HashConfig&& other) noexcept in HashConfig() function in node::crypto::HashConfig
220 HashConfig& HashConfig::operator=(HashConfig&& other) noexcept { in operator =()
222 this->~HashConfig(); in operator =()
223 return *new (this) HashConfig(std::move(other)); in operator =()
226 void HashConfig::MemoryInfo(MemoryTracker* tracker) const { in MemoryInfo()
234 const HashConfig& params, in EncodeOutput()
245 HashConfig* params) { in AdditionalConfig()
287 const HashConfig& params, in DeriveBits()