FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/node_crypto.h at v1.8.0-commit · anchnk/node · GitHub
anchnk
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
node_crypto.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
690 lines (579 loc) · 21.9 KB
Breadcrumbs
node
/
src
/
node_crypto.h
Copy path
File metadata and controls
690 lines (579 loc) · 21.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
#
ifndef
SRC_NODE_CRYPTO_H_
#
define
SRC_NODE_CRYPTO_H_
#
include
"
node.h
"
#
include
"
node_crypto_clienthello.h
"
//
ClientHelloParser
#
include
"
node_crypto_clienthello-inl.h
"
#
ifdef
OPENSSL_NPN_NEGOTIATED
#
include
"
node_buffer.h
"
#
endif
#
include
"
env.h
"
#
include
"
async-wrap.h
"
#
include
"
async-wrap-inl.h
"
#
include
"
base-object.h
"
#
include
"
base-object-inl.h
"
#
include
"
v8.h
"
#
include
<
openssl/ssl.h
>
#
include
<
openssl/ec.h
>
#
include
<
openssl/ecdh.h
>
#
ifndef
OPENSSL_NO_ENGINE
#
include
<
openssl/engine.h
>
#
endif
//
!OPENSSL_NO_ENGINE
#
include
<
openssl/err.h
>
#
include
<
openssl/evp.h
>
#
include
<
openssl/pem.h
>
#
include
<
openssl/x509.h
>
#
include
<
openssl/x509v3.h
>
#
include
<
openssl/hmac.h
>
#
include
<
openssl/rand.h
>
#
include
<
openssl/pkcs12.h
>
#
define
EVP_F_EVP_DECRYPTFINAL
101
#
if
!defined(OPENSSL_NO_TLSEXT) && defined(SSL_CTX_set_tlsext_status_cb)
#
define
NODE__HAVE_TLSEXT_STATUS_CB
#
endif
//
!defined(OPENSSL_NO_TLSEXT) && defined(SSL_CTX_set_tlsext_status_cb)
namespace
node
{
namespace
crypto
{
extern
int
VerifyCallback
(
int
preverify_ok,
X509_STORE_CTX
* ctx);
extern
X509_STORE
* root_cert_store;
//
Forward declaration
class
Connection
;
class
SecureContext
:
public
BaseObject
{
public:
~SecureContext
()
override
{
FreeCTXMem
();
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
X509_STORE
* ca_store_;
SSL_CTX
* ctx_;
X509
* cert_;
X509
* issuer_;
static
const
int
kMaxSessionSize
=
10
*
1024
;
protected:
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Init
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetCert
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
AddCACert
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
AddCRL
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
AddRootCerts
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetCiphers
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetECDHCurve
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetDHParam
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetOptions
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetSessionIdContext
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetSessionTimeout
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Close
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
LoadPKCS12
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetTicketKeys
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetTicketKeys
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
CtxGetter
(v8::Local<v8::String> property,
const
v8::PropertyCallbackInfo<v8::Value>& info);
template
<
bool
primary>
static
void
GetCertificate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
SecureContext
(Environment* env, v8::Local<v8::Object> wrap)
: BaseObject(env, wrap),
ca_store_
(
nullptr
),
ctx_(
nullptr
),
cert_(
nullptr
),
issuer_(
nullptr
) {
MakeWeak<SecureContext>(
this
);
}
void
FreeCTXMem
() {
if
(ctx_) {
if
(ctx_->
cert_store
== root_cert_store) {
//
SSL_CTX_free() will attempt to free the cert_store as well.
//
Since we want our root_cert_store to stay around forever
//
we just clear the field. Hopefully OpenSSL will not modify this
//
struct in future versions.
ctx_->
cert_store
=
nullptr
;
}
SSL_CTX_free
(ctx_);
if
(cert_ !=
nullptr
)
X509_free
(cert_);
if
(issuer_ !=
nullptr
)
X509_free
(issuer_);
ctx_ =
nullptr
;
ca_store_ =
nullptr
;
cert_ =
nullptr
;
issuer_ =
nullptr
;
}
else
{
CHECK_EQ
(ca_store_,
nullptr
);
}
}
};
//
SSLWrap implicitly depends on the inheriting class' handle having an
//
internal pointer to the Base class.
template
<
class
Base
>
class
SSLWrap
{
public:
enum
Kind {
kClient
,
kServer
};
SSLWrap
(Environment* env, SecureContext* sc, Kind kind)
: env_(env),
kind_
(kind),
next_sess_(
nullptr
),
session_callbacks_(
false
),
new_session_wait_(
false
) {
ssl_ =
SSL_new
(sc->
ctx_
);
CHECK_NE
(ssl_,
nullptr
);
}
virtual
~SSLWrap
() {
if
(ssl_ !=
nullptr
) {
SSL_free
(ssl_);
ssl_ =
nullptr
;
}
if
(next_sess_ !=
nullptr
) {
SSL_SESSION_free
(next_sess_);
next_sess_ =
nullptr
;
}
#
ifdef
OPENSSL_NPN_NEGOTIATED
npn_protos_.
Reset
();
selected_npn_proto_.
Reset
();
#
endif
#
ifdef
NODE__HAVE_TLSEXT_STATUS_CB
ocsp_response_.
Reset
();
#
endif
//
NODE__HAVE_TLSEXT_STATUS_CB
}
inline
SSL
*
ssl
()
const
{
return
ssl_; }
inline
void
enable_session_callbacks
() { session_callbacks_ =
true
; }
inline
bool
is_server
()
const
{
return
kind_ ==
kServer
; }
inline
bool
is_client
()
const
{
return
kind_ ==
kClient
; }
inline
bool
is_waiting_new_session
()
const
{
return
new_session_wait_; }
protected:
static
void
InitNPN
(SecureContext* sc);
static
void
AddMethods
(Environment* env, v8::Handle<v8::FunctionTemplate> t);
static
SSL_SESSION
*
GetSessionCallback
(
SSL
* s,
unsigned
char
* key,
int
len,
int
* copy);
static
int
NewSessionCallback
(
SSL
* s,
SSL_SESSION
* sess);
static
void
OnClientHello
(
void
* arg,
const
ClientHelloParser::ClientHello& hello);
static
void
GetPeerCertificate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetSession
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetSession
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
LoadSession
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
IsSessionReused
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
IsInitFinished
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
VerifyError
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetCurrentCipher
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
EndParser
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Renegotiate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Shutdown
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetTLSTicket
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
NewSessionDone
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetOCSPResponse
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
RequestOCSP
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
#
ifdef
SSL_set_max_send_fragment
static
void
SetMaxSendFragment
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
#
endif
//
SSL_set_max_send_fragment
#
ifdef
OPENSSL_NPN_NEGOTIATED
static
void
GetNegotiatedProto
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetNPNProtocols
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
int
AdvertiseNextProtoCallback
(
SSL
* s,
const
unsigned
char
** data,
unsigned
int
* len,
void
* arg);
static
int
SelectNextProtoCallback
(
SSL
* s,
unsigned
char
** out,
unsigned
char
* outlen,
const
unsigned
char
* in,
unsigned
int
inlen,
void
* arg);
#
endif
//
OPENSSL_NPN_NEGOTIATED
static
int
TLSExtStatusCallback
(
SSL
* s,
void
* arg);
static
void
SSLGetter
(v8::Local<v8::String> property,
const
v8::PropertyCallbackInfo<v8::Value>& info);
inline
Environment*
ssl_env
()
const
{
return
env_;
}
Environment*
const
env_;
Kind kind_;
SSL_SESSION
* next_sess_;
SSL
* ssl_;
bool
session_callbacks_;
bool
new_session_wait_;
ClientHelloParser hello_parser_;
#
ifdef
NODE__HAVE_TLSEXT_STATUS_CB
v8::Persistent<v8::Object> ocsp_response_;
#
endif
//
NODE__HAVE_TLSEXT_STATUS_CB
#
ifdef
OPENSSL_NPN_NEGOTIATED
v8::Persistent<v8::Object> npn_protos_;
v8::Persistent<v8::Value> selected_npn_proto_;
#
endif
//
OPENSSL_NPN_NEGOTIATED
friend
class
SecureContext
;
};
//
Connection inherits from AsyncWrap because SSLWrap makes calls to
//
MakeCallback, but SSLWrap doesn't store the handle itself. Instead it
//
assumes that any args.This() called will be the handle from Connection.
class
Connection
:
public
SSLWrap
<Connection>, public AsyncWrap {
public:
~Connection
()
override
{
#
ifdef
SSL_CTRL_SET_TLSEXT_SERVERNAME_CB
sniObject_.
Reset
();
sniContext_.
Reset
();
servername_.
Reset
();
#
endif
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
void
NewSessionDoneCb
();
#
ifdef
OPENSSL_NPN_NEGOTIATED
v8::Persistent<v8::Object> npnProtos_;
v8::Persistent<v8::Value> selectedNPNProto_;
#
endif
#
ifdef
SSL_CTRL_SET_TLSEXT_SERVERNAME_CB
v8::Persistent<v8::Object> sniObject_;
v8::Persistent<v8::Value> sniContext_;
v8::Persistent<v8::String> servername_;
#
endif
protected:
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
EncIn
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ClearOut
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ClearPending
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
EncPending
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
EncOut
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ClearIn
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Start
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Close
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
#
ifdef
SSL_CTRL_SET_TLSEXT_SERVERNAME_CB
//
SNI
static
void
GetServername
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetSNICallback
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
int
SelectSNIContextCallback_
(
SSL
* s,
int
* ad,
void
* arg);
#
endif
static
void
OnClientHelloParseEnd
(
void
* arg);
int
HandleBIOError
(
BIO
* bio,
const
char
* func,
int
rv);
enum
ZeroStatus {
kZeroIsNotAnError
,
kZeroIsAnError
};
enum
SyscallStatus {
kIgnoreSyscall
,
kSyscallError
};
int
HandleSSLError
(
const
char
* func,
int
rv, ZeroStatus zs, SyscallStatus ss);
void
ClearError
();
void
SetShutdownFlags
();
Connection
(Environment* env,
v8::Local<v8::Object> wrap,
SecureContext* sc,
SSLWrap<Connection>::Kind kind)
: SSLWrap<Connection>(env, sc, kind),
AsyncWrap
(env, wrap, AsyncWrap::
PROVIDER_CRYPTO
),
bio_read_
(
nullptr
),
bio_write_
(
nullptr
),
hello_offset_
(
0
) {
MakeWeak<Connection>(
this
);
hello_parser_.
Start
(SSLWrap<Connection>::OnClientHello,
OnClientHelloParseEnd,
this
);
enable_session_callbacks
();
}
private:
static
void
SSLInfoCallback
(
const
SSL
*ssl,
int
where,
int
ret);
BIO
*bio_read_;
BIO
*bio_write_;
uint8_t
hello_data_[
18432
];
size_t
hello_offset_;
friend
class
ClientHelloParser
;
friend
class
SecureContext
;
};
class
CipherBase
:
public
BaseObject
{
public:
~CipherBase
()
override
{
if
(!initialised_)
return
;
delete[]
auth_tag_;
EVP_CIPHER_CTX_cleanup
(&ctx_);
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
protected:
enum
CipherKind {
kCipher
,
kDecipher
};
void
Init
(
const
char
* cipher_type,
const
char
* key_buf,
int
key_buf_len);
void
InitIv
(
const
char
* cipher_type,
const
char
* key,
int
key_len,
const
char
* iv,
int
iv_len);
bool
Update
(
const
char
* data,
int
len,
unsigned
char
** out,
int
* out_len);
bool
Final
(
unsigned
char
** out,
int
*out_len);
bool
SetAutoPadding
(
bool
auto_padding);
bool
IsAuthenticatedMode
()
const
;
bool
GetAuthTag
(
char
** out,
unsigned
int
* out_len)
const
;
bool
SetAuthTag
(
const
char
* data,
unsigned
int
len);
bool
SetAAD
(
const
char
* data,
unsigned
int
len);
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Init
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
InitIv
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Update
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
Final
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetAutoPadding
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetAuthTag
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetAuthTag
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetAAD
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
CipherBase
(Environment* env,
v8::Local<v8::Object> wrap,
CipherKind kind)
: BaseObject(env, wrap),
cipher_
(
nullptr
),
initialised_(
false
),
kind_(kind),
auth_tag_(
nullptr
),
auth_tag_len_(
0
) {
MakeWeak<CipherBase>(
this
);
}
private:
EVP_CIPHER_CTX
ctx_;
/*
coverity[member_decl]
*/
const
EVP_CIPHER
* cipher_;
/*
coverity[member_decl]
*/
bool
initialised_;
CipherKind kind_;
char
* auth_tag_;
unsigned
int
auth_tag_len_;
};
class
Hmac
:
public
BaseObject
{
public:
~Hmac
()
override
{
if
(!initialised_)
return
;
HMAC_CTX_cleanup
(&ctx_);
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
protected:
void
HmacInit
(
const
char
* hash_type,
const
char
* key,
int
key_len);
bool
HmacUpdate
(
const
char
* data,
int
len);
bool
HmacDigest
(
unsigned
char
** md_value,
unsigned
int
* md_len);
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
HmacInit
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
HmacUpdate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
HmacDigest
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
Hmac
(Environment* env, v8::Local<v8::Object> wrap)
: BaseObject(env, wrap),
md_
(
nullptr
),
initialised_(
false
) {
MakeWeak<Hmac>(
this
);
}
private:
HMAC_CTX
ctx_;
/*
coverity[member_decl]
*/
const
EVP_MD
* md_;
/*
coverity[member_decl]
*/
bool
initialised_;
};
class
Hash
:
public
BaseObject
{
public:
~Hash
()
override
{
if
(!initialised_)
return
;
EVP_MD_CTX_cleanup
(&mdctx_);
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
bool
HashInit
(
const
char
* hash_type);
bool
HashUpdate
(
const
char
* data,
int
len);
protected:
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
HashUpdate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
HashDigest
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
Hash
(Environment* env, v8::Local<v8::Object> wrap)
: BaseObject(env, wrap),
md_
(
nullptr
),
initialised_(
false
) {
MakeWeak<Hash>(
this
);
}
private:
EVP_MD_CTX
mdctx_;
/*
coverity[member_decl]
*/
const
EVP_MD
* md_;
/*
coverity[member_decl]
*/
bool
initialised_;
};
class
SignBase
:
public
BaseObject
{
public:
typedef
enum
{
kSignOk
,
kSignUnknownDigest
,
kSignInit
,
kSignNotInitialised
,
kSignUpdate
,
kSignPrivateKey
,
kSignPublicKey
} Error;
SignBase
(Environment* env, v8::Local<v8::Object> wrap)
: BaseObject(env, wrap),
md_
(
nullptr
),
initialised_(
false
) {
}
~SignBase
()
override
{
if
(!initialised_)
return
;
EVP_MD_CTX_cleanup
(&mdctx_);
}
protected:
void
CheckThrow
(Error error);
EVP_MD_CTX
mdctx_;
/*
coverity[member_decl]
*/
const
EVP_MD
* md_;
/*
coverity[member_decl]
*/
bool
initialised_;
};
class
Sign
:
public
SignBase
{
public:
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
Error
SignInit
(
const
char
* sign_type);
Error
SignUpdate
(
const
char
* data,
int
len);
Error
SignFinal
(
const
char
* key_pem,
int
key_pem_len,
const
char
* passphrase,
unsigned
char
** sig,
unsigned
int
*sig_len);
protected:
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SignInit
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SignUpdate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SignFinal
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
Sign
(Environment* env, v8::Local<v8::Object> wrap) : SignBase(env, wrap) {
MakeWeak<Sign>(
this
);
}
};
class
Verify
:
public
SignBase
{
public:
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
Error
VerifyInit
(
const
char
* verify_type);
Error
VerifyUpdate
(
const
char
* data,
int
len);
Error
VerifyFinal
(
const
char
* key_pem,
int
key_pem_len,
const
char
* sig,
int
siglen,
bool
* verify_result);
protected:
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
VerifyInit
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
VerifyUpdate
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
VerifyFinal
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
Verify
(Environment* env, v8::Local<v8::Object> wrap) : SignBase(env, wrap) {
MakeWeak<Verify>(
this
);
}
};
class
PublicKeyCipher
{
public:
typedef
int
(*EVP_PKEY_cipher_init_t)(
EVP_PKEY_CTX
*ctx);
typedef
int
(*EVP_PKEY_cipher_t)(
EVP_PKEY_CTX
*ctx,
unsigned
char
*out,
size_t
*outlen,
const
unsigned
char
*in,
size_t
inlen);
enum
Operation {
kPublic
,
kPrivate
};
template
<Operation operation,
EVP_PKEY_cipher_init_t EVP_PKEY_cipher_init,
EVP_PKEY_cipher_t EVP_PKEY_cipher>
static
bool
Cipher
(
const
char
* key_pem,
int
key_pem_len,
const
char
* passphrase,
int
padding,
const
unsigned
char
* data,
int
len,
unsigned
char
** out,
size_t
* out_len);
template
<Operation operation,
EVP_PKEY_cipher_init_t EVP_PKEY_cipher_init,
EVP_PKEY_cipher_t EVP_PKEY_cipher>
static
void
Cipher
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
};
class
DiffieHellman
:
public
BaseObject
{
public:
~DiffieHellman
()
override
{
if
(dh !=
nullptr
) {
DH_free
(dh);
}
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
bool
Init
(
int
primeLength,
int
g);
bool
Init
(
const
char
* p,
int
p_len,
int
g);
bool
Init
(
const
char
* p,
int
p_len,
const
char
* g,
int
g_len);
protected:
static
void
DiffieHellmanGroup
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GenerateKeys
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetPrime
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetGenerator
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetPublicKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetPrivateKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ComputeSecret
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetPublicKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetPrivateKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
VerifyErrorGetter
(
v8::Local<v8::String> property,
const
v8::PropertyCallbackInfo<v8::Value>& args);
DiffieHellman
(Environment* env, v8::Local<v8::Object> wrap)
: BaseObject(env, wrap),
initialised_
(
false
),
verifyError_(
0
),
dh(
nullptr
) {
MakeWeak<DiffieHellman>(
this
);
}
private:
bool
VerifyContext
();
bool
initialised_;
int
verifyError_;
DH
* dh;
};
class
ECDH
:
public
BaseObject
{
public:
~ECDH
()
override
{
if
(key_ !=
nullptr
)
EC_KEY_free
(key_);
key_ =
nullptr
;
group_ =
nullptr
;
}
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
protected:
ECDH
(Environment* env, v8::Local<v8::Object> wrap,
EC_KEY
* key)
: BaseObject(env, wrap),
generated_
(
false
),
key_(key),
group_(EC_KEY_get0_group(key_)) {
MakeWeak<
ECDH
>(
this
);
ASSERT_NE
(group_,
nullptr
);
}
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GenerateKeys
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ComputeSecret
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetPrivateKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetPrivateKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
GetPublicKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
SetPublicKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
EC_POINT
*
BufferToPoint
(
char
* data,
size_t
len);
bool
generated_;
EC_KEY
* key_;
const
EC_GROUP
* group_;
};
class
Certificate
:
public
AsyncWrap
{
public:
static
void
Initialize
(Environment* env, v8::Handle<v8::Object> target);
v8::Handle<v8::Value>
CertificateInit
(
const
char
* sign_type);
bool
VerifySpkac
(
const
char
* data,
unsigned
int
len);
const
char
*
ExportPublicKey
(
const
char
* data,
int
len);
const
char
*
ExportChallenge
(
const
char
* data,
int
len);
protected:
static
void
New
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
VerifySpkac
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ExportPublicKey
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
static
void
ExportChallenge
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
Certificate
(Environment* env, v8::Local<v8::Object> wrap)
: AsyncWrap(env, wrap, AsyncWrap::
PROVIDER_CRYPTO
) {
MakeWeak<Certificate>(
this
);
}
};
bool
EntropySource
(
unsigned
char
* buffer,
size_t
length);
#
ifndef
OPENSSL_NO_ENGINE
void
SetEngine
(
const
v8::FunctionCallbackInfo<v8::Value>& args);
#
endif
//
!OPENSSL_NO_ENGINE
void
InitCrypto
(v8::Handle<v8::Object> target);
}
//
namespace crypto
}
//
namespace node
#endif
//
SRC_NODE_CRYPTO_H_
Back
|
FazBrowse Home
|
New Git URL