Home
last modified time | relevance | path

Searched refs:setAutoPadding (Results 1 – 5 of 5) sorted by relevance

/third_party/node/lib/internal/crypto/
Dcipher.js210 Cipher.prototype.setAutoPadding = function setAutoPadding(ap) { method in Cipher
211 if (!this[kHandle].setAutoPadding(!!ap))
257 constructor.prototype.setAutoPadding = Cipher.prototype.setAutoPadding; method in constructor
/third_party/node/test/parallel/
Dtest-crypto-cipher-decipher.js226 assert.strictEqual(decipher.setAutoPadding(), decipher);
239 cipher.setAutoPadding();
255 decipher.setAutoPadding();
276 () => decipher.setAutoPadding(),
Dtest-crypto-padding-aes256.js36 c.setAutoPadding(pad);
42 c.setAutoPadding(pad);
Dtest-crypto-padding.js64 encrypt.setAutoPadding(pad);
72 decrypt.setAutoPadding(pad);
/third_party/node/doc/api/
Dcrypto.md584 ### `cipher.setAutoPadding([autoPadding])`
595 default padding call `cipher.setAutoPadding(false)`.
602 The `cipher.setAutoPadding()` method must be called before
925 ### `decipher.setAutoPadding([autoPadding])`
935 `decipher.setAutoPadding(false)` will disable automatic padding to prevent
941 The `decipher.setAutoPadding()` method must be called before