Lines Matching defs:tokey
488 XORKEY *tokey = xor_newdata(NULL);
492 if (tokey != NULL && fromkey != NULL) {
497 memcpy(tokey->pubkey, fromkey->pubkey, XOR_KEY_SIZE);
498 tokey->haspubkey = 1;
500 tokey->haspubkey = 0;
505 memcpy(tokey->privkey, fromkey->privkey, XOR_KEY_SIZE);
506 tokey->hasprivkey = 1;
508 tokey->hasprivkey = 0;
513 xor_freedata(tokey);
514 tokey = NULL;
516 return tokey;