|
shun-iwasawa |
82a8f5 |
/*
|
|
shun-iwasawa |
82a8f5 |
* libjpeg-turbo Modifications:
|
|
shun-iwasawa |
82a8f5 |
* Copyright (C)2018 D. R. Commander. All Rights Reserved.
|
|
shun-iwasawa |
82a8f5 |
*
|
|
shun-iwasawa |
82a8f5 |
* Redistribution and use in source and binary forms, with or without
|
|
shun-iwasawa |
82a8f5 |
* modification, are permitted provided that the following conditions are met:
|
|
shun-iwasawa |
82a8f5 |
*
|
|
shun-iwasawa |
82a8f5 |
* - Redistributions of source code must retain the above copyright notice,
|
|
shun-iwasawa |
82a8f5 |
* this list of conditions and the following disclaimer.
|
|
shun-iwasawa |
82a8f5 |
* - Redistributions in binary form must reproduce the above copyright notice,
|
|
shun-iwasawa |
82a8f5 |
* this list of conditions and the following disclaimer in the documentation
|
|
shun-iwasawa |
82a8f5 |
* and/or other materials provided with the distribution.
|
|
shun-iwasawa |
82a8f5 |
* - Neither the name of the libjpeg-turbo Project nor the names of its
|
|
shun-iwasawa |
82a8f5 |
* contributors may be used to endorse or promote products derived from this
|
|
shun-iwasawa |
82a8f5 |
* software without specific prior written permission.
|
|
shun-iwasawa |
82a8f5 |
*
|
|
shun-iwasawa |
82a8f5 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
|
|
shun-iwasawa |
82a8f5 |
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
shun-iwasawa |
82a8f5 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
shun-iwasawa |
82a8f5 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
|
|
shun-iwasawa |
82a8f5 |
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
shun-iwasawa |
82a8f5 |
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
shun-iwasawa |
82a8f5 |
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
shun-iwasawa |
82a8f5 |
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
shun-iwasawa |
82a8f5 |
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
shun-iwasawa |
82a8f5 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
shun-iwasawa |
82a8f5 |
* POSSIBILITY OF SUCH DAMAGE.
|
|
shun-iwasawa |
82a8f5 |
*/
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
#ifndef MD5_H
|
|
shun-iwasawa |
82a8f5 |
#define MD5_H
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
#include <sys types.h=""></sys>
|
|
shun-iwasawa |
82a8f5 |
#ifdef __amigaos4__
|
|
shun-iwasawa |
82a8f5 |
#include <machine endian.h=""></machine>
|
|
shun-iwasawa |
82a8f5 |
#endif
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
/* On machines where "long" is 64 bits, we need to declare
|
|
shun-iwasawa |
82a8f5 |
uint32 as something guaranteed to be 32 bits. */
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
typedef unsigned int uint32;
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
typedef struct MD5Context {
|
|
shun-iwasawa |
82a8f5 |
uint32 buf[4];
|
|
shun-iwasawa |
82a8f5 |
uint32 bits[2];
|
|
shun-iwasawa |
82a8f5 |
unsigned char in[64];
|
|
shun-iwasawa |
82a8f5 |
} MD5_CTX;
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
extern void MD5Init(struct MD5Context *ctx);
|
|
shun-iwasawa |
82a8f5 |
extern void MD5Update(struct MD5Context *ctx, unsigned char *buf,
|
|
shun-iwasawa |
82a8f5 |
unsigned int len);
|
|
shun-iwasawa |
82a8f5 |
extern void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
|
|
shun-iwasawa |
82a8f5 |
extern void MD5Transform(uint32 buf[4], uint32 in[16]);
|
|
shun-iwasawa |
82a8f5 |
extern char *MD5File(const char *, char *);
|
|
shun-iwasawa |
82a8f5 |
extern char *MD5FileChunk(const char *, char *, off_t, off_t);
|
|
shun-iwasawa |
82a8f5 |
|
|
shun-iwasawa |
82a8f5 |
#endif /* !MD5_H */
|