Lines Matching refs:passphrase
129 passphrase
131 return this[kHandle].export(format, type, cipher, passphrase);
208 let cipher, passphrase;
210 ({ cipher, passphrase } = enc);
222 } else if (passphrase !== undefined) {
227 if ((isInput && passphrase !== undefined &&
228 !isStringOrBuffer(passphrase)) ||
229 (!isInput && cipher != null && !isStringOrBuffer(passphrase))) {
231 passphrase);
235 return { format, type, cipher, passphrase };
348 const { format, type, data, passphrase } =
351 handle.init(kKeyTypePrivate, data, format, type, passphrase);