Hi all,

I'm using CryptoPP in my project, I compiled it with VS 2010 and I'm having 
a segfault creating an HexEncoder.

HexEncoder encoderPublic, encoderPrivate;

the problem is in memcpy from secblock.h

    //! set contents and size
    void Assign(const T *t, size_type len)
    {
        New(len);
        memcpy_s(m_ptr, m_size*sizeof(T), t, len*sizeof(T));
    }


-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to