Lines Matching defs:constructor
252 function addCipherPrototypeFunctions(constructor) {
253 constructor.prototype._transform = Cipher.prototype._transform;
254 constructor.prototype._flush = Cipher.prototype._flush;
255 constructor.prototype.update = Cipher.prototype.update;
256 constructor.prototype.final = Cipher.prototype.final;
257 constructor.prototype.setAutoPadding = Cipher.prototype.setAutoPadding;
258 if (constructor === Cipheriv) {
259 constructor.prototype.getAuthTag = Cipher.prototype.getAuthTag;
261 constructor.prototype.setAuthTag = setAuthTag;
263 constructor.prototype.setAAD = Cipher.prototype.setAAD;