Lines Matching refs:DiffieHellman

56 DiffieHellman::DiffieHellman(Environment* env, Local<Object> wrap)
61 void DiffieHellman::Initialize(Environment* env, Local<Object> target) {
71 DiffieHellman::kInternalFieldCount);
85 DiffieHellman::VerifyErrorGetter,
101 make(FIXED_ONE_BYTE_STRING(env->isolate(), "DiffieHellman"), New);
106 context, target, "statelessDH", DiffieHellman::Stateless);
112 void DiffieHellman::RegisterExternalReferences(
126 registry->Register(DiffieHellman::VerifyErrorGetter);
127 registry->Register(DiffieHellman::Stateless);
134 bool DiffieHellman::Init(int primeLength, int g) {
141 void DiffieHellman::MemoryInfo(MemoryTracker* tracker) const {
145 bool DiffieHellman::Init(BignumPointer&& bn_p, int g) {
154 bool DiffieHellman::Init(const char* p, int p_len, int g) {
178 bool DiffieHellman::Init(const char* p, int p_len, const char* g, int g_len) {
234 void DiffieHellman::DiffieHellmanGroup(
237 DiffieHellman* diffieHellman = new DiffieHellman(env, args.This());
255 void DiffieHellman::New(const FunctionCallbackInfo<Value>& args) {
257 DiffieHellman* diffieHellman =
258 new DiffieHellman(env, args.This());
291 void DiffieHellman::GenerateKeys(const FunctionCallbackInfo<Value>& args) {
294 DiffieHellman* diffieHellman;
324 void DiffieHellman::GetField(const FunctionCallbackInfo<Value>& args,
329 DiffieHellman* dh;
355 void DiffieHellman::GetPrime(const FunctionCallbackInfo<Value>& args) {
363 void DiffieHellman::GetGenerator(const FunctionCallbackInfo<Value>& args) {
371 void DiffieHellman::GetPublicKey(const FunctionCallbackInfo<Value>& args) {
379 void DiffieHellman::GetPrivateKey(const FunctionCallbackInfo<Value>& args) {
387 void DiffieHellman::ComputeSecret(const FunctionCallbackInfo<Value>& args) {
390 DiffieHellman* diffieHellman;
446 void DiffieHellman::SetKey(const FunctionCallbackInfo<Value>& args,
449 DiffieHellman* dh;
460 void DiffieHellman::SetPublicKey(const FunctionCallbackInfo<Value>& args) {
466 void DiffieHellman::SetPrivateKey(const FunctionCallbackInfo<Value>& args) {
472 void DiffieHellman::VerifyErrorGetter(const FunctionCallbackInfo<Value>& args) {
475 DiffieHellman* diffieHellman;
481 bool DiffieHellman::VerifyContext() {
646 void DiffieHellman::Stateless(const FunctionCallbackInfo<Value>& args) {