licensepp icon indicating copy to clipboard operation
licensepp copied to clipboard

Software licensing and registration using digital signatures and public cryptography 🪪

Results 11 licensepp issues
Sort by recently updated
recently updated
newest added

`https://github.com/amraynweb/cryptopp-pem` is not available now! Are you have any alternative?

… a private key. Useful for validation-only scenarios.

Any thoughs on trying to build this? ``` cmake -DCMAKE_INSTALL_PREFIX=/opt/licensepp .. -- The C compiler identification is GNU 9.3.0 -- The CXX compiler identification is GNU 9.3.0 -- Check for...

i have been success compiled this library on macOS. but, I have an usage question. Does it can be work like this [behavior](https://www.codeproject.com/articles/8902/a-simple-software-key-useful-to-protect-software-c?fid=130916&df=90&mpp=25&prof=True&sort=Position&view=Normal&spc=Relaxed&fr=26). if so, could you give me a...

I have made a test license which first decodes JSON is. The Signature is an empty string `{"authority_signature":"","expiry_date":1612447411,"issue_date":1580911411` and validating the file fails with: Failed to verify the licensing authority

The links in the README for the installation doesn't work anymore. > ``` > wget https://muflihun.github.io/downloads/cryptocpp.tar.gz > tar xf cryptocpp.tar.gz > cd cryptopp-CRYPTOPP_5_6_5 > wget https://muflihun.github.io/downloads/pem_pack.zip > unzip pem_pack.zip >...

I needed to change the code lines in utils.cc as written below. Are these changes valid? ```c++ # ifdef _MSC_VER --- time_t t; +++ time_t t = currTime->tv_sec; # if...

In the definition of copy constructor and assignment operator of class License, I needed to add code lines for `m_authoritySignature` respectively. Are the following modifications valid? ```c++ License::License(const License& other):...

The FindRipe cmake file in the repo was only looking for the libripe.dylib file. I had to add the libripe.so filename to be able to compile in Ubuntu. I am...