Re: Having trouble generating an MD5 from a string.

2016-04-06 Thread Leighb2282
Aha! thanks greatly for that link! it held the key to getting it to work 
with the default packages!

I was already using libcrypto++-dev as you suggested BUT looking through 
that Linux_Distributions link I found out that when trying to compile my 
code I was putting the -lcryptopp flag in the incorrect location, moving it 
to the END of the command worked great!

I will still more than likely move to pulling the source and compiling 
myself versus relying on a distros compilation of crypto++ but right now I 
can at least work on learning the intricacies of crypto++ now I have 
something working!

Truly thanks again! 

~Leigh

On Wednesday, April 6, 2016 at 2:38:01 PM UTC-7, Jeffrey Walton wrote:
>
>
>
> On Wednesday, April 6, 2016 at 5:30:59 PM UTC-4, Leighb2282 wrote:
>>
>> Eugh! apparently something isn't right because dropping -std=c++11 didn't 
>> work, the library looks to be in the correct place so I am wondering if it 
>> is am issue between the pre-compiled packages that Ubuntu are providing and 
>> how I am trying to compile my code.
>>
>> I may just look to pulling the crypto++ sources and compiling it myself - 
>> at least then I KNOW exactly what compiler, flags and such were used for 
>> everything.
>>
>
> Yeah, that's normally what I do. But be sure to avoid the BAD states 
> listed at https://cryptopp.com/wiki/Gnumakefile#Compiling_and_Linking. 
> Its a fine line in recommending the building from sources because its easy 
> to get into one of those bad states when you are not aware of them.
>
> I should have sent this last night: 
> https://www.cryptopp.com/wiki/Linux#Linux_Distributions. Often you need 
> more than just the libcryptopp package. You usually want libcryptopp-dev 
> and libcryptopp-dbg, too.
>
> Jeff 
>

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Having trouble generating an MD5 from a string.

2016-04-06 Thread Leighb2282
Eugh! apparently something isn't right because dropping -std=c++11 didn't 
work, the library looks to be in the correct place so I am wondering if it 
is am issue between the pre-compiled packages that Ubuntu are providing and 
how I am trying to compile my code.

I may just look to pulling the crypto++ sources and compiling it myself - 
at least then I KNOW exactly what compiler, flags and such were used for 
everything.

Thanks Again Jeff for all your help! I greatly appreciate it!

~Leigh

