diff options
| author | 2009-11-28 16:48:57 +0000 | |
|---|---|---|
| committer | 2009-11-28 16:48:57 +0000 | |
| commit | eb797e80f3abb40cb29bd8c709fde5788d08da4e (patch) | |
| tree | 8b8210b51260705dd014c7a5bbec25c3fdb0d164 /src/modules | |
| parent | Fix rijndael CMakeLists.txt (hm.. isn't there a lot of duplicated code here n... (diff) | |
| download | KVIrc-eb797e80f3abb40cb29bd8c709fde5788d08da4e.tar.gz KVIrc-eb797e80f3abb40cb29bd8c709fde5788d08da4e.tar.bz2 KVIrc-eb797e80f3abb40cb29bd8c709fde5788d08da4e.zip | |
[KVIrc] (trunk) Change Crypto++ paths in libkvirijndael_cryptopp.{h,cpp}
As reported in #605 for libkvirstr.cpp not all systems have the
»crypto++« include path.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3636 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/rijndael/libkvirijndael_cryptopp.cpp | 12 | ||||
| -rw-r--r-- | src/modules/rijndael/libkvirijndael_cryptopp.h | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/rijndael/libkvirijndael_cryptopp.cpp b/src/modules/rijndael/libkvirijndael_cryptopp.cpp index 91dece084..5d35dbdc1 100644 --- a/src/modules/rijndael/libkvirijndael_cryptopp.cpp +++ b/src/modules/rijndael/libkvirijndael_cryptopp.cpp @@ -25,12 +25,12 @@ #include "libkvirijndael_cryptopp.h" -#include <crypto++/aes.h> -#include <crypto++/blowfish.h> -#include <crypto++/modes.h> -#include <crypto++/base64.h> -#include <crypto++/hex.h> -#include <crypto++/osrng.h> +#include <cryptopp/aes.h> +#include <cryptopp/blowfish.h> +#include <cryptopp/modes.h> +#include <cryptopp/base64.h> +#include <cryptopp/hex.h> +#include <cryptopp/osrng.h> #include <string> #include "kvi_module.h" diff --git a/src/modules/rijndael/libkvirijndael_cryptopp.h b/src/modules/rijndael/libkvirijndael_cryptopp.h index 6a296aaf3..296f19487 100644 --- a/src/modules/rijndael/libkvirijndael_cryptopp.h +++ b/src/modules/rijndael/libkvirijndael_cryptopp.h @@ -31,8 +31,8 @@ #include "kvi_crypt.h" // class definitions for the libcrypto++ case -#include <crypto++/aes.h> -#include <crypto++/blowfish.h> +#include <cryptopp/aes.h> +#include <cryptopp/blowfish.h> #include <string> // The following two defines are to indicate the in-/output encoding (hex |
