[cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread Jeffrey Walton
On Saturday, January 13, 2018 at 8:20:36 AM UTC-5, zavodny...@gmail.com wrote: > > Does anybody know why I'm getting this error? > https://pastebin.com/YeGA4dgN > Show the entire build process for your program. Be sure it includes your call to make, the compile commands used to compile

Re: [cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread Marcel Raad
Am 13.01.2018 14:29 schrieb : Using the G++ option *-lcryptopp*. The program will compile if I keep the *CryptoPP::SHA256 sha256Hasher;* and comment the FileSource. OK, now that's strange. What version of Crypto++ is this? Are you building it yourself or are you using

Re: [cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread zavodnyrichard
5.6.3 from Fedora repo. Dne sobota 13. ledna 2018 16:39:15 UTC+1 Marcel Raad napsal(a): > > Am 13.01.2018 14:29 schrieb : > > Using the G++ option *-lcryptopp*. The program will compile if I keep the > *CryptoPP::SHA256 > sha256Hasher;* and comment the FileSource. > > >

Re: [cryptopp-users] Undefined reference to BufferedTransformation

2018-01-13 Thread zavodnyrichard
The same error when trying to hash string using *StringSource*. Dne sobota 13. ledna 2018 14:23:30 UTC+1 Marcel Raad napsal(a): > > Am 13.01.2018 14:20 schrieb : > > Does anybody know why I'm getting this error? > https://pastebin.com/YeGA4dgN > > I just want make

[cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread zavodnyrichard
The entire command to compile my project is *g++ main.cpp -o main -std=c++17 -lcryptopp*. *-Wall* option, show nothing. Dne sobota 13. ledna 2018 16:39:06 UTC+1 Jeffrey Walton napsal(a): > > > > On Saturday, January 13, 2018 at 8:20:36 AM UTC-5, zavodny...@gmail.com > wrote: >> >> Does anybody

[cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread Jeffrey Walton
On Saturday, January 13, 2018 at 11:42:22 AM UTC-5, zavodny...@gmail.com wrote: > > The entire command to compile my project is *g++ main.cpp -o main > -std=c++17 -lcryptopp*. *-Wall* option, show nothing. > When the compile command completes by showing nothing, that means it succeeded.

[cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread zavodnyrichard
Oh sorry... If i add the *-Wall* option it show nothing more. I still getting the same error as I pasted into Pastebin. Dne sobota 13. ledna 2018 20:04:39 UTC+1 Jeffrey Walton napsal(a): > > > > On Saturday, January 13, 2018 at 11:42:22 AM UTC-5, zavodny...@gmail.com > wrote: >> >> The entire

Re: [cryptopp-users] Undefined reference to BufferedTransformation

2018-01-13 Thread Marcel Raad
Am 13.01.2018 14:20 schrieb : Does anybody know why I'm getting this error? https://pastebin.com/YeGA4dgN I just want make fingerprint of a file and put it into string. CryptoPP::SHA256 sha256Hasher; CryptoPP::FileSource createFileFingerprint(filePath.c_str(), true,

[cryptopp-users] Re: Undefined reference to BufferedTransformation

2018-01-13 Thread zavodnyrichard
Using the G++ option *-lcryptopp*. The program will compile if I keep the *CryptoPP::SHA256 sha256Hasher;* and comment the FileSource. Dne sobota 13. ledna 2018 14:20:36 UTC+1 zavodny...@gmail.com napsal(a): > > Does anybody know why I'm getting this error? > https://pastebin.com/YeGA4dgN > >

Re: [cryptopp-users] cryptopp-565 unclean build with VS2015 cryptopp/wait.h

2018-01-13 Thread Marcel Raad
Am 12.01.2018 14:26 schrieb "Jeffrey Walton" : On Friday, January 12, 2018 at 8:03:42 AM UTC-5, Jeffrey Walton wrote: > > On Fri, Jan 12, 2018 at 7:28 AM, Andrew Marlow > wrote: > > Hello everyone, > > > > I just tried to build cryptopp 565 on

[cryptopp-users] Undefined reference to BufferedTransformation

2018-01-13 Thread zavodnyrichard
Does anybody know why I'm getting this error? https://pastebin.com/YeGA4dgN I just want make fingerprint of a file and put it into string. CryptoPP::SHA256 sha256Hasher; CryptoPP::FileSource createFileFingerprint(filePath.c_str(), true, new CryptoPP::HashFilter(sha256Hasher, new