Home | History | Annotate | Download | only in racoon

Lines Matching full:psk

504 			vchar_t *psk;
522 if ((psk = getpsk(bufs[0], keylen)) == NULL) {
527 reply->bufs.buflen[0] = psk->l;
528 reply->hdr.ac_len = sizeof(*reply) + psk->l;
537 memcpy(reply + 1, psk->v, psk->l);
538 vfree(psk);
1050 vchar_t *psk;
1088 if ((psk = vmalloc(len - sizeof(*msg))) == NULL)
1091 memcpy(psk->v, msg + 1, psk->l);
1093 return psk;