]> git.evergreen-ils.org Git - OpenSRF.git/blob - include/opensrf/sha.h
Add a new function osrfStringArrayTokenize. It parses an input
[OpenSRF.git] / include / opensrf / sha.h
1 // sha.h
2 // Jabber client library
3 //
4 // Original Code Copyright (C) 1999-2001 Dave Smith (dave@jabber.org)
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 // 
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 // 
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 //
20 // Contributor(s): Julian Missig
21 //
22 // This Original Code has been modified by IBM Corporation. Modifications 
23 // made by IBM described herein are Copyright (c) International Business 
24 // Machines Corporation, 2002.
25 //
26 // Date             Modified by     Description of modification
27 // 01/20/2002       IBM Corp.       Updated to libjudo 1.1.1
28 // 2002-03-05       IBM Corp.       Updated to libjudo 1.1.5
29 // 2002-07-09       IBM Corp.       Added Roster::getSession()
30 //
31 // =====================================================================================
32
33 #ifndef SHA_H
34 #define SHA_H
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 //#ifdef WIN32
41      char* shahash(const char* str);
42 //#else
43 //extern "C" {
44 //     char* shahash(const char* str);
45 //}
46 //#endif
47
48 #ifdef __cplusplus
49 }
50 #endif
51
52 #endif