Searched refs:tmpout (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dbcrypt_pbkdf.c112 u_int8_t tmpout[BCRYPT_HASHSIZE]; local
143 bcrypt_hash(sha2pass, sha2salt, tmpout);
144 memcpy(out, tmpout, sizeof(out));
148 crypto_hash_sha512(sha2salt, tmpout, sizeof(tmpout));
149 bcrypt_hash(sha2pass, sha2salt, tmpout);
151 out[j] ^= tmpout[j];
/freebsd-10.1-release/crypto/openssl/crypto/pkcs7/
H A Dpk7_smime.c260 BIO *tmpin, *tmpout; local
360 if (!(tmpout = BIO_new(BIO_s_mem()))) {
364 BIO_set_mem_eof_return(tmpout, 0);
366 tmpout = out;
373 if (tmpout)
374 BIO_write(tmpout, buf, i);
378 if (!SMIME_text(tmpout, out)) {
380 BIO_free(tmpout);
383 BIO_free(tmpout);
/freebsd-10.1-release/crypto/openssl/crypto/cms/
H A Dcms_smime.c67 BIO *tmpout = NULL; local
70 tmpout = BIO_new(BIO_s_null());
72 tmpout = BIO_new(BIO_s_mem());
73 BIO_set_mem_eof_return(tmpout, 0);
75 tmpout = out;
77 if (!tmpout) {
95 if (tmpout && (BIO_write(tmpout, buf, i) != i))
100 if (!SMIME_text(tmpout, out)) {
109 if (tmpout
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/pkcs12/
H A Dp12_key.c117 unsigned char *tmpout = out; local
178 h__dump(tmpout, tmpn);
/freebsd-10.1-release/sys/kern/
H A Dkern_sysctl.c961 int tmpout, error = 0; local
967 tmpout = *(int *)arg1;
969 tmpout = arg2;
970 error = SYSCTL_OUT(req, &tmpout, sizeof(int));
1065 uint64_t tmpout; local
1071 tmpout = *(uint64_t *)arg1;
1073 tmpout = arg2;
1074 error = SYSCTL_OUT(req, &tmpout, sizeof(uint64_t));

Completed in 219 milliseconds