Searched refs:tmpout (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/test/ |
D | test_uu.py | 179 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/openssl/crypto/cms/ |
D | cms_smime.c | 36 BIO *tmpout; in cms_copy_content() local 38 tmpout = cms_get_text_bio(out, flags); in cms_copy_content() 40 if (tmpout == NULL) { in cms_copy_content() 58 if (tmpout && (BIO_write(tmpout, buf, i) != i)) in cms_copy_content() 63 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() 274 BIO *cmsbio = NULL, *tmpin = NULL, *tmpout = NULL; in CMS_verify() local 360 tmpout = cms_get_text_bio(out, flags); in CMS_verify() 361 if (!tmpout) { in CMS_verify() [all …]
|
/third_party/node/deps/npm/node_modules/bcrypt-pbkdf/ |
D | index.js | 501 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/pkcs7/ |
D | pk7_smime.c | 215 BIO *tmpin = NULL, *tmpout = NULL; in PKCS7_verify() local 316 if ((tmpout = BIO_new(BIO_s_mem())) == NULL) { in PKCS7_verify() 320 BIO_set_mem_eof_return(tmpout, 0); in PKCS7_verify() 322 tmpout = out; in PKCS7_verify() 333 if (tmpout) in PKCS7_verify() 334 BIO_write(tmpout, buf, i); in PKCS7_verify() 338 if (!SMIME_text(tmpout, out)) { in PKCS7_verify() 340 BIO_free(tmpout); in PKCS7_verify() 343 BIO_free(tmpout); in PKCS7_verify()
|
/third_party/openssl/crypto/pkcs12/ |
D | p12_key.c | 86 unsigned char *tmpout = out; in PKCS12_key_gen_uni() local 141 h__dump(tmpout, tmpn); in PKCS12_key_gen_uni()
|