summaryrefslogtreecommitdiffstats
path: root/konversation/src/blowfish/mc_blowfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/blowfish/mc_blowfish.h')
-rw-r--r--konversation/src/blowfish/mc_blowfish.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/konversation/src/blowfish/mc_blowfish.h b/konversation/src/blowfish/mc_blowfish.h
new file mode 100644
index 0000000..b1a3537
--- /dev/null
+++ b/konversation/src/blowfish/mc_blowfish.h
@@ -0,0 +1,34 @@
+/*
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+*/
+
+/*
+ Copyright (C) 2005 Ismail Donmez <ismail@kde.org>
+*/
+
+// mc_blowfish.h
+//---------------------------------------------------------------------------
+
+
+//---------------------------------------------------------------------------
+// To prevent multiple includes
+#ifndef _mcblowfishh
+#define _mcblowfishh
+//---------------------------------------------------------------------------
+
+
+//---------------------------------------------------------------------------
+// forward declarations
+char *encrypt_string(char *key, char *str);
+char *decrypt_string(char *key, char *str);
+//---------------------------------------------------------------------------
+
+
+
+//---------------------------------------------------------------------------
+// header guard
+#endif
+//---------------------------------------------------------------------------