]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/md5-apple.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / md5-apple.h
CommitLineData
ef416fc2 1/*
757d2cad 2 * "$Id: md5-apple.h 5232 2006-03-05 17:59:19Z mike $"
ef416fc2 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
30void md5_init(_cups_md5_state_t *pms)
757d2cad 31 { _cupsMD5Init(pms); }
ef416fc2 32void md5_append(_cups_md5_state_t *pms, const unsigned char *data, int nbytes)
757d2cad 33 { _cupsMD5Append(pms, data, nbytes); }
ef416fc2 34void md5_finish(_cups_md5_state_t *pms, unsigned char digest[16])
757d2cad 35 { _cupsMD5Finish(pms, digest); }
ef416fc2 36
37/*
757d2cad 38 * End of "$Id: md5-apple.h 5232 2006-03-05 17:59:19Z mike $".
ef416fc2 39 */