]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
using cryptopp headers instead of ++
authoranwleung <anwleung@29311d96-e01e-0410-9327-a35deaab8ce9>
Tue, 13 Mar 2007 01:50:09 +0000 (01:50 +0000)
committeranwleung <anwleung@29311d96-e01e-0410-9327-a35deaab8ce9>
Tue, 13 Mar 2007 01:50:09 +0000 (01:50 +0000)
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1224 29311d96-e01e-0410-9327-a35deaab8ce9

branches/aleung/security1/ceph/crypto/CryptoLib.h

index 4df11d8430449fe172e970d43fa19e4a95cd7391..0148c6de56701189129f49ab9f4c38144425f59c 100644 (file)
 #ifndef __CRYPTOLIB_H
 #define __CRYPTOLIB_H
 
-#include<crypto++/cryptlib.h>
+#include<cryptopp/cryptlib.h>
 //one-way functions
-#include<crypto++/sha.h>
-#include<crypto++/md5.h>
-#include<crypto++/iterhash.h>
-#include<crypto++/hex.h>
+#include<cryptopp/sha.h>
+#include<cryptopp/md5.h>
+#include<cryptopp/iterhash.h>
+#include<cryptopp/hex.h>
 //PK signatures
-#include<crypto++/rsa.h>
-#include<crypto++/files.h>
-#include<crypto++/rng.h>
-#include<crypto++/randpool.h>
-#include<crypto++/esign.h>
+#include<cryptopp/rsa.h>
+#include<cryptopp/files.h>
+#include<cryptopp/rng.h>
+#include<cryptopp/randpool.h>
+#include<cryptopp/esign.h>
 //encryption/decryption
-#include<crypto++/modes.h>
-#include<crypto++/rc5.h>
-#include<crypto++/aes.h>
-#include<crypto++/rijndael.h>
+#include<cryptopp/modes.h>
+#include<cryptopp/rc5.h>
+#include<cryptopp/aes.h>
+#include<cryptopp/rijndael.h>
 
 #include<iostream>