linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #02420
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2288: Added notice about the original C implementation.
------------------------------------------------------------
revno: 2288
committer: ullner@xxxxxxxxx
branch nick: trunk
timestamp: Thu 2010-11-11 23:16:53 +0100
message:
Added notice about the original C implementation.
modified:
dcpp/TigerHash.cpp
dcpp/TigerHash.h
--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk
Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'dcpp/TigerHash.cpp'
--- dcpp/TigerHash.cpp 2010-02-11 21:44:13 +0000
+++ dcpp/TigerHash.cpp 2010-11-11 22:16:53 +0000
@@ -1,4 +1,17 @@
/*
+ * The Tiger algorithm was written by Eli Biham and Ross Anderson and
+ * is available on the official Tiger algorithm page <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
+ * The below Tiger implementation is a C++ version of their original C code.
+ * Permission was granted by Eli Biham to use with the following conditions;
+ * a) This note must be retained.
+ * b) The algorithm must correctly compute Tiger.
+ * c) The algorithm's use must be legal.
+ * d) The algorithm may not be exported to countries banned by law.
+ * e) The authors of the C code are not responsible of this use of the code,
+ * the software or anything else.
+ */
+
+/*
* Copyright (C) 2001-2010 Jacek Sieka, arnetheduck on gmail point com
*
* This program is free software; you can redistribute it and/or modify
=== modified file 'dcpp/TigerHash.h'
--- dcpp/TigerHash.h 2010-02-11 21:44:13 +0000
+++ dcpp/TigerHash.h 2010-11-11 22:16:53 +0000
@@ -1,4 +1,17 @@
/*
+ * The Tiger algorithm was written by Eli Biham and Ross Anderson and
+ * is available on the official Tiger algorithm page <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
+ * The below Tiger implementation is a C++ version of their original C code.
+ * Permission was granted by Eli Biham to use with the following conditions;
+ * a) This note must be retained.
+ * b) The algorithm must correctly compute Tiger.
+ * c) The algorithm's use must be legal.
+ * d) The algorithm may not be exported to countries banned by law.
+ * e) The authors of the C code are not responsible of this use of the code,
+ * the software or anything else.
+ */
+
+/*
* Copyright (C) 2001-2010 Jacek Sieka, arnetheduck on gmail point com
*
* This program is free software; you can redistribute it and/or modify