Searched refs:sigp (Results 1 - 14 of 14) sorted by relevance

/freebsd-10-stable/crypto/openssh/
H A Dssh-ecdsa.c48 ssh_ecdsa_sign(const struct sshkey *key, u_char **sigp, size_t *lenp, argument
60 if (sigp != NULL)
61 *sigp = NULL;
90 if (sigp != NULL) {
91 if ((*sigp = malloc(len)) == NULL) {
95 memcpy(*sigp, sshbuf_ptr(b), len);
H A Dssh-ed25519.c36 ssh_ed25519_sign(const struct sshkey *key, u_char **sigp, size_t *lenp, argument
47 if (sigp != NULL)
48 *sigp = NULL;
73 if (sigp != NULL) {
74 if ((*sigp = malloc(len)) == NULL) {
78 memcpy(*sigp, sshbuf_ptr(b), len);
H A Dssh-dss.c50 ssh_dss_sign(const struct sshkey *key, u_char **sigp, size_t *lenp, argument
61 if (sigp != NULL)
62 *sigp = NULL;
90 if (sigp != NULL) {
91 if ((*sigp = malloc(SIGBLOB_LEN)) == NULL) {
95 memcpy(*sigp, sigblob, SIGBLOB_LEN);
110 if (sigp != NULL) {
111 if ((*sigp = malloc(len)) == NULL) {
115 memcpy(*sigp, sshbuf_ptr(b), len);
H A Dssh-rsa.c82 ssh_rsa_sign(const struct sshkey *key, u_char **sigp, size_t *lenp, argument
93 if (sigp != NULL)
94 *sigp = NULL;
143 if (sigp != NULL) {
144 if ((*sigp = malloc(len)) == NULL) {
148 memcpy(*sigp, sshbuf_ptr(b), len);
H A Dauthfd.h43 u_char **sigp, size_t *lenp,
H A Dsshkey.h197 u_char **sigp, size_t *lenp, const u_char *data, size_t datalen,
201 int ssh_dss_sign(const struct sshkey *key, u_char **sigp, size_t *lenp,
206 int ssh_ecdsa_sign(const struct sshkey *key, u_char **sigp, size_t *lenp,
211 int ssh_ed25519_sign(const struct sshkey *key, u_char **sigp, size_t *lenp,
H A Dkey.c134 key_sign(const Key *key, u_char **sigp, u_int *lenp, argument
141 if (sigp != NULL)
142 *sigp = NULL;
153 if (sigp != NULL)
154 *sigp = sig;
H A Dauthfd.c445 u_char **sigp, size_t *lenp,
454 *sigp = NULL;
482 if ((r = sshbuf_get_string(msg, sigp, &len)) != 0)
444 ssh_agent_sign(int sock, struct sshkey *key, u_char **sigp, size_t *lenp, const u_char *data, size_t datalen, const char *alg, u_int compat) argument
H A Dsshconnect2.c1013 identity_sign(struct identity *id, u_char **sigp, size_t *lenp, argument
1024 return ssh_agent_sign(id->agent_fd, id->key, sigp, lenp,
1032 return (sshkey_sign(id->key, sigp, lenp, data, datalen, alg,
1037 ret = sshkey_sign(prv, sigp, lenp, data, datalen, alg, compat);
1561 ssh_keysign(struct sshkey *key, u_char **sigp, size_t *lenp, argument
1571 *sigp = NULL;
1662 if ((r = sshbuf_get_string(b, sigp, lenp)) != 0) {
H A Dmonitor_wrap.c220 mm_key_sign(Key *key, u_char **sigp, u_int *lenp, argument
237 *sigp = buffer_get_string(&m, lenp);
H A Dsshkey.c2176 u_char **sigp, size_t *lenp,
2179 if (sigp != NULL)
2180 *sigp = NULL;
2189 return ssh_dss_sign(key, sigp, lenp, data, datalen, compat);
2193 return ssh_ecdsa_sign(key, sigp, lenp, data, datalen, compat);
2197 return ssh_rsa_sign(key, sigp, lenp, data, datalen, alg);
2201 return ssh_ed25519_sign(key, sigp, lenp, data, datalen, compat);
2175 sshkey_sign(const struct sshkey *key, u_char **sigp, size_t *lenp, const u_char *data, size_t datalen, const char *alg, u_int compat) argument
H A Dssh_api.c58 mm_sshkey_sign(struct sshkey *key, u_char **sigp, u_int *lenp, argument
/freebsd-10-stable/contrib/top/
H A Dcommands.c394 struct sigdesc *sigp; local
425 for (sigp = sigdesc; sigp->name != NULL; sigp++)
427 if (strcmp(sigp->name, str + 1) == 0)
429 signum = sigp->number;
435 if (sigp->name == NULL)
/freebsd-10-stable/sys/kern/
H A Dvfs_aio.c2380 struct sigevent *sigp, sig; local
2398 sigp = &sig;
2400 sigp = NULL;
2406 (struct aiocb * const *)uap->acb_list, acb_list, nent, sigp,
2417 struct sigevent *sigp, sig; local
2431 sigp = &sig;
2433 sigp = NULL;
2439 nent, sigp, &aiocb_ops);
2983 struct sigevent *sigp, sig; local
3002 sigp
3028 struct sigevent *sigp, sig; local
[all...]

Completed in 141 milliseconds