Home
last modified time | relevance | path

Searched refs:tmpout (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/test/
Dtest_uu.py179 self.tmpout = os_helper.TESTFN_ASCII + "o"
181 self.addCleanup(os_helper.unlink, self.tmpout)
188 with open(self.tmpout, 'wb') as fout:
191 with open(self.tmpout, 'rb') as fout:
196 uu.encode(self.tmpin, self.tmpout, self.tmpin, mode=0o644)
197 with open(self.tmpout, 'rb') as fout:
203 f.write(encodedtextwrapped(0o644, self.tmpout))
208 with open(self.tmpout, 'rb') as f:
215 f.write(encodedtextwrapped(0o644, self.tmpout))
219 with open(self.tmpout, 'rb') as f:
[all …]
/third_party/node/deps/npm/node_modules/bcrypt-pbkdf/
Dindex.js501 tmpout = new Uint8Array(BCRYPT_HASHSIZE),
527 bcrypt_hash(sha2pass, sha2salt, tmpout);
529 out[i] = tmpout[i];
532 crypto_hash_sha512(sha2salt, tmpout, tmpout.byteLength);
533 bcrypt_hash(sha2pass, sha2salt, tmpout);
535 out[j] ^= tmpout[j];
/third_party/openssl/crypto/cms/
Dcms_smime.c37 BIO *tmpout; in cms_copy_content() local
39 tmpout = cms_get_text_bio(out, flags); in cms_copy_content()
41 if (tmpout == NULL) { in cms_copy_content()
59 if (tmpout != NULL && (BIO_write(tmpout, buf, i) != i)) in cms_copy_content()
64 if (!SMIME_text(tmpout, out)) { in cms_copy_content()
72 if (tmpout != out) in cms_copy_content()
73 BIO_free(tmpout); in cms_copy_content()
314 BIO *cmsbio = NULL, *tmpin = NULL, *tmpout = NULL; in CMS_verify() local
423 tmpout = cms_get_text_bio(out, flags); in CMS_verify()
424 if (tmpout == NULL) { in CMS_verify()
[all …]
/third_party/openssl/crypto/pkcs7/
Dpk7_smime.c224 BIO *tmpin = NULL, *tmpout = NULL; in PKCS7_verify() local
326 if ((tmpout = BIO_new(BIO_s_mem())) == NULL) { in PKCS7_verify()
330 BIO_set_mem_eof_return(tmpout, 0); in PKCS7_verify()
332 tmpout = out; in PKCS7_verify()
343 if (tmpout) in PKCS7_verify()
344 BIO_write(tmpout, buf, i); in PKCS7_verify()
348 if (!SMIME_text(tmpout, out)) { in PKCS7_verify()
350 BIO_free(tmpout); in PKCS7_verify()
353 BIO_free(tmpout); in PKCS7_verify()