~ubuntu-branches/ubuntu/edgy/gnome-pilot-conduits/edgy

« back to all changes in this revision

Viewing changes to mal-conduit/mal/common/AGMD5.h

  • Committer: Bazaar Package Importer
  • Author(s): Mike Markley
  • Date: 2005-01-17 01:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20050117010821-d8omp6psfwhzdmna
Tags: upstream-2.0.12
ImportĀ upstreamĀ versionĀ 2.0.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The contents of this file are subject to the Mozilla Public License
 
2
 * Version 1.0 (the "License"); you may not use this file except in
 
3
 * compliance with the License. You may obtain a copy of the License at
 
4
 * http://www.mozilla.org/MPL/
 
5
 *
 
6
 * Software distributed under the License is distributed on an "AS IS"
 
7
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 
8
 * License for the specific language governing rights and limitations
 
9
 * under the License.
 
10
 *
 
11
 * The Original Code is Mobile Application Link.
 
12
 *
 
13
 * The Initial Developer of the Original Code is AvantGo, Inc.
 
14
 * Portions created by AvantGo, Inc. are Copyright (C) 1997-1999
 
15
 * AvantGo, Inc. All Rights Reserved.
 
16
 *
 
17
 * Contributor(s):
 
18
 */
 
19
 
 
20
#ifndef _AGMD5_H_
 
21
#define _AGMD5_H_
 
22
 
 
23
#include <AGTypes.h>
 
24
 
 
25
#ifdef __cplusplus
 
26
extern "C" {
 
27
#endif
 
28
 
 
29
/* Takes a buffer and put the MD5 Hash into the
 
30
   digest parameter */
 
31
ExportFunc void AGMd5(uint8 *buf, int32 buflen, uint8 digest[16]);
 
32
 
 
33
#ifdef __cplusplus
 
34
}
 
35
#endif 
 
36
 
 
37
#endif