Searched refs:ECDH (Results 1 - 10 of 10) sorted by relevance
/third_party/node/lib/internal/crypto/ |
H A D | diffiehellman.js | 15 ECDH: _ECDH, 232 function ECDH(curve) { class 233 if (!(this instanceof ECDH)) 234 return new ECDH(curve); 240 ECDH.prototype.computeSecret = DiffieHellman.prototype.computeSecret; 241 ECDH.prototype.setPrivateKey = DiffieHellman.prototype.setPrivateKey; 242 ECDH.prototype.setPublicKey = DiffieHellman.prototype.setPublicKey; 243 ECDH.prototype.getPrivateKey = DiffieHellman.prototype.getPrivateKey; 245 ECDH.prototype.generateKeys = function generateKeys(encoding, format) { 251 ECDH [all...] |
/third_party/node/src/crypto/ |
H A D | crypto_ec.cc | 64 void ECDH::Initialize(Environment* env, Local<Object> target) { in Initialize() 71 t->InstanceTemplate()->SetInternalFieldCount(ECDH::kInternalFieldCount); in Initialize() 80 SetConstructorFunction(context, target, "ECDH", t); in Initialize() 82 SetMethodNoSideEffect(context, target, "ECDHConvertKey", ECDH::ConvertKey); in Initialize() 83 SetMethodNoSideEffect(context, target, "getCurves", ECDH::GetCurves); in Initialize() 93 void ECDH::RegisterExternalReferences(ExternalReferenceRegistry* registry) { in RegisterExternalReferences() 101 registry->Register(ECDH::ConvertKey); in RegisterExternalReferences() 102 registry->Register(ECDH::GetCurves); in RegisterExternalReferences() 109 void ECDH::GetCurves(const FunctionCallbackInfo<Value>& args) { in GetCurves() 122 ECDH function in node::crypto::ECDH [all...] |
H A D | crypto_ec.h | 21 class ECDH final : public BaseObject { 23 ~ECDH() override; 33 SET_MEMORY_INFO_NAME(ECDH) 34 SET_SELF_SIZE(ECDH) 41 ECDH(Environment* env, v8::Local<v8::Object> wrap, ECKeyPointer&& key);
|
H A D | crypto_util.cc | 529 V(ECDH) \ in SetFipsCrypto()
|
H A D | crypto_keys.cc | 1071 ECPointPointer pub(ECDH::BufferToPoint(env, group, args[1])); in InitECRaw()
|
/third_party/node/lib/ |
H A D | crypto.js | 86 ECDH, 161 return new ECDH(curve); 234 ECDH,
|
/third_party/node/test/parallel/ |
H A D | test-tls-ecdh-multiple.js | 5 // separated ECDH curve names as value. 59 /Error: Failed to set ECDH curve/);
|
/third_party/node/src/ |
H A D | node_crypto.cc | 44 V(ECDH) \
|
/third_party/mbedtls/tests/ |
H A D | compat.sh | 668 *ECDH-ECDSA*|*ECDH-RSA*) O_SUPPORT_ECDH="YES";;
|
/third_party/mbedtls/tests/scripts/ |
H A D | all.sh | 2054 msg "build: Everest ECDH context (ASan build)" # ~ 6 min 2059 msg "test: Everest ECDH context - main suites (inc. selftests) (ASan build)" # ~ 50s 2065 msg "test: Everest ECDH context - ECDH-related part of ssl-opt.sh (ASan build)" # ~ 5s 2066 tests/ssl-opt.sh -f ECDH 2068 msg "test: Everest ECDH context - compat.sh with some ECDH ciphersuites (ASan build)" # ~ 3 min 2070 tests/compat.sh -f ECDH -V NO -e 'ARIA\|CAMELLIA\|CHACHA' 2074 msg "build: Everest ECDH context, only Curve25519" # ~ 6 min 2086 msg "test: Everest ECDH contex [all...] |
Completed in 10 milliseconds