/* * mars-nwe-dosutils - NetWare/DOS utility tools. * * Copyright (C) 2026 Mario Fetka * Copyright (C) 1993,1996 Martin Stover, Marburg, Germany * * 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 * of the License, 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, see . */ /* * Purpose: Public declarations for NetWare password encryption helper routines. * Depends on: nwcrypt.c implementation and login.c caller. */ extern void shuffle(unsigned char *lon, const unsigned char *buf, int buflen, unsigned char *target); extern void nw_encrypt(unsigned char *fra, unsigned char *buf,unsigned char *til); extern void newpassencrypt(unsigned char *old, unsigned char *npwd);