|
|
|
#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/hmac.h>
|
|
|
|
|
|
|
|
#define EVP_F_EVP_DECRYPTFINAL 101
|
|
|
|
|
|
|
|
|
|
|
|
namespace node {
|
|
|
|
|
|
|
|
class SecureContext : ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
SSL_CTX *ctx_;
|
|
|
|
X509_STORE *ca_store_;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static v8::Handle<v8::Value> New(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> Init(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> SetKey(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> SetCert(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> AddCACert(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> AddRootCerts(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> SetCiphers(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> Close(const v8::Arguments& args);
|
|
|
|
|
|
|
|
SecureContext() : ObjectWrap() {
|
|
|
|
ctx_ = NULL;
|
|
|
|
ca_store_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
~SecureContext() {
|
|
|
|
// Free up
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
class SecureStream : ObjectWrap {
|
|
|
|
public:
|
|
|
|
static void Initialize(v8::Handle<v8::Object> target);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static v8::Handle<v8::Value> New(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> EncIn(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> ClearOut(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> ClearPending(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> EncPending(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> EncOut(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> ClearIn(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> GetPeerCertificate(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> IsInitFinished(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> VerifyPeerError(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> GetCurrentCipher(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> Shutdown(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> Start(const v8::Arguments& args);
|
|
|
|
static v8::Handle<v8::Value> Close(const v8::Arguments& args);
|
|
|
|
|
|
|
|
SecureStream() : ObjectWrap() {
|
|
|
|
bio_read_ = bio_write_ = NULL;
|
|
|
|
ssl_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
~SecureStream() {
|
|
|
|
if (ssl_ != NULL) {
|
|
|
|
SSL_free(ssl_);
|
|
|
|
ssl_ = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
BIO *bio_read_;
|
|
|
|
BIO *bio_write_;
|
|
|
|
SSL *ssl_;
|
|
|
|
bool is_server_; /* coverity[member_decl] */
|
|
|
|
bool should_verify_; /* coverity[member_decl] */
|
|
|
|
};
|
|
|
|
|
|
|
|
void InitCrypto(v8::Handle<v8::Object> target);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SRC_NODE_CRYPTO_H_
|