2022-08-03 23:46:28 +08:00
|
|
|
/* ppp-md4.c - MD4 Digest implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2022 Eivind Næss. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. The name(s) of the authors of this software must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission.
|
|
|
|
*
|
|
|
|
* THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
|
|
|
|
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Sections of this code holds different copyright information.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
Header file reorganization and cleaning up the public API for pppd version 2.5.0 (#379)
This commit does several things, being a squash-and-merge of a series
of changes; squashed in order not to break bisection.
* Clean up pppd.h, moving declarations that should only be accessed by
pppd code (not by users of pppd) to a new pppd-private.h. Also,
other parts of pppd.h were moved to multilink.h, chap.h, eap.h,
eui64.h, and a new options.h.
* Provide an API for access to data that is needed by plugins (in no
particular order):
- ifname
- ifunit
- remote_name
- remote_number
- peer_authname
- status (now called "code" internally)
- phase
- doing_multilink
- multilink_master
- idle_time_limit
- link_connect_time
- max_connect_time
- link_stats
- ipparam
- hostname
- got_sigterm
- got_sigusr2
- got_sighup
- session_number
- maxoctets
- maxoctets_dir
- debug
- persist
- devnam
- modem
- peer_authname
- sync_serial
* Update the version number to 2.5.0.
* Detect availability of stddef.h and stdarg.h.
* Rename some headers:
- pppcrypt.c/h to crypto_ms.c/h
- ppp-crypto.c/h to crypto.c/h
- ppp-crypto-priv.h to crypto-priv.h
- chap-new.c/h to chap.c/h
* Remove chap-md5.h, crypto-priv.h, eap-tls.h, etc. from the list of
header files to be installed.
* Provide typedefs for the hook functions.
* Provide a typedef for the "phase" variable.
* Provide a typedef for the link statistics array.
* Remove the option_t typedef.
* Rename the following functions by adding a "ppp_" prefix (with the
intention that these are a "public" API for use by plugins):
- option_error
- add_options
- int_option,
- options_from_file
- script_setenv
- bad_ip_adrs,
- netif_get/set_mtu (renamed to ppp_get/set_mtu)
- get_time
- timeout
- untimeout
- safe_fork
- sys_close
- set_session_number
- update_link_stats (renamed to ppp_get_link_stats)
- add_notifier (renamed to ppp_add_notify)
- remove_notifier (renamed to ppp_del_notify)
- generic_[dis]establish_ppp (to ppp_generic_[dis]establish)
* Rename ppp_devnam to ppp_devname.
* Rename ppp_available() to ppp_check_kernel_support().
* Use unsigned char instead of u_char, unsigned short instead of
u_short, uint32_t instead of u_int32_t.
* Add const to some declarations
* Update comments
* Change the interface for notifiers to use an enum to identify which
notifier is to be modified.
* Provide an API for getting the path to a file, with an enum to
identify different types of file.
* Link plugins with the -DPLUGIN flag
[paulus@ozlabs.org - wrote commit message]
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2023-01-21 14:12:58 +08:00
|
|
|
#include "crypto-priv.h"
|
2022-08-03 23:46:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef OPENSSL_HAVE_MD4
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
|
|
|
|
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
|
|
#define EVP_MD_CTX_free EVP_MD_CTX_destroy
|
|
|
|
#define EVP_MD_CTX_new EVP_MD_CTX_create
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static int md4_init(PPP_MD_CTX *ctx)
|
|
|
|
{
|
|
|
|
if (ctx) {
|
|
|
|
EVP_MD_CTX *mctx = EVP_MD_CTX_new();
|
|
|
|
if (mctx) {
|
|
|
|
if (EVP_DigestInit(mctx, EVP_md4())) {
|
|
|
|
ctx->priv = mctx;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
EVP_MD_CTX_free(mctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int md4_update(PPP_MD_CTX *ctx, const void *data, size_t len)
|
|
|
|
{
|
|
|
|
if (EVP_DigestUpdate((EVP_MD_CTX*) ctx->priv, data, len)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int md4_final(PPP_MD_CTX *ctx, unsigned char *out, unsigned int *len)
|
|
|
|
{
|
|
|
|
if (EVP_DigestFinal((EVP_MD_CTX*) ctx->priv, out, len)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void md4_clean(PPP_MD_CTX *ctx)
|
|
|
|
{
|
|
|
|
if (ctx->priv) {
|
|
|
|
EVP_MD_CTX_free(ctx->priv);
|
|
|
|
ctx->priv = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#else // !OPENSSL_HAVE_MD4
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#define FALSE 0
|
|
|
|
|
1996-05-28 08:52:28 +08:00
|
|
|
/*
|
|
|
|
** ********************************************************************
|
|
|
|
** md4.c -- Implementation of MD4 Message Digest Algorithm **
|
|
|
|
** Updated: 2/16/90 by Ronald L. Rivest **
|
|
|
|
** (C) 1990 RSA Data Security, Inc. **
|
|
|
|
** ********************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** To use MD4:
|
|
|
|
** -- Include md4.h in your program
|
|
|
|
** -- Declare an MDstruct MD to hold the state of the digest
|
|
|
|
** computation.
|
|
|
|
** -- Initialize MD using MDbegin(&MD)
|
|
|
|
** -- For each full block (64 bytes) X you wish to process, call
|
1998-02-04 09:40:34 +08:00
|
|
|
** MD4Update(&MD,X,512)
|
1996-05-28 08:52:28 +08:00
|
|
|
** (512 is the number of bits in a full block.)
|
|
|
|
** -- For the last block (less than 64 bytes) you wish to process,
|
1998-02-04 09:40:34 +08:00
|
|
|
** MD4Update(&MD,X,n)
|
1996-05-28 08:52:28 +08:00
|
|
|
** where n is the number of bits in the partial block. A partial
|
|
|
|
** block terminates the computation, so every MD computation
|
|
|
|
** should terminate by processing a partial block, even if it
|
|
|
|
** has n = 0.
|
|
|
|
** -- The message digest is available in MD.buffer[0] ...
|
|
|
|
** MD.buffer[3]. (Least-significant byte of each word
|
|
|
|
** should be output first.)
|
|
|
|
** -- You can print out the digest using MDprint(&MD)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Implementation notes:
|
|
|
|
** This implementation assumes that ints are 32-bit quantities.
|
|
|
|
*/
|
|
|
|
|
2022-08-03 23:46:28 +08:00
|
|
|
/* MDstruct is the data structure for a message digest computation.
|
1996-05-28 08:52:28 +08:00
|
|
|
*/
|
2022-08-03 23:46:28 +08:00
|
|
|
typedef struct {
|
|
|
|
unsigned int buffer[4]; /* Holds 4-word result of MD computation */
|
|
|
|
unsigned char count[8]; /* Number of bits processed so far */
|
|
|
|
unsigned int done; /* Nonzero means MD computation finished */
|
|
|
|
} MD4_CTX;
|
|
|
|
|
1996-05-28 08:52:28 +08:00
|
|
|
|
|
|
|
/* Compile-time declarations of MD4 "magic constants".
|
|
|
|
*/
|
|
|
|
#define I0 0x67452301 /* Initial values for MD buffer */
|
|
|
|
#define I1 0xefcdab89
|
|
|
|
#define I2 0x98badcfe
|
|
|
|
#define I3 0x10325476
|
|
|
|
#define C2 013240474631 /* round 2 constant = sqrt(2) in octal */
|
|
|
|
#define C3 015666365641 /* round 3 constant = sqrt(3) in octal */
|
|
|
|
/* C2 and C3 are from Knuth, The Art of Programming, Volume 2
|
|
|
|
** (Seminumerical Algorithms), Second Edition (1981), Addison-Wesley.
|
|
|
|
** Table 2, page 660.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define fs1 3 /* round 1 shift amounts */
|
|
|
|
#define fs2 7
|
|
|
|
#define fs3 11
|
|
|
|
#define fs4 19
|
|
|
|
#define gs1 3 /* round 2 shift amounts */
|
|
|
|
#define gs2 5
|
|
|
|
#define gs3 9
|
|
|
|
#define gs4 13
|
|
|
|
#define hs1 3 /* round 3 shift amounts */
|
|
|
|
#define hs2 9
|
|
|
|
#define hs3 11
|
|
|
|
#define hs4 15
|
|
|
|
|
|
|
|
/* Compile-time macro declarations for MD4.
|
|
|
|
** Note: The "rot" operator uses the variable "tmp".
|
|
|
|
** It assumes tmp is declared as unsigned int, so that the >>
|
|
|
|
** operator will shift in zeros rather than extending the sign bit.
|
|
|
|
*/
|
|
|
|
#define f(X,Y,Z) ((X&Y) | ((~X)&Z))
|
|
|
|
#define g(X,Y,Z) ((X&Y) | (X&Z) | (Y&Z))
|
|
|
|
#define h(X,Y,Z) (X^Y^Z)
|
|
|
|
#define rot(X,S) (tmp=X,(tmp<<S) | (tmp>>(32-S)))
|
|
|
|
#define ff(A,B,C,D,i,s) A = rot((A + f(B,C,D) + X[i]),s)
|
|
|
|
#define gg(A,B,C,D,i,s) A = rot((A + g(B,C,D) + X[i] + C2),s)
|
|
|
|
#define hh(A,B,C,D,i,s) A = rot((A + h(B,C,D) + X[i] + C3),s)
|
|
|
|
|
1998-02-04 09:40:34 +08:00
|
|
|
/* MD4print(MDp)
|
1996-05-28 08:52:28 +08:00
|
|
|
** Print message digest buffer MDp as 32 hexadecimal digits.
|
|
|
|
** Order is from low-order byte of buffer[0] to high-order byte of
|
|
|
|
** buffer[3].
|
|
|
|
** Each byte is printed with high-order hexadecimal digit first.
|
|
|
|
** This is a user-callable routine.
|
|
|
|
*/
|
2022-08-03 23:46:28 +08:00
|
|
|
static void
|
2020-12-29 13:08:24 +08:00
|
|
|
MD4Print(MD4_CTX *MDp)
|
1998-02-04 09:40:34 +08:00
|
|
|
{
|
|
|
|
int i,j;
|
|
|
|
for (i=0;i<4;i++)
|
|
|
|
for (j=0;j<32;j=j+8)
|
|
|
|
printf("%02x",(MDp->buffer[i]>>j) & 0xFF);
|
1996-05-28 08:52:28 +08:00
|
|
|
}
|
|
|
|
|
1998-02-04 09:40:34 +08:00
|
|
|
/* MD4Init(MDp)
|
1996-05-28 08:52:28 +08:00
|
|
|
** Initialize message digest buffer MDp.
|
|
|
|
** This is a user-callable routine.
|
|
|
|
*/
|
2022-08-03 23:46:28 +08:00
|
|
|
static void
|
2020-12-29 13:08:24 +08:00
|
|
|
MD4Init(MD4_CTX *MDp)
|
1998-02-04 09:40:34 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
MDp->buffer[0] = I0;
|
|
|
|
MDp->buffer[1] = I1;
|
|
|
|
MDp->buffer[2] = I2;
|
|
|
|
MDp->buffer[3] = I3;
|
|
|
|
for (i=0;i<8;i++) MDp->count[i] = 0;
|
|
|
|
MDp->done = 0;
|
1996-05-28 08:52:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* MDblock(MDp,X)
|
|
|
|
** Update message digest buffer MDp->buffer using 16-word data block X.
|
|
|
|
** Assumes all 16 words of X are full of data.
|
|
|
|
** Does not update MDp->count.
|
|
|
|
** This routine is not user-callable.
|
|
|
|
*/
|
|
|
|
static void
|
2020-12-29 13:08:24 +08:00
|
|
|
MDblock(MD4_CTX *MDp, unsigned char *Xb)
|
1996-05-28 08:52:28 +08:00
|
|
|
{
|
1998-02-04 09:40:34 +08:00
|
|
|
register unsigned int tmp, A, B, C, D;
|
|
|
|
unsigned int X[16];
|
|
|
|
int i;
|
1996-05-28 08:52:28 +08:00
|
|
|
|
1998-02-04 09:40:34 +08:00
|
|
|
for (i = 0; i < 16; ++i) {
|
|
|
|
X[i] = Xb[0] + (Xb[1] << 8) + (Xb[2] << 16) + (Xb[3] << 24);
|
|
|
|
Xb += 4;
|
|
|
|
}
|
1996-05-28 08:52:28 +08:00
|
|
|
|
1998-02-04 09:40:34 +08:00
|
|
|
A = MDp->buffer[0];
|
|
|
|
B = MDp->buffer[1];
|
|
|
|
C = MDp->buffer[2];
|
|
|
|
D = MDp->buffer[3];
|
|
|
|
/* Update the message digest buffer */
|
|
|
|
ff(A , B , C , D , 0 , fs1); /* Round 1 */
|
|
|
|
ff(D , A , B , C , 1 , fs2);
|
|
|
|
ff(C , D , A , B , 2 , fs3);
|
|
|
|
ff(B , C , D , A , 3 , fs4);
|
|
|
|
ff(A , B , C , D , 4 , fs1);
|
|
|
|
ff(D , A , B , C , 5 , fs2);
|
|
|
|
ff(C , D , A , B , 6 , fs3);
|
|
|
|
ff(B , C , D , A , 7 , fs4);
|
|
|
|
ff(A , B , C , D , 8 , fs1);
|
|
|
|
ff(D , A , B , C , 9 , fs2);
|
|
|
|
ff(C , D , A , B , 10 , fs3);
|
|
|
|
ff(B , C , D , A , 11 , fs4);
|
|
|
|
ff(A , B , C , D , 12 , fs1);
|
|
|
|
ff(D , A , B , C , 13 , fs2);
|
|
|
|
ff(C , D , A , B , 14 , fs3);
|
|
|
|
ff(B , C , D , A , 15 , fs4);
|
|
|
|
gg(A , B , C , D , 0 , gs1); /* Round 2 */
|
|
|
|
gg(D , A , B , C , 4 , gs2);
|
|
|
|
gg(C , D , A , B , 8 , gs3);
|
|
|
|
gg(B , C , D , A , 12 , gs4);
|
|
|
|
gg(A , B , C , D , 1 , gs1);
|
|
|
|
gg(D , A , B , C , 5 , gs2);
|
|
|
|
gg(C , D , A , B , 9 , gs3);
|
|
|
|
gg(B , C , D , A , 13 , gs4);
|
|
|
|
gg(A , B , C , D , 2 , gs1);
|
|
|
|
gg(D , A , B , C , 6 , gs2);
|
|
|
|
gg(C , D , A , B , 10 , gs3);
|
|
|
|
gg(B , C , D , A , 14 , gs4);
|
|
|
|
gg(A , B , C , D , 3 , gs1);
|
|
|
|
gg(D , A , B , C , 7 , gs2);
|
|
|
|
gg(C , D , A , B , 11 , gs3);
|
|
|
|
gg(B , C , D , A , 15 , gs4);
|
|
|
|
hh(A , B , C , D , 0 , hs1); /* Round 3 */
|
|
|
|
hh(D , A , B , C , 8 , hs2);
|
|
|
|
hh(C , D , A , B , 4 , hs3);
|
|
|
|
hh(B , C , D , A , 12 , hs4);
|
|
|
|
hh(A , B , C , D , 2 , hs1);
|
|
|
|
hh(D , A , B , C , 10 , hs2);
|
|
|
|
hh(C , D , A , B , 6 , hs3);
|
|
|
|
hh(B , C , D , A , 14 , hs4);
|
|
|
|
hh(A , B , C , D , 1 , hs1);
|
|
|
|
hh(D , A , B , C , 9 , hs2);
|
|
|
|
hh(C , D , A , B , 5 , hs3);
|
|
|
|
hh(B , C , D , A , 13 , hs4);
|
|
|
|
hh(A , B , C , D , 3 , hs1);
|
|
|
|
hh(D , A , B , C , 11 , hs2);
|
|
|
|
hh(C , D , A , B , 7 , hs3);
|
|
|
|
hh(B , C , D , A , 15 , hs4);
|
|
|
|
MDp->buffer[0] += A;
|
|
|
|
MDp->buffer[1] += B;
|
|
|
|
MDp->buffer[2] += C;
|
|
|
|
MDp->buffer[3] += D;
|
1996-05-28 08:52:28 +08:00
|
|
|
}
|
|
|
|
|
1998-02-04 09:40:34 +08:00
|
|
|
/* MD4Update(MDp,X,count)
|
|
|
|
** Input: X -- a pointer to an array of unsigned characters.
|
1996-05-28 08:52:28 +08:00
|
|
|
** count -- the number of bits of X to use.
|
|
|
|
** (if not a multiple of 8, uses high bits of last byte.)
|
|
|
|
** Update MDp using the number of bits of X given by count.
|
|
|
|
** This is the basic input routine for an MD4 user.
|
|
|
|
** The routine completes the MD computation when count < 512, so
|
1998-02-04 09:40:34 +08:00
|
|
|
** every MD computation should end with one call to MD4Update with a
|
1996-05-28 08:52:28 +08:00
|
|
|
** count less than 512. A call with count 0 will be ignored if the
|
|
|
|
** MD has already been terminated (done != 0), so an extra call with
|
|
|
|
** count 0 can be given as a "courtesy close" to force termination
|
|
|
|
** if desired.
|
|
|
|
*/
|
2022-08-03 23:46:28 +08:00
|
|
|
static void
|
2020-12-29 13:08:24 +08:00
|
|
|
MD4Update(MD4_CTX *MDp, unsigned char *X, unsigned int count)
|
1998-02-04 09:40:34 +08:00
|
|
|
{
|
|
|
|
unsigned int i, tmp, bit, byte, mask;
|
|
|
|
unsigned char XX[64];
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
/* return with no error if this is a courtesy close with count
|
|
|
|
** zero and MDp->done is true.
|
|
|
|
*/
|
|
|
|
if (count == 0 && MDp->done) return;
|
|
|
|
/* check to see if MD is already done and report error */
|
|
|
|
if (MDp->done)
|
|
|
|
{ printf("\nError: MD4Update MD already done."); return; }
|
|
|
|
|
|
|
|
/* Add count to MDp->count */
|
|
|
|
tmp = count;
|
|
|
|
p = MDp->count;
|
|
|
|
while (tmp)
|
|
|
|
{ tmp += *p;
|
|
|
|
*p++ = tmp;
|
|
|
|
tmp = tmp >> 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process data */
|
|
|
|
if (count == 512)
|
|
|
|
{ /* Full block of data to handle */
|
|
|
|
MDblock(MDp,X);
|
|
|
|
}
|
|
|
|
else if (count > 512) /* Check for count too large */
|
|
|
|
{
|
Fix several issues uncovered by Coverity (#397)
* Fix for coverity issue 436265, we should cap copy to size of destination buffer
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fix for coverity issue 436262, llv6_ntoa() returns a pointer to a buffer that can be up to 64 bytes long; likely not a problem, but this will quiet coverity
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fix for coverity issue 436251, not freeing path in the normal flow of the code
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue #436258, Digest maybe uninitialized in some paths of this code
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fix for coverity issue 436254, forgot to free 's' before returning from the function?
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue #436251, memory leak in put_string() function
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue 436215, should copy at most sizeof(devname) bytes
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue #436203, if no authentication (or no accounting) server was found, we still need to free the allocated local instance
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue #436171, use of uninitialized variable
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Use of signed vs unsigned variable in printf for MD4Update
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue #436182, fixing possible buffer overrun in handling of PW_CLASS attribute
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Fixing coverity issue #436156
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
* Compile errors
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
[paulus@ozlabs.org - Squashed to avoid breaking bisection]
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2023-03-17 07:13:25 +08:00
|
|
|
printf("\nError: MD4Update called with illegal count value %u.",
|
1998-02-04 09:40:34 +08:00
|
|
|
count);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else /* partial block -- must be last block so finish up */
|
|
|
|
{
|
|
|
|
/* Find out how many bytes and residual bits there are */
|
|
|
|
byte = count >> 3;
|
|
|
|
bit = count & 7;
|
|
|
|
/* Copy X into XX since we need to modify it */
|
2006-05-21 15:23:15 +08:00
|
|
|
if (count)
|
|
|
|
for (i=0;i<=byte;i++) XX[i] = X[i];
|
1998-02-04 09:40:34 +08:00
|
|
|
for (i=byte+1;i<64;i++) XX[i] = 0;
|
|
|
|
/* Add padding '1' bit and low-order zeros in last byte */
|
|
|
|
mask = 1 << (7 - bit);
|
|
|
|
XX[byte] = (XX[byte] | mask) & ~( mask - 1);
|
|
|
|
/* If room for bit count, finish up with this block */
|
|
|
|
if (byte <= 55)
|
|
|
|
{
|
|
|
|
for (i=0;i<8;i++) XX[56+i] = MDp->count[i];
|
|
|
|
MDblock(MDp,XX);
|
|
|
|
}
|
|
|
|
else /* need to do two blocks to finish up */
|
|
|
|
{
|
|
|
|
MDblock(MDp,XX);
|
|
|
|
for (i=0;i<56;i++) XX[i] = 0;
|
|
|
|
for (i=0;i<8;i++) XX[56+i] = MDp->count[i];
|
|
|
|
MDblock(MDp,XX);
|
|
|
|
}
|
|
|
|
/* Set flag saying we're done with MD computation */
|
|
|
|
MDp->done = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Finish up MD4 computation and return message digest.
|
1996-05-28 08:52:28 +08:00
|
|
|
*/
|
2022-08-03 23:46:28 +08:00
|
|
|
static void
|
2020-12-29 13:08:24 +08:00
|
|
|
MD4Final(unsigned char *buf, MD4_CTX *MD)
|
1998-02-04 09:40:34 +08:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
unsigned int w;
|
|
|
|
|
|
|
|
MD4Update(MD, NULL, 0);
|
|
|
|
for (i = 0; i < 4; ++i) {
|
|
|
|
w = MD->buffer[i];
|
|
|
|
for (j = 0; j < 4; ++j) {
|
|
|
|
*buf++ = w;
|
|
|
|
w >>= 8;
|
|
|
|
}
|
|
|
|
}
|
1996-05-28 08:52:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** End of md4.c
|
|
|
|
****************************(cut)***********************************/
|
2022-08-03 23:46:28 +08:00
|
|
|
|
|
|
|
static int md4_init(PPP_MD_CTX *ctx)
|
|
|
|
{
|
|
|
|
if (ctx) {
|
|
|
|
MD4_CTX *mctx = calloc(1, sizeof(MD4_CTX));
|
|
|
|
if (mctx) {
|
|
|
|
MD4Init(mctx);
|
|
|
|
ctx->priv = mctx;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int md4_update(PPP_MD_CTX *ctx, const void *data, size_t len)
|
|
|
|
{
|
|
|
|
#if defined(__NetBSD__)
|
|
|
|
/* NetBSD uses the libc md4 routines which take bytes instead of bits */
|
|
|
|
int mdlen = len;
|
|
|
|
#else
|
|
|
|
int mdlen = len * 8;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Internal MD4Update can take at most 64 bytes at a time */
|
|
|
|
while (mdlen > 512) {
|
|
|
|
MD4Update((MD4_CTX*) ctx->priv, (unsigned char*) data, 512);
|
|
|
|
data += 64;
|
|
|
|
mdlen -= 512;
|
|
|
|
}
|
|
|
|
MD4Update((MD4_CTX*) ctx->priv, (unsigned char*) data, mdlen);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int md4_final(PPP_MD_CTX *ctx, unsigned char *out, unsigned int *len)
|
|
|
|
{
|
|
|
|
MD4Final(out, (MD4_CTX*) ctx->priv);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void md4_clean(PPP_MD_CTX *ctx)
|
|
|
|
{
|
|
|
|
if (ctx->priv) {
|
|
|
|
free(ctx->priv);
|
|
|
|
ctx->priv = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static PPP_MD ppp_md4 = {
|
|
|
|
.init_fn = md4_init,
|
|
|
|
.update_fn = md4_update,
|
|
|
|
.final_fn = md4_final,
|
|
|
|
.clean_fn = md4_clean,
|
|
|
|
};
|
|
|
|
|
|
|
|
const PPP_MD *PPP_md4(void)
|
|
|
|
{
|
|
|
|
return &ppp_md4;
|
|
|
|
}
|