2000-11-30 14:03:56 +00:00
|
|
|
/* Declaration of functions and data types used for MD5 sum computing
|
|
|
|
library functions.
|
2014-01-01 07:43:34 +00:00
|
|
|
Copyright (C) 1995-1997, 1999-2001, 2004-2006, 2008-2014 Free Software
|
2011-02-18 08:07:03 +00:00
|
|
|
Foundation, Inc.
|
|
|
|
This file is part of the GNU C Library.
|
2000-11-30 14:03:56 +00:00
|
|
|
|
2011-02-18 08:07:03 +00:00
|
|
|
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 3, or (at your option) any
|
|
|
|
later version.
|
2000-11-30 14:03:56 +00:00
|
|
|
|
2011-02-18 08:07:03 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-11-30 14:03:56 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-02-18 08:07:03 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2000-11-30 14:03:56 +00:00
|
|
|
|
2011-02-18 08:07:03 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
2012-05-26 23:14:36 +00:00
|
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>. */
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
#ifndef _MD5_H
|
|
|
|
#define _MD5_H 1
|
|
|
|
|
|
|
|
#include <stdio.h>
|
Import simpler crypto/md5 module from gnulib, plus stdint module.
* aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
* src/config.in: Regenerate.
* lib/md5.c, lib/md5.h: Regenerate with simpler version, which
assumes C99-style <stdint.h>, supplied by the stdint module.
* lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4: New files,
generated from gnulib.
* src/deps.mk (fns.o): Do not depend on md5.h, fixing a typo in
the earlier patch.
2011-02-19 07:28:29 +00:00
|
|
|
#include <stdint.h>
|
2000-11-30 14:03:56 +00:00
|
|
|
|
Use libcrypto's checksum implementations if available, for speed.
On commonly used platform libcrypto uses architecture-specific
assembly code, which is significantly faster than the C code we
were using. See Pádraig Brady's note in
<http://lists.gnu.org/archive/html/bug-gnulib/2013-12/msg00000.html>.
Merge from gnulib, incorporating:
2013-12-07 md5, sha1, sha256, sha512: add gl_SET_CRYPTO_CHECK_DEFAULT
2013-12-07 md5, sha1, sha256, sha512: add 'auto', and set-default method
2013-12-04 include_next: minimize code duplication
2013-12-03 md5, sha1, sha256, sha512: support mandating use of openssl
2013-12-02 md5, sha1, sha256, sha512: use openssl routines if available
* configure.ac (--without-all): Set with_openssl_default too.
Use gl_SET_CRYPTO_CHECK_DEFAULT to default to 'auto'.
(HAVE_LIB_CRYPTO): New var.
Say whether Emacs is configured to use a crypto library.
* lib/gl_openssl.h, m4/absolute-header.m4, m4/gl-openssl.m4:
New files, copied from gnulib.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* lib/md5.c, lib/md5.h, lib/sha1.c, lib/sha1.h:
* lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
* m4/include_next.m4, m4/md5.m4, m4/sha1.m4, m4/sha256.m4, m4/sha512.m4:
Update from gnulib.
* src/Makefile.in (LIB_CRYPTO): New macro.
(LIBES): Use it.
2013-12-08 08:05:36 +00:00
|
|
|
# if HAVE_OPENSSL_MD5
|
|
|
|
# include <openssl/md5.h>
|
|
|
|
# endif
|
|
|
|
|
2011-02-18 08:07:03 +00:00
|
|
|
#define MD5_DIGEST_SIZE 16
|
|
|
|
#define MD5_BLOCK_SIZE 64
|
|
|
|
|
|
|
|
#ifndef __GNUC_PREREQ
|
|
|
|
# if defined __GNUC__ && defined __GNUC_MINOR__
|
|
|
|
# define __GNUC_PREREQ(maj, min) \
|
|
|
|
((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
|
|
|
|
# else
|
|
|
|
# define __GNUC_PREREQ(maj, min) 0
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __THROW
|
|
|
|
# if defined __cplusplus && __GNUC_PREREQ (2,8)
|
|
|
|
# define __THROW throw ()
|
|
|
|
# else
|
|
|
|
# define __THROW
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _LIBC
|
|
|
|
# define __md5_buffer md5_buffer
|
|
|
|
# define __md5_finish_ctx md5_finish_ctx
|
|
|
|
# define __md5_init_ctx md5_init_ctx
|
|
|
|
# define __md5_process_block md5_process_block
|
|
|
|
# define __md5_process_bytes md5_process_bytes
|
|
|
|
# define __md5_read_ctx md5_read_ctx
|
|
|
|
# define __md5_stream md5_stream
|
2000-11-30 14:03:56 +00:00
|
|
|
#endif
|
|
|
|
|
2011-02-18 08:07:03 +00:00
|
|
|
# ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
# endif
|
|
|
|
|
Use libcrypto's checksum implementations if available, for speed.
On commonly used platform libcrypto uses architecture-specific
assembly code, which is significantly faster than the C code we
were using. See Pádraig Brady's note in
<http://lists.gnu.org/archive/html/bug-gnulib/2013-12/msg00000.html>.
Merge from gnulib, incorporating:
2013-12-07 md5, sha1, sha256, sha512: add gl_SET_CRYPTO_CHECK_DEFAULT
2013-12-07 md5, sha1, sha256, sha512: add 'auto', and set-default method
2013-12-04 include_next: minimize code duplication
2013-12-03 md5, sha1, sha256, sha512: support mandating use of openssl
2013-12-02 md5, sha1, sha256, sha512: use openssl routines if available
* configure.ac (--without-all): Set with_openssl_default too.
Use gl_SET_CRYPTO_CHECK_DEFAULT to default to 'auto'.
(HAVE_LIB_CRYPTO): New var.
Say whether Emacs is configured to use a crypto library.
* lib/gl_openssl.h, m4/absolute-header.m4, m4/gl-openssl.m4:
New files, copied from gnulib.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* lib/md5.c, lib/md5.h, lib/sha1.c, lib/sha1.h:
* lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
* m4/include_next.m4, m4/md5.m4, m4/sha1.m4, m4/sha256.m4, m4/sha512.m4:
Update from gnulib.
* src/Makefile.in (LIB_CRYPTO): New macro.
(LIBES): Use it.
2013-12-08 08:05:36 +00:00
|
|
|
# if HAVE_OPENSSL_MD5
|
|
|
|
# define GL_OPENSSL_NAME 5
|
|
|
|
# include "gl_openssl.h"
|
|
|
|
# else
|
2000-11-30 14:03:56 +00:00
|
|
|
/* Structure to save state of computation between the single steps. */
|
|
|
|
struct md5_ctx
|
|
|
|
{
|
Import simpler crypto/md5 module from gnulib, plus stdint module.
* aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
* src/config.in: Regenerate.
* lib/md5.c, lib/md5.h: Regenerate with simpler version, which
assumes C99-style <stdint.h>, supplied by the stdint module.
* lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4: New files,
generated from gnulib.
* src/deps.mk (fns.o): Do not depend on md5.h, fixing a typo in
the earlier patch.
2011-02-19 07:28:29 +00:00
|
|
|
uint32_t A;
|
|
|
|
uint32_t B;
|
|
|
|
uint32_t C;
|
|
|
|
uint32_t D;
|
|
|
|
|
|
|
|
uint32_t total[2];
|
|
|
|
uint32_t buflen;
|
|
|
|
uint32_t buffer[32];
|
2000-11-30 14:03:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following three functions are build up the low level used in
|
2012-05-26 23:14:36 +00:00
|
|
|
* the functions 'md5_stream' and 'md5_buffer'.
|
2000-11-30 14:03:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Initialize structure containing state of computation.
|
|
|
|
(RFC 1321, 3.3: Step 3) */
|
2011-02-18 08:07:03 +00:00
|
|
|
extern void __md5_init_ctx (struct md5_ctx *ctx) __THROW;
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
/* Starting with the result of former calls of this function (or the
|
|
|
|
initialization function update the context for the next LEN bytes
|
|
|
|
starting at BUFFER.
|
|
|
|
It is necessary that LEN is a multiple of 64!!! */
|
2011-02-18 08:07:03 +00:00
|
|
|
extern void __md5_process_block (const void *buffer, size_t len,
|
|
|
|
struct md5_ctx *ctx) __THROW;
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
/* Starting with the result of former calls of this function (or the
|
|
|
|
initialization function update the context for the next LEN bytes
|
|
|
|
starting at BUFFER.
|
|
|
|
It is NOT required that LEN is a multiple of 64. */
|
2011-02-18 08:07:03 +00:00
|
|
|
extern void __md5_process_bytes (const void *buffer, size_t len,
|
|
|
|
struct md5_ctx *ctx) __THROW;
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
/* Process the remaining bytes in the buffer and put result from CTX
|
|
|
|
in first 16 bytes following RESBUF. The result is always in little
|
|
|
|
endian byte order, so that a byte-wise output yields to the wanted
|
2011-02-18 08:07:03 +00:00
|
|
|
ASCII representation of the message digest. */
|
|
|
|
extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW;
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Put result from CTX in first 16 bytes following RESBUF. The result is
|
|
|
|
always in little endian byte order, so that a byte-wise output yields
|
2011-02-18 08:07:03 +00:00
|
|
|
to the wanted ASCII representation of the message digest. */
|
|
|
|
extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
|
|
|
|
result is always in little endian byte order, so that a byte-wise
|
|
|
|
output yields to the wanted ASCII representation of the message
|
|
|
|
digest. */
|
2011-02-18 08:07:03 +00:00
|
|
|
extern void *__md5_buffer (const char *buffer, size_t len,
|
|
|
|
void *resblock) __THROW;
|
|
|
|
|
Use libcrypto's checksum implementations if available, for speed.
On commonly used platform libcrypto uses architecture-specific
assembly code, which is significantly faster than the C code we
were using. See Pádraig Brady's note in
<http://lists.gnu.org/archive/html/bug-gnulib/2013-12/msg00000.html>.
Merge from gnulib, incorporating:
2013-12-07 md5, sha1, sha256, sha512: add gl_SET_CRYPTO_CHECK_DEFAULT
2013-12-07 md5, sha1, sha256, sha512: add 'auto', and set-default method
2013-12-04 include_next: minimize code duplication
2013-12-03 md5, sha1, sha256, sha512: support mandating use of openssl
2013-12-02 md5, sha1, sha256, sha512: use openssl routines if available
* configure.ac (--without-all): Set with_openssl_default too.
Use gl_SET_CRYPTO_CHECK_DEFAULT to default to 'auto'.
(HAVE_LIB_CRYPTO): New var.
Say whether Emacs is configured to use a crypto library.
* lib/gl_openssl.h, m4/absolute-header.m4, m4/gl-openssl.m4:
New files, copied from gnulib.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* lib/md5.c, lib/md5.h, lib/sha1.c, lib/sha1.h:
* lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
* m4/include_next.m4, m4/md5.m4, m4/sha1.m4, m4/sha256.m4, m4/sha512.m4:
Update from gnulib.
* src/Makefile.in (LIB_CRYPTO): New macro.
(LIBES): Use it.
2013-12-08 08:05:36 +00:00
|
|
|
# endif
|
|
|
|
/* Compute MD5 message digest for bytes read from STREAM. The
|
|
|
|
resulting message digest number will be written into the 16 bytes
|
|
|
|
beginning at RESBLOCK. */
|
|
|
|
extern int __md5_stream (FILE *stream, void *resblock) __THROW;
|
|
|
|
|
|
|
|
|
2011-02-18 08:07:03 +00:00
|
|
|
# ifdef __cplusplus
|
|
|
|
}
|
|
|
|
# endif
|
2000-11-30 14:03:56 +00:00
|
|
|
|
|
|
|
#endif /* md5.h */
|