/* $Id: sfskeymisc.h,v 1.16 2002/12/04 20:48:49 max Exp $ */ /* * * Copyright (C) 1999 David Mazieres (dm@uun.org) * Copyright (C) 1999 Michael Kaminsky (kaminsky@lcs.mit.edu) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * */ #ifndef _SFSMISC_SFSKEYMISC_H_ #define _SFSMISC_SFSKEYMISC_H_ 1 #include "sfscrypt.h" #include "sfsmisc.h" #include "sfsconnect.h" #include "password.h" #include "srp.h" struct sfskey { ptr key; str keyname; str pwd; u_int cost; sfssrp_parms *srpparms; str esk; sfs_keytype pkt; ptr eksb; bool generated; sfskey () : cost (0), srpparms (NULL), generated (false) {} }; /* sfssrpconnect.C */ void sfs_connect_srp (str &user, srp_client *srpp, sfs_connect_cb cb, str *userp = NULL, str *pwdp = NULL); bool get_srp_params (ptr c, bigint *g, bigint *N); /* sfskeyfetch.C */ bool issrpkey (const str &keyname); bool iskeyremote (str keyname, bool longkeyok = false); bool parse_userhost (str s, str *user = NULL, str *host = NULL); str sfskeyfetch (sfskey *sk, str keyname, ptr *scp = NULL, ptr *cip = NULL, bool prompt = true, bool *warnp = NULL); inline void sfsfetchkey (str keyname, callback, str, ptr >::ref cb) { ptr sk = New refcounted; ptr sc; if (str err = sfskeyfetch (sk, keyname, &sc)) (*cb) (NULL, err, NULL); else (*cb) (sk, NULL, sc); } /* sfskeymisc.C */ extern vec pwd_fds; extern bool opt_pwd_fd; str myusername (); str sfskeysave (str path, const sfskey *sk, bool excl = true); str sfskeygen (sfskey *sk, u_int nbits, str prompt = NULL, bool askname = true, bool nopwd = false, bool nokbdnoise = false, bool encrypt = true, sfs_keytype kt = SFS_RABIN); str sfskeygen_prompt (sfskey *sk, str prompt = NULL, bool askname = true, bool nopwd = false, bool nokbdnoise = false); str defkeyname (str user = NULL); void rndkbd (); str getpwd (str prompt); str getpwdconfirm (str prompt); str getline (str prompt, str def); // SFS Update Options Bit mask values #define SFSUP_KPSRP (1 << 0) /* Don't overwrite SRP information */ #define SFSUP_KPESK (1 << 1) /* Don't overwrite secret key information */ #define SFSUP_KPPK (1 << 2) /* Don't overwrite public key */ #define SFSUP_CLROKH (1 << 3) /* Clear old server keyhalf */ #define SFSUP_CLRNKH (1 << 4) /* Clear new server keyhalf */ #endif /* _SFSMISC_SFSKEYMISC_H_ */