| /src/crypto/dist/ipsec-tools/src/racoon/ |
| isakmp_ident.c | 636 memcpy(iph1->ivm->ive->v, iph1->ivm->iv->v, iph1->ivm->iv->l); 680 msg = oakley_do_decrypt(iph1, msg0, iph1->ivm->iv, iph1->ivm->ive); 770 memcpy(iph1->ivm->iv->v, iph1->ivm->ive->v, iph1->ivm->ive->l); 821 memcpy(iph1->ivm->iv->v, iph1->ivm->ive->v, iph1->ivm->iv->l) [all...] |
| isakmp_cfg.c | 147 struct isakmp_ivm *ivm; local 168 if (iph1->mode_cfg->ivm == NULL || 170 iph1->mode_cfg->ivm = 172 ivm = iph1->mode_cfg->ivm; 174 dmsg = oakley_do_decrypt(iph1, msg, ivm->iv, ivm->ive); 282 oakley_delivm(iph1->mode_cfg->ivm); 283 iph1->mode_cfg->ivm = NULL; 1104 if (ics->ivm != NULL [all...] |
| isakmp_cfg.h | 164 struct isakmp_ivm *ivm; /* XXX Use iph1's ivm? */ member in struct:isakmp_cfg_state
|
| isakmp_inf.c | 143 struct isakmp_ivm *ivm; 145 if (iph1->ivm == NULL) { 146 plog(LLV_ERROR, LOCATION, NULL, "iph1->ivm == NULL\n"); 151 ivm = oakley_newiv2(iph1, ((struct isakmp *)msg0->v)->msgid); 152 if (ivm == NULL) 155 msg = oakley_do_decrypt(iph1, msg0, ivm->iv, ivm->ive); 156 oakley_delivm(ivm); 884 iph2->ivm = oakley_newiv2(iph1, iph2->msgid); 885 if (iph2->ivm == NULL) 142 struct isakmp_ivm *ivm; local [all...] |
| handler.h | 178 struct isakmp_ivm *ivm; /* IVs */ member in struct:ph1handle 344 struct isakmp_ivm *ivm; /* IVs */ member in struct:ph2handle
|
| isakmp_quick.c | 148 iph2->ivm = oakley_newiv2(iph2->ph1, iph2->msgid); 149 if (iph2->ivm == NULL) 421 msg = oakley_do_decrypt(iph2->ph1, msg0, iph2->ivm->iv, iph2->ivm->ive); 838 iph2->sendbuf = oakley_do_encrypt(iph2->ph1, buf, iph2->ivm->ive, iph2->ivm->iv); 935 msg = oakley_do_decrypt(iph2->ph1, msg0, iph2->ivm->iv, iph2->ivm->ive); 1082 msg = oakley_do_decrypt(iph2->ph1, msg0, iph2->ivm->iv, iph2->ivm->ive) [all...] |
| isakmp_agg.c | 1289 iph1->ivm->iv, iph1->ivm->ive); 1422 memcpy(iph1->ivm->iv->v, iph1->ivm->ive->v, iph1->ivm->iv->l);
|
| oakley.c | 2746 /* allocate IVm */ 2788 iph1->ivm = newivm; 2812 len = iph1->ivm->iv->l + sizeof(msgid_t); 2822 memcpy(p, iph1->ivm->iv->v, iph1->ivm->iv->l); 2823 p += iph1->ivm->iv->l; 2831 /* allocate IVm */ 2874 oakley_delivm(struct isakmp_ivm *ivm) 2876 if (ivm == NULL) 2879 if (ivm->iv != NULL [all...] |
| handler.c | 437 if (iph1->ivm) { 438 oakley_delivm(iph1->ivm); 439 iph1->ivm = NULL; 742 if (iph2->ivm) { 743 oakley_delivm(iph2->ivm); 744 iph2->ivm = NULL;
|
| isakmp_base.c | 714 memcpy(iph1->ivm->iv->v, iph1->ivm->ive->v, iph1->ivm->iv->l);
|
| isakmp.c | 666 /* Reinit the IVM if it's still there */ 667 if (iph1->mode_cfg && iph1->mode_cfg->ivm) { 668 oakley_delivm(iph1->mode_cfg->ivm); 669 iph1->mode_cfg->ivm = NULL; 1333 iph2->ivm = oakley_newiv2(iph1, iph2->msgid); 1334 if (iph2->ivm == NULL) {
|