Lines Matching defs:remote_name
699 * Encrypt the key using the public key associated with remote_name and the
703 pk_encrypt(uid, remote_name, remote_key, key)
705 char *remote_name;
709 return (pk_crypt(uid, remote_name, remote_key, key, DES_ENCRYPT));
713 * Encrypt the key using the public key associated with remote_name and the
727 * Decrypt the key using the public key associated with remote_name and the
731 pk_decrypt(uid, remote_name, remote_key, key)
733 char *remote_name;
737 return (pk_crypt(uid, remote_name, remote_key, key, DES_DECRYPT));
741 * Decrypt the key using the public key associated with remote_name and the
1274 pk_crypt(uid, remote_name, remote_key, key, mode)
1276 char *remote_name;
1303 if (!getpublickey(remote_name, xpublic)) {