Searched refs:DiffieHellmanGroup (Results 1 – 10 of 10) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | diffiehellman.js | 30 DiffieHellmanGroup: _DiffieHellmanGroup, 102 function DiffieHellmanGroup(name) { class 103 if (!(this instanceof DiffieHellmanGroup)) 104 return new DiffieHellmanGroup(name); 114 DiffieHellmanGroup.prototype.generateKeys = 125 DiffieHellmanGroup.prototype.computeSecret = 140 DiffieHellmanGroup.prototype.getPrime = 151 DiffieHellmanGroup.prototype.getGenerator = 162 DiffieHellmanGroup.prototype.getPublicKey = 173 DiffieHellmanGroup.prototype.getPrivateKey = [all …]
|
/third_party/node/lib/ |
D | crypto.js | 77 DiffieHellmanGroup, 138 return new DiffieHellmanGroup(name); 205 DiffieHellmanGroup, property
|
/third_party/node/test/parallel/ |
D | test-crypto-dh.js | 87 const DiffieHellmanGroup = crypto.DiffieHellmanGroup; constant 88 const dhg = DiffieHellmanGroup('modp5'); 89 assert(dhg instanceof DiffieHellmanGroup, 'DiffieHellmanGroup is expected ' +
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 65 'DiffieHellmanGroup': 'crypto.html#crypto_class_diffiehellmangroup', property
|
/third_party/node/src/ |
D | node_crypto.h | 779 static void DiffieHellmanGroup(
|
D | node_crypto.cc | 5215 DiffieHellmanGroup); in Initialize() 5285 void DiffieHellman::DiffieHellmanGroup( in DiffieHellmanGroup() function in node::crypto::DiffieHellman
|
/third_party/node/doc/api/ |
D | crypto.md | 733 ## Class: `DiffieHellmanGroup` 738 The `DiffieHellmanGroup` class takes a well-known modp group as its argument. 1903 * Returns: {DiffieHellmanGroup} 2304 * Returns: {DiffieHellmanGroup} 2306 Creates a predefined `DiffieHellmanGroup` key exchange object. The
|
D | deprecations.md | 2180 `DiffieHellmanGroup`, `ECDH`, `Hash`, `Hmac`, `Sign`, and `Verify` classes.
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V13.md | 492 …om/nodejs/node/commit/f84b34d42c)] - **crypto**: improve errors in DiffieHellmanGroup (Tobias Nieß…
|
D | CHANGELOG_V14.md | 1139 …ps://github.com/nodejs/node/commit/4c67437c53)] - **doc**: clarify DiffieHellmanGroup class docs (…
|