summaryrefslogtreecommitdiffstats
path: root/utests/rc4test.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 02:37:40 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 02:37:40 +0000
commit9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0 (patch)
treed088b5210e77d9fa91d954d8550e00e372b47378 /utests/rc4test.cpp
downloadktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.tar.gz
ktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.zip
Updated to final KDE3 ktorrent release (2.2.6)
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1077377 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'utests/rc4test.cpp')
-rw-r--r--utests/rc4test.cpp95
1 files changed, 95 insertions, 0 deletions
diff --git a/utests/rc4test.cpp b/utests/rc4test.cpp
new file mode 100644
index 0000000..ef5e7c4
--- /dev/null
+++ b/utests/rc4test.cpp
@@ -0,0 +1,95 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Joris Guisson *
+ * joris.guisson@gmail.com *
+ * *
+ * 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. *
+ * *
+ * This program 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 General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+#include <stdio.h>
+#include <mse/rc4encryptor.h>
+#include <util/log.h>
+#include <torrent/globals.h>
+#include "rc4test.h"
+
+using namespace bt;
+using namespace mse;
+
+namespace utest
+{
+
+ RC4Test::RC4Test() : UnitTest("RC4")
+ {}
+
+
+ RC4Test::~RC4Test()
+ {}
+
+
+ bool RC4Test::doTest()
+ {
+ bool ret1 = firstTest();
+ bool ret2 = secondTest();
+ return ret1 && ret2;
+ }
+
+ bool RC4Test::firstTest()
+ {
+ Out() << "First RC4 test" << endl;
+ SHA1Hash a = SHA1Hash::generate((Uint8*)"keyA",4);
+ SHA1Hash b = SHA1Hash::generate((Uint8*)"keyB",4);
+
+ RC4Encryptor as(b,a);
+ RC4Encryptor bs(a,b);
+ char* test = "Dit is een test";
+ int tlen = strlen(test);
+ Uint8* dec = (Uint8*)as.encrypt((Uint8*)test,tlen);
+ bs.decrypt(dec,tlen);
+ if (memcmp(dec,test,tlen) == 0)
+ {
+ Out() << "Test succesfull" << endl;
+ Out() << QString(test) << endl;
+ Out() << QString((char*)dec) << endl;
+ return true;
+ }
+ else
+ {
+ Out() << "Test not succesfull" << endl;
+ Out() << QString(test) << endl;
+ Out() << QString((char*)dec) << endl;
+ return false;
+ }
+ }
+
+ bool RC4Test::secondTest()
+ {
+ Out() << "Second RC4 test" << endl;
+ Uint8 output[100];
+ Uint8 result[] = {0xbb,0xf3,0x16, 0xe8 , 0xd9, 0x40, 0xaf,0x0a ,0xd3 };
+ // RC4( "Key", "Plaintext" ) == "bbf316e8 d940af0a d3"
+ char* key = "Key";
+ char* pt = "Plaintext";
+ RC4 enc((const Uint8*)key,3);
+ enc.process((const Uint8*)pt,output,strlen(pt));
+
+ for (Uint32 i = 0;i < strlen(pt);i++)
+ {
+ if (output[i] != result[i])
+ return false;
+ }
+
+ return true;
+ }
+
+}