/* Taken from logdaemon-5.0, only minimal changes. --marekm */ /************************************************************************ * Copyright 1995 by Wietse Venema. All rights reserved. Individual files * may be covered by other copyrights (as noted in the file itself.) * * This material was originally written and compiled by Wietse Venema at * Eindhoven University of Technology, The Netherlands, in 1990, 1991, * 1992, 1993, 1994 and 1995. * * Redistribution and use in source and binary forms are permitted * provided that this entire copyright notice is duplicated in all such * copies. * * This software is provided "as is" and without any expressed or implied * warranties, including, without limitation, the implied warranties of * merchantibility and fitness for any particular purpose. ************************************************************************/ #include #ifdef DES_RPC #include "rcsid.h" RCSID("$Id: login_desrpc.c,v 1.1 2000/12/17 05:34:11 tom Exp $") /* * Decrypt the user's secret secure RPC key and stores it into the * keyserver. Returns 0 if successful, -1 on failure. * * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands. */ #include #include #include int login_desrpc(passwd) const char *passwd; { char netname[MAXNETNAMELEN + 1]; char secretkey[HEXKEYBYTES + 1]; getnetname(netname); if (getsecretkey(netname, secretkey, passwd) == 0) { return (-1); } if (secretkey[0] == 0) { fprintf(stderr, "Password does not decrypt secret key for %s.\n", netname); return (-1); } if (key_setsecret(secretkey) < 0) { fprintf(stderr, "Could not set %s's secret key: is the keyserv daemon running?\n", netname); return (-1); } return (0); } #endif