Questions tagged [rhino-licensing]

A licensing mechanism that allows for asynchronous cryptography as well as user/machine specific licensing

Storing sensitive data in signed-XML format has been around for quite some time and Rhino Licensing uses the same technique to generate application licensing data. To protect the license file from any manipulation, license file will be signed using a digital signatures. The algorithm used to sign the license file is RSA which is an asymmetric algorithm. This means the key that is used to sign the file has a public and private part and theoretically it would not be possible to manipulate the license file using only one part of the key.

Although mathematically this method is impossible to break, the license file generated by Rhino Licensing can be transferred to other computers so the person who purchases a license may resell the license or release it to others over the internet. To work around this problem, generated license file can be tied to individual's machine by following matters:

Tie the generated license to individual's machine using machine unique identifier such as computer SID, HDD serial number, CPU Identifier, etc. Use float licenses and check the availability of the license on the server at runtime. Rhino Licensing provides necessary infrastructure for you to achieve this. Rhino Licensing can also include custom data in the license file so you have the ability to easily store your customer information in the license file. With all these said, having a licensing scheme on your application does not mean you are completely safe. Hackers and crackers try to reverse engineer your application code to see how the licensing is done, so you make look into other security concerns and it is advised to use an obfuscation tool to make this harder for malicious users.

4 questions
3
votes
1 answer

Rhino License - preventing multiple trial periods

We are seeking advice from anyone that has successfully implemented Rhino Licensing in a .NET desktop application. We have successfully integrated Rhino Licensing into our C# Winforms application as per the instructions found at; Rhino Licensing At…
paligap
  • 942
  • 1
  • 12
  • 28
2
votes
1 answer

Rhino Licensing

I am trying to develop a licensing system using Rhino-Licensing. I downloaded Rhino.Licensing.dll and added reference into my project. I'm trying to run this example. I generated license.xml but there's execption in the app that use this…
lubomir
  • 21
  • 2
0
votes
1 answer

Rhino-Licensing for .NET is throwing an LicenseExpiredException

I'm using Windows 8.1 with latest .NET core, and Visual Studio 2015. I followed the following article from James Gregory to create a Winform app. But when I assert the license, it gives me the following error: Rhino.Licensing.LicenseExpiredException…
nam
  • 21,967
  • 37
  • 158
  • 332
0
votes
2 answers

c# sample code for floating license server using rhino-licensing

I am trying to develop a licensing system using Rhino-Licensing but there is practically nothing available in terms of sample code or instructions for a floating license server and corresponding code on the client side. Could anyone post some…
user467913
  • 19
  • 1
  • 3