summaryrefslogtreecommitdiffstats
path: root/kspread/digest.h
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/digest.h')
-rw-r--r--kspread/digest.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/kspread/digest.h b/kspread/digest.h
new file mode 100644
index 00000000..92ba0456
--- /dev/null
+++ b/kspread/digest.h
@@ -0,0 +1,56 @@
+/*************************************************************************
+ * This implementation has been taken from the OpenOffice 1.0 and modified
+ * to use KSpread data types
+ *
+ * $RCSfile$
+ *
+ * $Revision: 466447 $
+ *
+ * last change: $Author: zander $ $Date: 2005-10-02 19:54:10 +0200 (Sun, 02 Oct 2005) $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA
+ *
+ * Contributor(s): Matthias Huetsch <[email protected]>
+ *
+ *
+ ************************************************************************/
+
+#ifndef _DIGEST_
+#define _DIGEST_
+
+#include <qcstring.h>
+#include <qstring.h>
+
+class SHA1
+{
+ public:
+ static bool getHash( QString const & text, QCString & hash );
+};
+
+#endif
+