Home
last modified time | relevance | path

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

/third_party/node/src/crypto/
Dcrypto_hkdf.h14 struct HKDFConfig final : public MemoryRetainer {
22 HKDFConfig() = default;
24 explicit HKDFConfig(HKDFConfig&& other) noexcept;
26 HKDFConfig& operator=(HKDFConfig&& other) noexcept;
29 SET_MEMORY_INFO_NAME(HKDFConfig)
30 SET_SELF_SIZE(HKDFConfig)
34 using AdditionalParameters = HKDFConfig;
43 HKDFConfig* params);
47 const HKDFConfig& params,
52 const HKDFConfig& params,
Dcrypto_hkdf.cc20 HKDFConfig::HKDFConfig(HKDFConfig&& other) noexcept in HKDFConfig() function in node::crypto::HKDFConfig
28 HKDFConfig& HKDFConfig::operator=(HKDFConfig&& other) noexcept { in operator =()
30 this->~HKDFConfig(); in operator =()
31 return *new (this) HKDFConfig(std::move(other)); in operator =()
36 const HKDFConfig& params, in EncodeOutput()
47 HKDFConfig* params) { in AdditionalConfig()
105 const HKDFConfig& params, in DeriveBits()
157 void HKDFConfig::MemoryInfo(MemoryTracker* tracker) const { in MemoryInfo()