Sha256: 23f47bda575d7b4e97524227efb85a675ebecdabe73137f0d907a87ce53d63d2

Contents?: true

Size: 714 Bytes

Versions: 136

Compression:

Stored size: 714 Bytes

Contents

/*
 * Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com>
 * All rights reserved
 *
 * "THE BEER-WARE LICENSE" (Revision 42):
 * Sergey Lyubka wrote this file.  As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return.
 */

#ifndef MD5_HEADER_INCLUDED
#define	MD5_HEADER_INCLUDED

typedef struct MD5Context {
	uint32_t	buf[4];
	uint32_t	bits[2];
	unsigned char	in[64];
} MD5_CTX;

extern void MD5Init(MD5_CTX *ctx);
extern void MD5Update(MD5_CTX *ctx, unsigned char const *buf, unsigned len);
extern void MD5Final(unsigned char digest[16], MD5_CTX *ctx);

#endif /*MD5_HEADER_INCLUDED */

Version data entries

136 entries across 136 versions & 2 rubygems

Version Path
rhodes-2.2.3.beta.1 platform/shared/shttpd/src/md5.h
rhodes-2.2.2 platform/shared/shttpd/src/md5.h
rhodes-2.2.2.beta.1 platform/shared/shttpd/src/md5.h
rhodes-2.2.1 platform/shared/shttpd/src/md5.h
rhodes-2.2.1.beta.2 platform/shared/shttpd/src/md5.h
rhodes-2.2.1.beta.1 platform/shared/shttpd/src/md5.h
rhodes-2.2.0 platform/shared/shttpd/src/md5.h
rhodes-2.2.0.beta.3 platform/shared/shttpd/src/md5.h
rhodes-2.2.0.beta.2 platform/shared/shttpd/src/md5.h
rhodes-2.2.0.beta.1 platform/shared/shttpd/src/md5.h
rhodes-2.1.0 platform/shared/shttpd/src/md5.h
rhodes-2.0.3 platform/shared/shttpd/src/md5.h
rhodes-2.0.2 platform/shared/shttpd/src/md5.h
rhodes-2.0.0 platform/shared/shttpd/src/md5.h
rhodes-2.0.0.rc2 platform/shared/shttpd/src/md5.h
rhodes-2.0.0.rc1 platform/shared/shttpd/src/md5.h
rhodes-2.0.0.beta11 platform/shared/shttpd/src/md5.h
rhodes-2.0.0.beta10 platform/shared/shttpd/src/md5.h
rhodes-2.0.0.beta9 platform/shared/shttpd/src/md5.h
rhodes-2.0.0.beta8 platform/shared/shttpd/src/md5.h