Lines Matching defs:tokey
484 XORKEY *tokey = xor_newdata(NULL);
488 if (tokey != NULL && fromkey != NULL) {
493 memcpy(tokey->pubkey, fromkey->pubkey, XOR_KEY_SIZE);
494 tokey->haspubkey = 1;
496 tokey->haspubkey = 0;
501 memcpy(tokey->privkey, fromkey->privkey, XOR_KEY_SIZE);
502 tokey->hasprivkey = 1;
504 tokey->hasprivkey = 0;
509 xor_freedata(tokey);
510 tokey = NULL;
512 return tokey;