The library implements cryptographic hash functions, public-key cryptography, message authentication codes (MACs), key agreement schemes, elliptic curve cryptography and other cryptographic schemes. Available in http://www.cryptopp.com/, Crypto++ licensed under a Public Domain license.
11
votes
1answer
452 views
Deterministically Generating cryptographically secure keys and IVEC's
Background
I am designing a system which enables the development of dynamic authentication schemes for a user of static web content. The motivation is to pre-generate large amounts of ...
5
votes
1answer
476 views
2
votes
2answers
237 views
How can I work around warning C4505 in third party libraries?
I've got a project that uses Crypto++ for a few hashing functions. Recently, I decided to clean things up a bit and use warning level 4 on MSVC++.
Here's what my source looks like:
#pragma ...
1
vote
1answer
56 views
Subset of cryptopp library for mobile usage (iOS, Android NDK)
I need to use some RSA signature scheme for an cross platform library used in an Android and iPhone project. After looking around I've chosen cryptopp, but it is far too big for static linking. Thus I ...
1
vote
0answers
168 views
Using CryptoPP::Base64Encoder on binary data (ciphertext)
I have an issue using CryptoPP. I'm using AES, and am wanting to represent the binary ciphertext by encoding it to base64.
My problem is that I am randomly getting assertion errors when running the ...
1
vote
1answer
664 views
verify data signature generated with openssl, using crypto++
I have a server, running under python, signing a message sha256 digest using m2crypto
I use a public and private RSA key generated by openssl CLI. On the server side everythgin is OK
Python code :
...
0
votes
1answer
43 views
verify in-app billing signature on server side
I'm working on the security of the in-app billing in my application.
I do the verification on the server, which is in c++.
which ways are possible to verify it in c++?
can I use openssl command?
0
votes
2answers
51 views
Crypto++ convert Adler32 digest (byte array) to uint32_t
I have the following problem: I'm trying to calculate the adler32 checksum of a data block using Crypto++, but I get the wrong checksum after converting the byte[4] array output to a uint32_t.
This ...
0
votes
0answers
56 views
Looking for some guidance on implementing a encrypted version of log4cxx using cryptopp
In a nutshell, we employ log4cxx in our application as our central logging facility, however, for security purposes we require that in deployed(released) systems all logging output generated by the ...
0
votes
1answer
316 views
Using CryptoPP to generate random hashes sha1
I need to generate a random hash using CryptoPP, using SHA1. At the minute I have:
#include <cryptopp/sha.h>
#include <cryptopp/filters.h>
#include <cryptopp/hex.h>
...
...
0
votes
1answer
146 views
Decryption Memory Issue, Crypto++
I've recently been making a server which uses AES256 to encrypt/decrypt data, it took awhile to get it to send correctly. However now I'm having an issue I believe is down to memory, if I send the ...