|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
#ifndef SRC_NODE_CRYPTO_H_
|
|
|
|
#define SRC_NODE_CRYPTO_H_
|
|
|
|
|
|
|
|
#include "node.h"
|
|
|
|
|
|
|
|
#include "node_object_wrap.h"
|
|
|
|
#include "v8.h"
|
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#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>
|
|
|
|
|
|
|
|
#ifdef OPENSSL_NPN_NEGOTIATED
|
|
|
|
#include "node_buffer.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define EVP_F_EVP_DECRYPTFINAL 101
|
|
|
|
|
|
|
|
|
|
|
|
namespace node {
|
|
|
|
namespace crypto {
|
|
|
|
|
|
|
|
static X509_STORE* root_cert_store;
|
|
|
|
|
|
|
|
// Forward declaration
|
|
|
|
class Connection;
|
|
|
|
|
|
|
|
class SecureContext : ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
SSL_CTX *ctx_;
|
|
|
|
// TODO: ca_store_ should probably be removed, it's not used anywhere.
|
|
|
|
X509_STORE *ca_store_;
|
|
|
|
|
|
|
|
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 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 SSL_SESSION* GetSessionCallback(SSL* s,
|
|
|
|
unsigned char* key,
|
|
|
|
int len,
|
|
|
|
int* copy);
|
|
|
|
static int NewSessionCallback(SSL* s, SSL_SESSION* sess);
|
|
|
|
|
|
|
|
SecureContext() : ObjectWrap() {
|
|
|
|
ctx_ = NULL;
|
|
|
|
ca_store_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 = NULL;
|
|
|
|
}
|
|
|
|
SSL_CTX_free(ctx_);
|
|
|
|
ctx_ = NULL;
|
|
|
|
ca_store_ = NULL;
|
|
|
|
} else {
|
|
|
|
assert(ca_store_ == NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
~SecureContext() {
|
|
|
|
FreeCTXMem();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
class ClientHelloParser {
|
|
|
|
public:
|
|
|
|
enum FrameType {
|
|
|
|
kChangeCipherSpec = 20,
|
|
|
|
kAlert = 21,
|
|
|
|
kHandshake = 22,
|
|
|
|
kApplicationData = 23,
|
|
|
|
kOther = 255
|
|
|
|
};
|
|
|
|
|
|
|
|
enum HandshakeType {
|
|
|
|
kClientHello = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ParseState {
|
|
|
|
kWaiting,
|
|
|
|
kTLSHeader,
|
|
|
|
kSSLHeader,
|
|
|
|
kPaused,
|
|
|
|
kEnded
|
|
|
|
};
|
|
|
|
|
|
|
|
ClientHelloParser(Connection* c) : conn_(c),
|
|
|
|
state_(kWaiting),
|
|
|
|
offset_(0),
|
|
|
|
body_offset_(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Write(const uint8_t* data, size_t len);
|
|
|
|
void Finish();
|
|
|
|
|
|
|
|
inline bool ended() { return state_ == kEnded; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Connection* conn_;
|
|
|
|
ParseState state_;
|
|
|
|
size_t frame_len_;
|
|
|
|
|
|
|
|
uint8_t data_[18432];
|
|
|
|
size_t offset_;
|
|
|
|
size_t body_offset_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Connection : ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
#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 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 Shutdown(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void ReceivedShutdown(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 OPENSSL_NPN_NEGOTIATED
|
|
|
|
// NPN
|
|
|
|
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
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
static Connection* Unwrap(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
Connection* ss = ObjectWrap::Unwrap<Connection>(args.This());
|
|
|
|
ss->ClearError();
|
|
|
|
return ss;
|
|
|
|
}
|
|
|
|
|
|
|
|
Connection() : ObjectWrap(), hello_parser_(this) {
|
|
|
|
bio_read_ = bio_write_ = NULL;
|
|
|
|
ssl_ = NULL;
|
|
|
|
next_sess_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
~Connection() {
|
|
|
|
if (ssl_ != NULL) {
|
|
|
|
SSL_free(ssl_);
|
|
|
|
ssl_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (next_sess_ != NULL) {
|
|
|
|
SSL_SESSION_free(next_sess_);
|
|
|
|
next_sess_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef OPENSSL_NPN_NEGOTIATED
|
|
|
|
npnProtos_.Dispose();
|
|
|
|
selectedNPNProto_.Dispose();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SSL_CTRL_SET_TLSEXT_SERVERNAME_CB
|
|
|
|
sniObject_.Dispose();
|
|
|
|
sniContext_.Dispose();
|
|
|
|
servername_.Dispose();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void SSLInfoCallback(const SSL *ssl, int where, int ret);
|
|
|
|
|
|
|
|
BIO *bio_read_;
|
|
|
|
BIO *bio_write_;
|
|
|
|
SSL *ssl_;
|
|
|
|
|
|
|
|
ClientHelloParser hello_parser_;
|
|
|
|
|
|
|
|
bool is_server_; /* coverity[member_decl] */
|
|
|
|
SSL_SESSION* next_sess_;
|
|
|
|
|
|
|
|
friend class ClientHelloParser;
|
|
|
|
friend class SecureContext;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CipherBase : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
enum CipherKind {
|
|
|
|
kCipher,
|
|
|
|
kDecipher
|
|
|
|
};
|
|
|
|
|
|
|
|
void Init(char* cipher_type, char* key_buf, int key_buf_len);
|
|
|
|
void InitIv(char* cipher_type, char* key, int key_len, char* iv, int iv_len);
|
|
|
|
bool Update(char* data, int len, unsigned char** out, int* out_len);
|
|
|
|
bool Final(unsigned char** out, int *out_len);
|
|
|
|
bool SetAutoPadding(bool auto_padding);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
CipherBase(CipherKind kind) : cipher_(NULL),
|
|
|
|
initialised_(false),
|
|
|
|
kind_(kind) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~CipherBase() {
|
|
|
|
if (!initialised_) return;
|
|
|
|
EVP_CIPHER_CTX_cleanup(&ctx_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
EVP_CIPHER_CTX ctx_; /* coverity[member_decl] */
|
|
|
|
const EVP_CIPHER* cipher_; /* coverity[member_decl] */
|
|
|
|
bool initialised_;
|
|
|
|
CipherKind kind_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Hmac : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize (v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void HmacInit(char* hashType, char* key, int key_len);
|
|
|
|
bool HmacUpdate(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() : md_(NULL), initialised_(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~Hmac() {
|
|
|
|
if (!initialised_) return;
|
|
|
|
HMAC_CTX_cleanup(&ctx_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
HMAC_CTX ctx_; /* coverity[member_decl] */
|
|
|
|
const EVP_MD* md_; /* coverity[member_decl] */
|
|
|
|
bool initialised_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Hash : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize (v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
bool HashInit(const char* hashType);
|
|
|
|
bool HashUpdate(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() : md_(NULL), initialised_(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~Hash() {
|
|
|
|
if (!initialised_) return;
|
|
|
|
EVP_MD_CTX_cleanup(&mdctx_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
EVP_MD_CTX mdctx_; /* coverity[member_decl] */
|
|
|
|
const EVP_MD* md_; /* coverity[member_decl] */
|
|
|
|
bool initialised_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Sign : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
void SignInit(const char* sign_type);
|
|
|
|
bool SignUpdate(char* data, int len);
|
|
|
|
bool SignFinal(unsigned char** md_value,
|
|
|
|
unsigned int *md_len,
|
|
|
|
char* key_pem,
|
|
|
|
int key_pem_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() : md_(NULL), initialised_(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~Sign() {
|
|
|
|
if (!initialised_) return;
|
|
|
|
EVP_MD_CTX_cleanup(&mdctx_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
EVP_MD_CTX mdctx_; /* coverity[member_decl] */
|
|
|
|
const EVP_MD* md_; /* coverity[member_decl] */
|
|
|
|
bool initialised_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Verify : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize (v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
void VerifyInit(const char* verify_type);
|
|
|
|
bool VerifyUpdate(char* data, int len);
|
|
|
|
bool VerifyFinal(char* key_pem,
|
|
|
|
int key_pem_len,
|
|
|
|
unsigned char* sig,
|
|
|
|
int siglen);
|
|
|
|
|
|
|
|
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() : md_(NULL), initialised_(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~Verify() {
|
|
|
|
if (!initialised_) return;
|
|
|
|
EVP_MD_CTX_cleanup(&mdctx_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
EVP_MD_CTX mdctx_; /* coverity[member_decl] */
|
|
|
|
const EVP_MD* md_; /* coverity[member_decl] */
|
|
|
|
bool initialised_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class DiffieHellman : public ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
bool Init(int primeLength);
|
|
|
|
bool Init(unsigned char* p, int p_len);
|
|
|
|
bool Init(unsigned char* p, int p_len, unsigned 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);
|
|
|
|
|
|
|
|
DiffieHellman() : ObjectWrap(), initialised_(false), dh(NULL) {
|
|
|
|
}
|
|
|
|
|
|
|
|
~DiffieHellman() {
|
|
|
|
if (dh != NULL) {
|
|
|
|
DH_free(dh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool VerifyContext();
|
|
|
|
|
|
|
|
bool initialised_;
|
|
|
|
DH* dh;
|
|
|
|
};
|
|
|
|
|
|
|
|
void InitCrypto(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
} // namespace crypto
|
|
|
|
} // namespace node
|
|
|
|
|
|
|
|
#endif // SRC_NODE_CRYPTO_H_
|