On Tuesday, April 5, 2016 at 11:34:56 PM UTC-7, Jeffrey Walton wrote:
>
>
>
> On Wednesday, April 6, 2016 at 1:47:25 AM UTC-4, Leighb2282 wrote:
>>
>> dang, I should have seen that - a latter reference has the ::Weak:: added 
>> to it for the hash line. 
>>
>> Sadly, this seems to make g++ throw out a whole HECK of a lot of errors 
>> which I have not seen before, I don't know if this is due to something 
>> funky with my install of libcrypto++ or something more sinister.
>>
>> Thanks again and sorry for taking so much of your time for something that 
>> i'm guessing should be trivial.
>>
>> ~Leigh
>>
>> $ g++ -std=c++11  -I/usr/local/include -lcrypto++ cpp-md5sum.cpp -o 
>> cpp-md5sum
>> /tmp/cceD1hXk.o: In function `main':
>> cpp-md5sum.cpp:(.text+0x332): undefined reference to 
>> `CryptoPP::StringSinkTemplate::StringSinkTemplate(std::string&)'
>> cpp-md5sum.cpp:(.text+0x344): undefined reference to 
>> `CryptoPP::BufferedTransformation::Attach(CryptoPP::BufferedTransformation*)
>>
>
> It looks like you are not linking to the Crypto++ library, or the symbols 
> are not lining up.
>
> My first impression (since its g++ (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4)) 
> is to drop -std=c++11 since Debian and Ubuntu does not build with that 
> flag. You should always build with the same compiler, flags, and C++ 
> runtimes. Also see 
> https://www.cryptopp.com/wiki/GNUmakefile#Creating_Programs.
>
> If that's not it, then verify the library is called libcrypto++.so and its 
> where you expect it. Maybe something like `ls /usr/lib/libcrypto*` will 
> help identify it.
>
> If interested, you can see what Debian and Ubuntu build with at 
> http://buildd.debian.org/status/logs.php?pkg=libcrypto%2B%2B.
>
> Jeff
>
>  
>

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: secblock.h and cryptopp-authenc.cpp dont compile

2016-04-06 Thread Jeffrey Walton


On Wednesday, April 6, 2016 at 3:19:28 PM UTC-4, Bob Devon wrote:
>
>
> Thanks a lot! works fine... more fun to play now!
>

Very good.

You might want to grab the entire secblock.h file from GitHub and overwrite 
Gentoo's version. There are two other fixes in there that may be helpful to 
you (IIRC). The files are completely compatible, and it does not break ABI. 
It may mess with line numbers of stack dumps when using Gentoo's 
precompiled library.

Jeff

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Having trouble compiling cryptopp with vs 2013 for x86_64

2016-04-06 Thread Jeffrey Walton


On Wednesday, April 6, 2016 at 12:56:13 PM UTC-4, Freddy Martinez wrote:
>
> Hi guys... I have the cryptopp code inside my Qt Project and before I try 
> to compile it with vs 2013, I always compile it with mingw and everything 
> was fine. Now, I had download the Qt 5.5.1 version for vs 2013 and I'm 
> getting this linker error:
>
> gcm.obj : error LNK2019: unresolved external symbol 
> GCM_AuthenticateBlocks_2K referenced in function "protected: virtual 
> unsigned __int64 __cdecl CryptoPP::GCM_Base::AuthenticateBlocks(unsigned 
> char const *,unsigned __int64)" 
> (?AuthenticateBlocks@GCM_Base@CryptoPP@@MEAA_KPEBE_K@Z)
>
> gcm.obj : error LNK2019: unresolved external symbol 
> GCM_AuthenticateBlocks_64K referenced in function "protected: virtual 
> unsigned __int64 __cdecl CryptoPP::GCM_Base::AuthenticateBlocks(unsigned 
> char const *,unsigned __int64)" 
> (?AuthenticateBlocks@GCM_Base@CryptoPP@@MEAA_KPEBE_K@Z)...
>
> sosemanuk.obj : error LNK2019: unresolved external symbol 
> Sosemanuk_OperateKeystream referenced in function "protected: virtual void 
> __cdecl CryptoPP::SosemanukPolicy::OperateKeystream(enum 
> CryptoPP::KeystreamOperation,unsigned char *,unsigned char const *,unsigned 
> __int64)" 
> (?OperateKeystream@SosemanukPolicy@CryptoPP@@MEAAXW4KeystreamOperation@2@PEAEPEBE_K@Z)
>
> ..\..\Nautam\lib\cryptopp.dll : fatal error LNK1120: 11 unresolved 
> externals
>
> jom: 
> C:\Users\freddy\Documents\nautam\build-nautam-kernel-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\cryptopp\Makefile.Debug
>  
> [..\..\Nautam\lib\cryptopp.dll] Error 1120
>
> jom: 
> C:\Users\freddy\Documents\nautam\build-nautam-kernel-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\cryptopp\Makefile
>  
> [debug] Error 2
>
> 13:45:14: The process "C:\Qt\Qt5.5.1\Tools\QtCreator\bin\jom.exe" exited 
> with code 2.
>
> Error while building/deploying project nautam-kernel (kit: Desktop Qt 
> 5.5.1 MSVC2013 64bit)
>
> When executing step "Make"
>
>
> I have search inside the code and I've found this definition:
>
>
> #ifdef CRYPTOPP_X64_MASM_AVAILABLE
>
> extern "C" {
>
> void GCM_AuthenticateBlocks_2K(const byte *data, size_t blocks, word64 
> *hashBuffer, const word16 *reductionTable);
>
> void GCM_AuthenticateBlocks_64K(const byte *data, size_t blocks, word64 
> *hashBuffer);
>
> }
>
> #endif
>
>
> and before of that, in config.h I have found this piece of code:
>
>
> #if !defined(CRYPTOPP_DISABLE_ASM) && defined(_MSC_VER) && defined(_M_X64)
>
>   #define CRYPTOPP_X64_MASM_AVAILABLE
>
> #endif
>
> So, I'm compiling with vs 2013 for 64 bits, so, the 
> CRYPTOPP_X64_MASM_AVAILABLE macro is defined... until this point everything 
> is fine... the problem is that I can't find where is the implementation 
> GCM_AuthenticationBlocks_2K and GCM_AuthenticationBlocks_64K? I have a link 
> error because of that... 
>
>
> can anyone help with it??
>
>
I believe QT should be invoking MASM (ml64.exe) on x64masm.asm 
(http://github.com/weidai11/cryptopp/blob/master/x64masm.asm).

According to the cryptlib.proj, it should be invoked with the following 
defines 
(https://github.com/weidai11/cryptopp/blob/master/cryptlib.vcproj#L8658):

/D_M_X64 /Zi

Another option is to have Qt set CRYPTOPP_DISABLE_ASM to disable all the 
assembly language routines.

Jeff

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: secblock.h and cryptopp-authenc.cpp dont compile

2016-04-06 Thread Bob Devon

Thanks a lot! works fine... more fun to play now!

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: secblock.h and cryptopp-authenc.cpp dont compile

2016-04-06 Thread Jeffrey Walton


> here the compile error:
> g++ -g -O2 -DNDEBUG -I/usr/include/cryptopp cryptopp-authenc.cpp -o test 
> -lcryptopp -lpthread
> In file included from cryptopp-authenc.cpp:20:0:
> /usr/include/cryptopp/secblock.h: In instantiation of 
> ‘CryptoPP::SecBlock CryptoPP::SecBlock::operator+(const 
> CryptoPP::SecBlock&) [with T = unsigned char; A = 
> CryptoPP::AllocatorWithCleanup]’:
> cryptopp-authenc.cpp:156:114:   required from here
> /usr/include/cryptopp/secblock.h:593:6: error: cannot convert 
> ‘CryptoPP::SecBlock::size CryptoPP::AllocatorWithCleanup >’ from type 
> ‘CryptoPP::SecBlock::size_type (CryptoPP::SecBlock char>::)() const {aka long unsigned int (CryptoPP::SecBlock char>::)() const}’ to type ‘bool’
>if(!t.size) return SecBlock(*this);
>   ^
> /usr/include/cryptopp/secblock.h:593:6: error: in argument to unary !
>

Yeah, that's a typo we discovered after releasing 5.6.3. We missed it at 
the time because we did not have a test case for it.

You can change it to the following (from 
https://github.com/weidai11/cryptopp/blob/master/secblock.h#L598):

assert((!m_ptr && !m_size) || (m_ptr && m_size));
assert((!t.m_ptr && !t.m_size) || (t.m_ptr && t.m_size));
if(!t.m_size) return SecBlock(*this);

We are getting ready for a 5.6.4 release to pick-up straggler bugs like 
this (there's been a handful of them), and to clear a potential CVE 
(https://github.com/weidai11/cryptopp/issues/146). I'm waiting to hear back 
if it should be submitted for a CVE assignment.

You can also work from Master by using Wei Dai's github. Master is stable, 
and not experimental:

git clone https://github.com/weidai11/cryptopp.git
cd cryptopp
make static dynamic test
sudo make install

Then, use the Crypto++ library at /usr/local instead of /usr.

Jeff

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


secblock.h and cryptopp-authenc.cpp dont compile

2016-04-06 Thread Bob Devon
I compiled and built Crypto++ Library 5.6.3 no problem ! 

I compiled and ran examples Serpent GCM, Twofish EAX no problem !

but, i failed to compile cryptopp-authenc.cpp

I'm using
g++ (SUSE Linux) 5.2.1 20150721 [gcc-5-branch revision 226027]
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

here the compile error:
g++ -g -O2 -DNDEBUG -I/usr/include/cryptopp cryptopp-authenc.cpp -o test 
-lcryptopp -lpthread
In file included from cryptopp-authenc.cpp:20:0:
/usr/include/cryptopp/secblock.h: In instantiation of 
‘CryptoPP::SecBlock CryptoPP::SecBlock::operator+(const 
CryptoPP::SecBlock&) [with T = unsigned char; A = 
CryptoPP::AllocatorWithCleanup]’:
cryptopp-authenc.cpp:156:114:   required from here
/usr/include/cryptopp/secblock.h:593:6: error: cannot convert 
‘CryptoPP::SecBlock::size >’ from type 
‘CryptoPP::SecBlock::size_type (CryptoPP::SecBlock::)() const {aka long unsigned int (CryptoPP::SecBlock::)() const}’ to type ‘bool’
   if(!t.size) return SecBlock(*this);
  ^
/usr/include/cryptopp/secblock.h:593:6: error: in argument to unary !

Any idea?


-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Having trouble compiling cryptopp with vs 2013 for x86_64

2016-04-06 Thread Freddy Martinez
Hi guys... I have the cryptopp code inside my Qt Project and before I try 
to compile it with vs 2013, I always compile it with mingw and everything 
was fine. Now, I had download the Qt 5.5.1 version for vs 2013 and I'm 
getting this linker error:

gcm.obj : error LNK2019: unresolved external symbol 
GCM_AuthenticateBlocks_2K referenced in function "protected: virtual 
unsigned __int64 __cdecl CryptoPP::GCM_Base::AuthenticateBlocks(unsigned 
char const *,unsigned __int64)" 
(?AuthenticateBlocks@GCM_Base@CryptoPP@@MEAA_KPEBE_K@Z)

gcm.obj : error LNK2019: unresolved external symbol 
GCM_AuthenticateBlocks_64K referenced in function "protected: virtual 
unsigned __int64 __cdecl CryptoPP::GCM_Base::AuthenticateBlocks(unsigned 
char const *,unsigned __int64)" 
(?AuthenticateBlocks@GCM_Base@CryptoPP@@MEAA_KPEBE_K@Z)

integer.obj : error LNK2019: unresolved external symbol Baseline_Add 
referenced in function "int __cdecl CryptoPP::Add(unsigned __int64 
*,unsigned __int64 const *,unsigned __int64 const *,unsigned __int64)" 
(?Add@CryptoPP@@YAHPEA_KPEB_K1_K@Z)

integer.obj : error LNK2019: unresolved external symbol Baseline_Sub 
referenced in function "int __cdecl CryptoPP::Subtract(unsigned __int64 
*,unsigned __int64 const *,unsigned __int64 const *,unsigned __int64)" 
(?Subtract@CryptoPP@@YAHPEA_KPEB_K1_K@Z)

panama.obj : error LNK2019: unresolved external symbol Panama_SSE2_Pull 
referenced in function "protected: virtual void __cdecl 
CryptoPP::PanamaCipherPolicy >::CipherResynchronize(unsigned char *,unsigned char 
const *,unsigned __int64)" 
(?CipherResynchronize@?$PanamaCipherPolicy@U?$EnumToType@W4ByteOrder@CryptoPP@@$00@CryptoPP@@@CryptoPP@@MEAAXPEAEPEBE_K@Z)

rdrand.obj : error LNK2019: unresolved external symbol 
MASM_RRA_GenerateBlock referenced in function "public: virtual void __cdecl 
CryptoPP::RDRAND::GenerateBlock(unsigned char *,unsigned __int64)" 
(?GenerateBlock@RDRAND@CryptoPP@@UEAAXPEAE_K@Z)

rdrand.obj : error LNK2019: unresolved external symbol 
MASM_RSA_GenerateBlock referenced in function "public: virtual void __cdecl 
CryptoPP::RDSEED::GenerateBlock(unsigned char *,unsigned __int64)" 
(?GenerateBlock@RDSEED@CryptoPP@@UEAAXPEAE_K@Z)

rijndael.obj : error LNK2019: unresolved external symbol 
Rijndael_Enc_AdvancedProcessBlocks referenced in function "public: virtual 
unsigned __int64 __cdecl 
CryptoPP::Rijndael::Enc::AdvancedProcessBlocks(unsigned char const 
*,unsigned char const *,unsigned char *,unsigned __int64,unsigned int)const 
" (?AdvancedProcessBlocks@Enc@Rijndael@CryptoPP@@UEBA_KPEBE0PEAE_KI@Z)

salsa.obj : error LNK2019: unresolved external symbol 
Salsa20_OperateKeystream referenced in function "protected: virtual void 
__cdecl CryptoPP::Salsa20_Policy::OperateKeystream(enum 
CryptoPP::KeystreamOperation,unsigned char *,unsigned char const *,unsigned 
__int64)" 
(?OperateKeystream@Salsa20_Policy@CryptoPP@@MEAAXW4KeystreamOperation@2@PEAEPEBE_K@Z)

sha.obj : error LNK2019: unresolved external symbol X86_SHA256_HashBlocks 
referenced in function "public: virtual unsigned __int64 __cdecl 
CryptoPP::SHA256::HashMultipleBlocks(unsigned int const *,unsigned 
__int64)" (?HashMultipleBlocks@SHA256@CryptoPP@@UEAA_KPEBI_K@Z)

sosemanuk.obj : error LNK2019: unresolved external symbol 
Sosemanuk_OperateKeystream referenced in function "protected: virtual void 
__cdecl CryptoPP::SosemanukPolicy::OperateKeystream(enum 
CryptoPP::KeystreamOperation,unsigned char *,unsigned char const *,unsigned 
__int64)" 
(?OperateKeystream@SosemanukPolicy@CryptoPP@@MEAAXW4KeystreamOperation@2@PEAEPEBE_K@Z)

..\..\Nautam\lib\cryptopp.dll : fatal error LNK1120: 11 unresolved externals

jom: 
C:\Users\freddy\Documents\nautam\build-nautam-kernel-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\cryptopp\Makefile.Debug
 
[..\..\Nautam\lib\cryptopp.dll] Error 1120

jom: 
C:\Users\freddy\Documents\nautam\build-nautam-kernel-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\cryptopp\Makefile
 
[debug] Error 2

13:45:14: The process "C:\Qt\Qt5.5.1\Tools\QtCreator\bin\jom.exe" exited 
with code 2.

Error while building/deploying project nautam-kernel (kit: Desktop Qt 5.5.1 
MSVC2013 64bit)

When executing step "Make"


I have search inside the code and I've found this definition:


#ifdef CRYPTOPP_X64_MASM_AVAILABLE

extern "C" {

void GCM_AuthenticateBlocks_2K(const byte *data, size_t blocks, word64 
*hashBuffer, const word16 *reductionTable);

void GCM_AuthenticateBlocks_64K(const byte *data, size_t blocks, word64 
*hashBuffer);

}

#endif


and before of that, in config.h I have found this piece of code:


#if !defined(CRYPTOPP_DISABLE_ASM) && defined(_MSC_VER) && defined(_M_X64)

#define CRYPTOPP_X64_MASM_AVAILABLE

#endif

So, I'm compiling with vs 2013 for 64 bits, so, the CRYPTOPP_X64_MASM_AVAILABLE 
macro is defined... until this point everything is fine... the problem is that 
I can't find where is the implementation GCM_AuthenticationBlocks_2K and 
GCM_AuthenticationBlocks_64K? I have a link error because of that... 



Re: Having trouble generating an MD5 from a string.

2016-04-06 Thread Jeffrey Walton


On Wednesday, April 6, 2016 at 1:47:25 AM UTC-4, Leighb2282 wrote:
>
> dang, I should have seen that - a latter reference has the ::Weak:: added 
> to it for the hash line. 
>
> Sadly, this seems to make g++ throw out a whole HECK of a lot of errors 
> which I have not seen before, I don't know if this is due to something 
> funky with my install of libcrypto++ or something more sinister.
>
> Thanks again and sorry for taking so much of your time for something that 
> i'm guessing should be trivial.
>
> ~Leigh
>
> $ g++ -std=c++11  -I/usr/local/include -lcrypto++ cpp-md5sum.cpp -o 
> cpp-md5sum
> /tmp/cceD1hXk.o: In function `main':
> cpp-md5sum.cpp:(.text+0x332): undefined reference to 
> `CryptoPP::StringSinkTemplate::StringSinkTemplate(std::string&)'
> cpp-md5sum.cpp:(.text+0x344): undefined reference to 
> `CryptoPP::BufferedTransformation::Attach(CryptoPP::BufferedTransformation*)
>

It looks like you are not linking to the Crypto++ library, or the symbols 
are not lining up.

My first impression (since its g++ (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4)) 
is to drop -std=c++11 since Debian and Ubuntu does not build with that 
flag. You should always build with the same compiler, flags, and C++ 
runtimes. Also see 
https://www.cryptopp.com/wiki/GNUmakefile#Creating_Programs.

If that's not it, then verify the library is called libcrypto++.so and its 
where you expect it. Maybe something like `ls /usr/lib/libcrypto*` will 
help identify it.

If interested, you can see what Debian and Ubuntu build with at 
http://buildd.debian.org/status/logs.php?pkg=libcrypto%2B%2B.

Jeff

 

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegroups.com.
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cryptopp-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.