/freebsd/crypto/openssl/crypto/rand/ |
H A D | prov_seed.c | 16 unsigned char **pout, int entropy, in ossl_rand_get_entropy() argument 34 *pout = ossl_rand_pool_detach(pool); in ossl_rand_get_entropy() 48 unsigned char **pout, size_t min_len, size_t max_len, in ossl_rand_get_nonce() argument 66 *pout = ossl_rand_pool_detach(pool); in ossl_rand_get_nonce()
|
/freebsd/crypto/openssl/providers/common/ |
H A D | provider_seeding.c | 47 size_t ossl_prov_get_entropy(PROV_CTX *prov_ctx, unsigned char **pout, in ossl_prov_get_entropy() argument 53 pout, entropy, min_len, max_len); in ossl_prov_get_entropy() 63 size_t ossl_prov_get_nonce(PROV_CTX *prov_ctx, unsigned char **pout, in ossl_prov_get_nonce() argument 69 return c_get_nonce(ossl_prov_ctx_get0_handle(prov_ctx), pout, in ossl_prov_get_nonce()
|
/freebsd/crypto/openssl/doc/internal/man3/ |
H A D | ossl_rand_get_entropy.pod | 14 unsigned char **pout, int entropy, 19 unsigned char **pout, size_t min_len, 29 bytes. The buffer address is stored in I<*pout> and the buffer length is 41 most I<max_len> bytes. The buffer address is stored in I<*pout> and the 51 in I<*pout> or 0 on error.
|
/freebsd/crypto/openssl/providers/implementations/include/prov/ |
H A D | seeding.h | 33 size_t ossl_prov_get_entropy(PROV_CTX *prov_ctx, unsigned char **pout, 37 size_t ossl_prov_get_nonce(PROV_CTX *prov_ctx, unsigned char **pout,
|
/freebsd/crypto/openssl/include/crypto/ |
H A D | rand.h | 112 unsigned char **pout, int entropy, 117 unsigned char **pout, size_t min_len, size_t max_len,
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg.c | 144 size_t ossl_drbg_get_seed(void *vdrbg, unsigned char **pout, in ossl_drbg_get_seed() argument 183 *pout = buffer; in ossl_drbg_get_seed() 194 static size_t get_entropy(PROV_DRBG *drbg, unsigned char **pout, int entropy, in get_entropy() argument 203 return ossl_crngt_get_entropy(drbg, pout, entropy, min_len, max_len, in get_entropy() 211 return ossl_prov_get_entropy(drbg->provctx, pout, entropy, min_len, in get_entropy() 246 bytes = drbg->parent_get_seed(drbg->parent, pout, drbg->strength, in get_entropy() 317 static size_t prov_drbg_get_nonce(PROV_DRBG *drbg, unsigned char **pout, in prov_drbg_get_nonce() argument 341 *pout = buf; in prov_drbg_get_nonce() 353 return ossl_prov_get_nonce(drbg->provctx, pout, min_len, max_len, in prov_drbg_get_nonce()
|
H A D | crngt.c | 103 unsigned char **pout, in ossl_crngt_get_entropy() argument 181 *pout = ent; in ossl_crngt_get_entropy()
|
H A D | seed_src.c | 177 static size_t seed_get_seed(void *vseed, unsigned char **pout, in seed_get_seed() argument 206 *pout = p; in seed_get_seed()
|
H A D | test_rng.c | 230 static size_t test_rng_get_seed(void *vtest, unsigned char **pout, in test_rng_get_seed() argument 238 *pout = t->entropy; in test_rng_get_seed()
|
H A D | drbg_local.h | 254 unsigned char **pout,
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
H A D | blake2b-long.c | 13 blake2b_long(void *pout, size_t outlen, const void *in, size_t inlen) in blake2b_long() argument 15 uint8_t *out = (uint8_t *) pout; in blake2b_long()
|
H A D | blake2b-long.h | 6 int blake2b_long(void *pout, size_t outlen, const void *in, size_t inlen);
|
/freebsd/crypto/heimdal/appl/rcp/ |
H A D | rcp.c | 716 int pin[2], pout[2], reserved[2]; in do_cmd() local 729 if (pipe(pout) < 0) { in do_cmd() 745 close(pout[0]); in do_cmd() 747 dup2(pout[1], 1); in do_cmd() 749 close(pout[1]); in do_cmd() 786 close(pout[1]); in do_cmd() 787 *fdin = pout[0]; in do_cmd()
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ecdh_ossl.c | 49 int ossl_ecdh_simple_compute_key(unsigned char **pout, size_t *poutlen, in ossl_ecdh_simple_compute_key() argument 132 *pout = buf; in ossl_ecdh_simple_compute_key()
|
H A D | ec_local.h | 176 int (*ecdh_compute_key)(unsigned char **pout, size_t *poutlen, 646 int (*compute_key)(unsigned char **pout, size_t *poutlen, 669 int ossl_ecdh_compute_key(unsigned char **pout, size_t *poutlen, 671 int ossl_ecdh_simple_compute_key(unsigned char **pout, size_t *poutlen,
|
H A D | ec_kmeth.c | 299 int (**pck)(unsigned char **pout, in EC_KEY_METHOD_get_compute_key() argument
|
/freebsd/crypto/openssh/ |
H A D | sshconnect.c | 200 int pin[2], pout[2]; in ssh_proxy_connect() local 208 if (pipe(pin) == -1 || pipe(pout) == -1) in ssh_proxy_connect() 227 close(pout[0]); in ssh_proxy_connect() 228 if (dup2(pout[1], 1) == -1) in ssh_proxy_connect() 231 close(pout[1]); in ssh_proxy_connect() 263 close(pout[1]); in ssh_proxy_connect() 269 if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL) in ssh_proxy_connect()
|
H A D | session.c | 403 int pin[2], pout[2], perr[2]; in do_exec_no_pty() local 413 if (pipe(pout) == -1) { in do_exec_no_pty() 423 close(pout[0]); in do_exec_no_pty() 424 close(pout[1]); in do_exec_no_pty() 455 close(pout[0]); in do_exec_no_pty() 456 close(pout[1]); in do_exec_no_pty() 487 close(pout[0]); in do_exec_no_pty() 488 if (dup2(pout[1], 1) == -1) in do_exec_no_pty() 490 close(pout[1]); in do_exec_no_pty() 541 close(pout[1]); in do_exec_no_pty() [all …]
|
H A D | scp.c | 285 int pin[2], pout[2]; in do_cmd() local 300 if (pipe(pin) == -1 || pipe(pout) == -1) in do_cmd() 321 dup2(pout[1], STDOUT_FILENO) == -1) { in do_cmd() 327 close(pout[0]); in do_cmd() 328 close(pout[1]); in do_cmd() 360 close(pout[1]); in do_cmd() 362 *fdin = pout[0]; in do_cmd()
|
H A D | sftp.c | 2367 int pin[2], pout[2]; in connect_to_server() local 2369 if ((pipe(pin) == -1) || (pipe(pout) == -1)) in connect_to_server() 2372 *out = pout[1]; in connect_to_server() 2373 c_in = pout[0]; in connect_to_server()
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_kari.c | 210 static int cms_kek_cipher(unsigned char **pout, size_t *poutlen, in cms_kek_cipher() argument 238 *pout = out; in cms_kek_cipher()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | core_dispatch.h | 189 unsigned char **pout, int entropy, 194 unsigned char **pout, size_t min_len,
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-base.pod | 77 unsigned char **pout, int entropy, 82 unsigned char **pout, size_t min_len, size_t max_len, 304 The buffer address is stored in I<*pout> and the buffer length is 316 most I<max_len> bytes. The buffer address is stored in I<*pout> and the
|
/freebsd/usr.sbin/ppp/ |
H A D | command.c | 526 unsigned long long oin, oout, pin, pout; in command_Expand() local 541 pout = bundle->ncp.ipcp.throughput.PacketsOut; in command_Expand() 546 pout += bundle->ncp.ipv6cp.throughput.PacketsOut; in command_Expand() 593 nargv[arg] = substull(nargv[arg], "PACKETSOUT", pout); in command_Expand()
|
/freebsd/share/dict/ |
H A D | web2a | 5545 bib pout 29123 horn pout
|