Lines Matching defs:DiffieHellman
13 DiffieHellman: _DiffieHellman,
71 function DiffieHellman(sizeOrKey, keyEncoding, generator, genEncoding) {
72 if (!(this instanceof DiffieHellman))
73 return new DiffieHellman(sizeOrKey, keyEncoding, generator, genEncoding);
146 DiffieHellman.prototype.generateKeys =
157 DiffieHellman.prototype.computeSecret =
173 DiffieHellman.prototype.getPrime =
184 DiffieHellman.prototype.getGenerator =
195 DiffieHellman.prototype.getPublicKey =
206 DiffieHellman.prototype.getPrivateKey =
216 DiffieHellman.prototype.setPublicKey = function setPublicKey(key, encoding) {
224 DiffieHellman.prototype.setPrivateKey = function setPrivateKey(key, encoding) {
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;
378 DiffieHellman,