]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/md5-apple.h
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / cups / md5-apple.h
1 /*
2 * "$Id: md5-apple.h 177 2006-06-21 00:20:03Z jlovell $"
3 *
4 * MD5 MacOS X compatibility header for the Common UNIX Printing
5 * System (CUPS).
6 *
7 * This file just defines aliases to the (private) CUPS MD5 functions.
8 *
9 * Copyright 1997-2005 by Easy Software Products.
10 *
11 * These coded instructions, statements, and computer programs are the
12 * property of Easy Software Products and are protected by Federal
13 * copyright law. Distribution and use rights are outlined in the file
14 * "LICENSE.txt" which should have been included with this file. If this
15 * file is missing or damaged please contact Easy Software Products
16 * at:
17 *
18 * Attn: CUPS Licensing Information
19 * Easy Software Products
20 * 44141 Airport View Drive, Suite 204
21 * Hollywood, Maryland 20636 USA
22 *
23 * Voice: (301) 373-9600
24 * EMail: cups-info@cups.org
25 * WWW: http://www.cups.org
26 *
27 * This file is subject to the Apple OS-Developed Software exception.
28 */
29
30 void md5_init(_cups_md5_state_t *pms)
31 { _cupsMD5Init(pms); }
32 void md5_append(_cups_md5_state_t *pms, const unsigned char *data, int nbytes)
33 { _cupsMD5Append(pms, data, nbytes); }
34 void md5_finish(_cups_md5_state_t *pms, unsigned char digest[16])
35 { _cupsMD5Finish(pms, digest); }
36
37 /*
38 * End of "$Id: md5-apple.h 177 2006-06-21 00:20:03Z jlovell $".
39 */