X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/3634fc257bd0667daef14d72005cd87c735bbb24..a85c067ba6c6940512cf57ec213277a370d87e70:/src/src/crypt16.c diff --git a/src/src/crypt16.c b/src/src/crypt16.c index e8a4fe8a7..659bf88bd 100644 --- a/src/src/crypt16.c +++ b/src/src/crypt16.c @@ -2,6 +2,7 @@ * Copyright (c) 2000-2002 * Chris Adams * written for HiWAAY Internet Services + * SPDX-License-Identifier: GPL-2.0-or-later * * 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 @@ -44,31 +45,33 @@ static void dummy(int x) { dummy(x-1); } #include #endif -char *crypt16(char *key, char *salt) +char * +crypt16(char *key, char *salt) { - static char res[25]; - static char s2[3]; - char *p; +static char res[25]; /* Not threadsafe; like crypt() */ +static char s2[3]; +char *p; - /* Clear the string of any previous data */ - memset (res, 0, sizeof (res)); +/* Clear the string of any previous data */ +memset (res, 0, sizeof (res)); - /* crypt the first part */ - p = crypt (key, salt); - strncpy (res, p, 13); +/* crypt the first part */ +if (!(p = crypt (key, salt))) return NULL; +strncpy (res, p, 13); - if (strlen (key) > 8) - { - /* crypt the rest - * the first two characters of the first block (not counting - * the salt) make up the new salt */ - strncpy (s2, &(res[2]), 2); - p = crypt (&(key[8]), s2); - strncpy (&(res[13]), &(p[2]), 11); - memset (s2, 0, sizeof (s2)); - } +if (strlen (key) > 8) + { + /* crypt the rest + * the first two characters of the first block (not counting + * the salt) make up the new salt */ - return (res); + strncpy (s2, res+2, 2); + p = crypt (key+8, s2); + strncpy (res+13, p+2, 11); + memset (s2, 0, sizeof(s2)); + } + +return (res); } #endif