(name)
| 141 | |
| 142 | |
| 143 | function DiffieHellmanGroup(name) { |
| 144 | if (!(this instanceof DiffieHellmanGroup)) |
| 145 | return new DiffieHellmanGroup(name); |
| 146 | this[kHandle] = new _DiffieHellmanGroup(name); |
| 147 | ObjectDefineProperty(this, 'verifyError', { |
| 148 | __proto__: null, |
| 149 | enumerable: true, |
| 150 | value: this[kHandle].verifyError, |
| 151 | writable: false, |
| 152 | }); |
| 153 | } |
| 154 | |
| 155 | |
| 156 | DiffieHellmanGroup.prototype.generateKeys = |
no outgoing calls
no test coverage detected