Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120249388
security_buffer.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 2, 23:23
Size
1 KB
Mime Type
text/x-c
Expires
Fri, Jul 4, 23:23 (1 d, 8 h)
Engine
blob
Format
Raw Data
Handle
27161520
Attached To
R2664 SHRINE MedCo Fork
security_buffer.h
View Options
#ifndef SECURITY_BUFFER_H
#define SECURITY_BUFFER_H
#include <node.h>
#include <node_object_wrap.h>
#include <v8.h>
#define SECURITY_WIN32 1
#include <windows.h>
#include <sspi.h>
using namespace v8;
using namespace node;
class SecurityBuffer : public ObjectWrap {
public:
SecurityBuffer(uint32_t security_type, size_t size);
SecurityBuffer(uint32_t security_type, size_t size, void *data);
~SecurityBuffer();
// Internal values
void *data;
size_t size;
uint32_t security_type;
SecBuffer sec_buffer;
// Has instance check
static inline bool HasInstance(Handle<Value> val) {
if (!val->IsObject()) return false;
Local<Object> obj = val->ToObject();
return constructor_template->HasInstance(obj);
};
// Functions available from V8
static void Initialize(Handle<Object> target);
static Handle<Value> ToBuffer(const Arguments &args);
// Constructor used for creating new Long objects from C++
static Persistent<FunctionTemplate> constructor_template;
private:
static Handle<Value> New(const Arguments &args);
};
#endif
Event Timeline
Log In to Comment