1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Copyright (C) 2005, 2006, 2007, 2008 Simon Josefsson
* Copyright (C) 1998-1999 Brian Bruns
* Copyright (C) 2004 Frediano Ziglio
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <unistd.h>
#include <byteswap.h>
#include "ntlm.h"
#include "md4.h"
#include "des.h"
/* C89 compliant way to cast 'char' to 'unsigned char'. */
static inline unsigned char
to_uchar (char ch)
{
return ch;
}
/*
* The following code is based on some psuedo-C code from ronald@innovation.ch
*/
static void ntlm_encrypt_answer (char *hash,
const char *challenge, char *answer);
static void ntlm_convert_key (char *key_56, gl_des_ctx * ks);
void
ntlm_smb_encrypt (const char *passwd, const uint8 * challenge, uint8 * answer)
{
#define MAX_PW_SZ 14
int len;
int i;
static const char magic[8] =
{ 0x4B, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25 };
gl_des_ctx ks;
char hash[24];
char passwd_up[MAX_PW_SZ];
/* convert password to upper and pad to 14 chars */
memset (passwd_up, 0, MAX_PW_SZ);
len = strlen (passwd);
if (len > MAX_PW_SZ)
len = MAX_PW_SZ;
for (i = 0; i < len; i++)
passwd_up[i] = toupper (passwd[i]);
/* hash the first 7 characters */
ntlm_convert_key (passwd_up, &ks);
gl_des_ecb_encrypt (&ks, magic, hash + 0);
/* hash the second 7 characters */
ntlm_convert_key (passwd_up + 7, &ks);
gl_des_ecb_encrypt (&ks, magic, hash + 8);
memset (hash + 16, 0, 5);
ntlm_encrypt_answer (hash, challenge, answer);
/* with security is best be pedantic */
memset (&ks, 0, sizeof (ks));
memset (hash, 0, sizeof (hash));
memset (passwd_up, 0, sizeof (passwd_up));
}
void
ntlm_smb_nt_encrypt (const char *passwd,
const uint8 * challenge,
uint8 * answer)
{
size_t len, i;
unsigned char hash[24];
unsigned char nt_pw[256];
/* NT resp */
len = strlen (passwd);
if (len > 128)
len = 128;
for (i = 0; i < len; ++i)
{
nt_pw[2 * i] = passwd[i];
nt_pw[2 * i + 1] = 0;
}
md4_buffer (nt_pw, len * 2, hash);
memset (hash + 16, 0, 5);
ntlm_encrypt_answer (hash, challenge, answer);
/* with security is best be pedantic */
memset (hash, 0, sizeof (hash));
memset (nt_pw, 0, sizeof (nt_pw));
}
/*
* takes a 21 byte array and treats it as 3 56-bit DES keys. The
* 8 byte plaintext is encrypted with each key and the resulting 24
* bytes are stored in the results array.
*/
static void
ntlm_encrypt_answer (char *hash, const char *challenge, char *answer)
{
gl_des_ctx ks;
ntlm_convert_key (hash, &ks);
gl_des_ecb_encrypt (&ks, challenge, answer);
ntlm_convert_key (&hash[7], &ks);
gl_des_ecb_encrypt (&ks, challenge, &answer[8]);
ntlm_convert_key (&hash[14], &ks);
gl_des_ecb_encrypt (&ks, challenge, &answer[16]);
memset (&ks, 0, sizeof (ks));
}
/*
* turns a 56 bit key into the 64 bit, and sets the key schedule ks.
*/
static void
ntlm_convert_key (char *key_56, gl_des_ctx * ks)
{
char key[8];
key[0] = to_uchar (key_56[0]);
key[1] = ((to_uchar (key_56[0]) << 7) & 0xFF) | (to_uchar (key_56[1]) >> 1);
key[2] = ((to_uchar (key_56[1]) << 6) & 0xFF) | (to_uchar (key_56[2]) >> 2);
key[3] = ((to_uchar (key_56[2]) << 5) & 0xFF) | (to_uchar (key_56[3]) >> 3);
key[4] = ((to_uchar (key_56[3]) << 4) & 0xFF) | (to_uchar (key_56[4]) >> 4);
key[5] = ((to_uchar (key_56[4]) << 3) & 0xFF) | (to_uchar (key_56[5]) >> 5);
key[6] = ((to_uchar (key_56[5]) << 2) & 0xFF) | (to_uchar (key_56[6]) >> 6);
key[7] = (to_uchar (key_56[6]) << 1) & 0xFF;
gl_des_setkey (ks, key);
memset (&key, 0, sizeof (key));
}
/** \@} */
|