Lines Matching refs:privateDecrypt
75 let decryptedBuffer = crypto.privateDecrypt(rsaKeyPem, encryptedBuffer);
76 const otherDecrypted = crypto.privateDecrypt(rsaKeyPem, otherEncrypted);
80 decryptedBuffer = crypto.privateDecrypt(rsaPkcs8KeyPem, encryptedBuffer);
83 let decryptedBufferWithPassword = crypto.privateDecrypt({
88 const otherDecryptedBufferWithPassword = crypto.privateDecrypt({
97 decryptedBufferWithPassword = crypto.privateDecrypt({
109 decryptedBufferWithPassword = crypto.privateDecrypt({
170 decryptedBuffer = crypto.privateDecrypt(keyPem, encryptedBuffer);
175 decryptedBuffer = crypto.privateDecrypt(keyPem, encryptedBuffer);
184 crypto.privateDecrypt({
225 let decryptedBuffer = crypto.privateDecrypt({
232 decryptedBuffer = crypto.privateDecrypt({
265 const decrypted = crypto.privateDecrypt({
273 const otherDecrypted = crypto.privateDecrypt({
284 for (const fn of [crypto.publicEncrypt, crypto.privateDecrypt]) {