@@ -3216,7 +3216,7 @@ void CipherBase::Final(const FunctionCallbackInfo<Value>& args) {
3216
3216
}
3217
3217
3218
3218
3219
- void Hmac::Initialize (Environment* env, v8:: Local<Object> target) {
3219
+ void Hmac::Initialize (Environment* env, Local<Object> target) {
3220
3220
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3221
3221
3222
3222
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3338,7 +3338,7 @@ void Hmac::HmacDigest(const FunctionCallbackInfo<Value>& args) {
3338
3338
}
3339
3339
3340
3340
3341
- void Hash::Initialize (Environment* env, v8:: Local<Object> target) {
3341
+ void Hash::Initialize (Environment* env, Local<Object> target) {
3342
3342
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3343
3343
3344
3344
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3533,7 +3533,7 @@ static bool ApplyRSAOptions(const EVPKeyPointer& pkey,
3533
3533
3534
3534
3535
3535
3536
- void Sign::Initialize (Environment* env, v8:: Local<Object> target) {
3536
+ void Sign::Initialize (Environment* env, Local<Object> target) {
3537
3537
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3538
3538
3539
3539
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3765,7 +3765,7 @@ static ParsePublicKeyResult ParsePublicKey(EVPKeyPointer* pkey,
3765
3765
});
3766
3766
}
3767
3767
3768
- void Verify::Initialize (Environment* env, v8:: Local<Object> target) {
3768
+ void Verify::Initialize (Environment* env, Local<Object> target) {
3769
3769
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3770
3770
3771
3771
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3984,7 +3984,7 @@ void DiffieHellman::Initialize(Environment* env, Local<Object> target) {
3984
3984
Local<FunctionTemplate> t = env->NewFunctionTemplate (callback);
3985
3985
3986
3986
const PropertyAttribute attributes =
3987
- static_cast <PropertyAttribute>(v8:: ReadOnly | v8:: DontDelete);
3987
+ static_cast <PropertyAttribute>(ReadOnly | DontDelete);
3988
3988
3989
3989
t->InstanceTemplate ()->SetInternalFieldCount (1 );
3990
3990
@@ -4262,7 +4262,7 @@ void DiffieHellman::ComputeSecret(const FunctionCallbackInfo<Value>& args) {
4262
4262
Buffer::New (env->isolate (), data.release (), data.size ).ToLocalChecked ());
4263
4263
}
4264
4264
4265
- void DiffieHellman::SetKey (const v8:: FunctionCallbackInfo<Value>& args,
4265
+ void DiffieHellman::SetKey (const FunctionCallbackInfo<Value>& args,
4266
4266
int (*set_field)(DH*, BIGNUM*), const char* what) {
4267
4267
Environment* env = Environment::GetCurrent (args);
4268
4268
0 commit comments