We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5117c6c commit 229b1e1Copy full SHA for 229b1e1
src/crypto/crypto_hkdf.cc
@@ -17,6 +17,8 @@ using v8::Uint32;
17
using v8::Value;
18
19
namespace crypto {
20
+static constexpr size_t kMaxDigestMultiplier = 255;
21
+
22
HKDFConfig::HKDFConfig(HKDFConfig&& other) noexcept
23
: mode(other.mode),
24
length(other.length),
src/crypto/crypto_hkdf.h
@@ -11,8 +11,6 @@
11
12
namespace node {
13
14
-static constexpr size_t kMaxDigestMultiplier = 255;
15
-
16
struct HKDFConfig final : public MemoryRetainer {
CryptoJobMode mode;
size_t length;
0 commit comments