![]() |
Peter �rum wrote: > > Part 1.1 Type: Plain Text (text/plain) > Encoding: quoted-printable Please generate a plain DES password using the attached program... ...then use .password mypassword xy -- Keith http://members.ocean.com.au/kapgray
#include <unistd.h> void main(int argc,char *argv[]) { if (argc!=3) { printf("\nUsage: %s word salt\n\n - where word is your password choice\n and salt is 2 characters from A-Z a-z 0-9\n\n", argv[0]); exit(0); } printf("\n%s\n\n",crypt(argv[1],argv[2])); }