@@ -3201,7 +3201,7 @@ void CipherBase::Final(const FunctionCallbackInfo<Value>& args) {
3201
3201
}
3202
3202
3203
3203
3204
- void Hmac::Initialize (Environment* env, v8:: Local<Object> target) {
3204
+ void Hmac::Initialize (Environment* env, Local<Object> target) {
3205
3205
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3206
3206
3207
3207
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3323,7 +3323,7 @@ void Hmac::HmacDigest(const FunctionCallbackInfo<Value>& args) {
3323
3323
}
3324
3324
3325
3325
3326
- void Hash::Initialize (Environment* env, v8:: Local<Object> target) {
3326
+ void Hash::Initialize (Environment* env, Local<Object> target) {
3327
3327
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3328
3328
3329
3329
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3518,7 +3518,7 @@ static bool ApplyRSAOptions(const EVPKeyPointer& pkey,
3518
3518
3519
3519
3520
3520
3521
- void Sign::Initialize (Environment* env, v8:: Local<Object> target) {
3521
+ void Sign::Initialize (Environment* env, Local<Object> target) {
3522
3522
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3523
3523
3524
3524
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3750,7 +3750,7 @@ static ParsePublicKeyResult ParsePublicKey(EVPKeyPointer* pkey,
3750
3750
});
3751
3751
}
3752
3752
3753
- void Verify::Initialize (Environment* env, v8:: Local<Object> target) {
3753
+ void Verify::Initialize (Environment* env, Local<Object> target) {
3754
3754
Local<FunctionTemplate> t = env->NewFunctionTemplate (New);
3755
3755
3756
3756
t->InstanceTemplate ()->SetInternalFieldCount (1 );
@@ -3969,7 +3969,7 @@ void DiffieHellman::Initialize(Environment* env, Local<Object> target) {
3969
3969
Local<FunctionTemplate> t = env->NewFunctionTemplate (callback);
3970
3970
3971
3971
const PropertyAttribute attributes =
3972
- static_cast <PropertyAttribute>(v8:: ReadOnly | v8:: DontDelete);
3972
+ static_cast <PropertyAttribute>(ReadOnly | DontDelete);
3973
3973
3974
3974
t->InstanceTemplate ()->SetInternalFieldCount (1 );
3975
3975
@@ -4247,7 +4247,7 @@ void DiffieHellman::ComputeSecret(const FunctionCallbackInfo<Value>& args) {
4247
4247
Buffer::New (env->isolate (), data.release (), data.size ).ToLocalChecked ());
4248
4248
}
4249
4249
4250
- void DiffieHellman::SetKey (const v8:: FunctionCallbackInfo<Value>& args,
4250
+ void DiffieHellman::SetKey (const FunctionCallbackInfo<Value>& args,
4251
4251
int (*set_field)(DH*, BIGNUM*), const char* what) {
4252
4252
Environment* env = Environment::GetCurrent (args);
4253
4253
0 commit comments