Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
12answers
35k views

How can I create a Product Key for my C# App [closed]

How can I create a Product Key for my C# Application? I need to create a product (or license) key that I update annually. Additionally I need to create one for trial versions. Thanks! Related: ...
18
votes
6answers
1k views

What off-the-shelf licensing system will meet my needs? [closed]

I'm looking for an off-the-shelf license system for desktop software. After some research on the net -- and of course here on StackOverflow -- I haven't found one the suits our needs. I have a ...
15
votes
2answers
3k views

Web-based license activation

I have an existing app that has a free trail, and the same code/download can also be "upgraded" to a full-featured application by giving it a "license key". This is done with some magic and the ...
8
votes
3answers
2k views

Development/runtime Licensing mechanism for a C# class library?

I'm developing a .Net class library (a data provider) and I'm starting to think about how I would handle licensing the library to prospective purchasers. By licensing, I mean the mechanics of trying ...
7
votes
3answers
917 views

Developing licenses in C# - where do I start?

I'm interested to find out whether there are any standards or resources that you can recommend for developing license models in C#? Thank you
6
votes
4answers
280 views

Limiting Starts or Run Time for Evaluation Software in C# and Windows

Are there any good ways to limit the number of times an application can start or limit how long it can be used for under Windows 7 and using C#? As far as I can see the registry can be easily edited, ...
6
votes
2answers
2k views

License key library for C# windows application that is open source / free

Any recommendations for an open source (free) C# library/application for a C# Windows Application that could be used for: (a) creating license/product keys and (b) has library that can be used within ...
6
votes
5answers
1k views

Tips for securing application with a licence key system?

I've written an application, and would like to include a licence key system. We do have some requirements, but would like to know what tips you guys have as well. The main purpose of the system is to ...
6
votes
9answers
4k views

What is the difference between encrypting and signing in asymmetric encryption?

What is the difference between encrypting some data vs signing some data (using RSA)? Does it simply reverse the role of the public-private keys? For example, I want to use my private key to ...
5
votes
2answers
209 views

What open source license verification frameworks are there?

Are there any open source libraries for license key generation and verifications for .NET? If so can you name it or link to it?
5
votes
5answers
2k views

Licensing System for .NET

I'm a (currently a) freeware developer. I've listed a few apps on CodePlex, but have yet to have someone contribute any significant amount of source code, and would like to start charging around $5 ...
5
votes
2answers
262 views

Is there a way to check if an app signature is debug or published?

I am currently developing RPC services for developers to use, but would like to make sure that I can distinguish between another app's debug key and their public key. Is there a way to check another ...
5
votes
6answers
384 views

License scheme, spoof-safe and revoke capabilities

this is my first question so please be gentle... I am working on a software which I would like to protect using some kind of licensing scheme. A basic scheme would be to generate some "unique" key ...
5
votes
4answers
3k views

What's a good approach for developing a simple serial number generator/verifier?

I'm working on an app I'd like to sell some day -- sooner rather than later! I'd like to develop a reasonably simple serial number scheme to protect it. A simple number/letter combination not more ...
4
votes
2answers
765 views

PHP license key generator

I'm looking for a way to generate license keys by a PHP script and then transfer its to my application (Air, AS3), and in this application to read the data correctly. For example, here is the code: ...
4
votes
1answer
274 views

Is it a good idea to license my app on the Android Licensing Service?

We are going to make the app available for .99 on the market, but is licensing it a must? We are worried about the license query bugging the user/always requiring network access. Should we ...
3
votes
4answers
365 views

Software License

I have built a C# based desktop software and now I want to sell that. I give the setup as a installer file. I am a bit clueless about how should I go about protecting it via keys. Can anyone please ...
3
votes
3answers
84 views

What is GPL and what are its different versions?

I have been building a code and I was thinking that what to keep the license of my code. And as it is a free and home build so to think GPL is good for it. But the think is don't have any knowledge ...
3
votes
2answers
154 views

Do I need to purchase a license when I will be creating a website/webapp using mono?

I used asp.net in a project in an old company. The vs was licensed etc. Right now, I am planning to use mono since my new company is using linux based stuff and I heard that mono uses the .net ...
3
votes
4answers
1k views

Generate reasonable length license key with asymmetric encryption?

I've been looking at this all day. I probably should have walked away from it hours ago; I might be missing something obvious at this point. Short version: Is there a way to generate and boil down an ...
3
votes
4answers
995 views

Generate key for a software developed using vb.net

Hai guys, I ve developed a salary calculating software using vb.net.... Its working fine and i ve converted it to an exe file... My drawback is it can be copied and pasted in another system ...
2
votes
2answers
148 views

USB software protection dongle for Java with an SDK which is cross-platform “for real”. Does it exist?

What I'd like to ask is if anybody knows about an hardware USB-dongle for software protection which offers a very complete out-of-the-box API support for cross-platform Java deployments. Its SDK ...
2
votes
1answer
96 views

How to use public encryption to manage licensing on android applications?

I don't want to publish my app on Android Market, but i would create a license key from my website based on the MAC address of the user device. It should include also expiration date. Once the user ...
2
votes
1answer
75 views

When is LICENSED_OLD_KEY returned from server?

The documentation for application licensing describes LICENSED_OLD_KEY as meaning: The application is licensed to the user, but there is an updated application version available that is signed ...
2
votes
3answers
215 views

Creating a by site license (Algorithm)

I would like to provide as service, XML feeds to website owners. The XML file itself will be provided via a webservice (.asmx) The problem is that the client may distribute the XML feed link, freely. ...
2
votes
2answers
226 views

Android Offload license validation to a trusted server

I've been reading about LVL and have implemented it in my app before with a splash screen checking the license.. but I'm sure you could've guessed it was easily cracked. I'm not trying to secure my ...
2
votes
1answer
603 views

How to create a license key as a downloadable, and check for it on Android

I'm sure this is fairly basic, but I don't know quite what to search on to get a concise tutorial. I want to create an app and make it downloadable on the Android Market for free. Then, I want to ...
2
votes
1answer
261 views

Enable/disable code access through license key - Application versioning

I have written a POS application, and now i want to create different versions of it. Something like a basic version, a premium version and a Full version. So if a client pays more they get more ...
2
votes
4answers
523 views

How to prevent a file from being tampered with

I want to store confidential data in a digitally signed file, so that I know when its contents have been tampered with. My initial thought is that the data will be stored in NVPs (name value pairs), ...
2
votes
7answers
578 views

Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?

Signing an assembly in .NET involves a public/private key pair. As far as I can tell from what I've read .NET uses the RSA algorithm and the private key to sign the assembly, checking it with the ...
2
votes
2answers
395 views

Creating mac software activation

I am just about done writing a killer application for the mac, however I would like to charge money for this one, as there isn't a lot of applications out there like this one. So I was thinking of ...
2
votes
5answers
1k views

How do you manage software serial keys, licenses, etc?

My company is trying to find a tool that will track serial keys for software we have purchased (such as Office), as well as software that we write and sell. We want software that will allows us to ...
1
vote
1answer
36 views

Generating simple licences with built-in expiration dates in XML - am I doing this right?

I am currently developing simple apps (in Actionsript 3 if that's relevant), and I wanted to build in a simple registration system, based on an XML file (which would be generated by a PHP script) ...
1
vote
3answers
82 views

Pasting of serialnumber over multiple textfields

In my application users can upgrade their product (from trial to full) using a 32 characters serialnumber. To make it as user friendly as possible for my (paying) customers I would like to be able to ...
1
vote
1answer
64 views

BizTalk Server 2010 - Can you change the license key?

Is there a straight forward way to change the license key for BizTalk? I am speaking specifically about 2010 but info about other versions is welcome as well, if applicable. The only thing I can ...
1
vote
1answer
151 views

Android LVL (Licensing service): why do I get always the same test response?

I just implemented LVL in my app. I first set up the test response to "LICENSED" in my developper account settings => everything works properly ; I receive this answer. When I change the test ...
1
vote
3answers
140 views

creating a thing like key activation or license for web applications in PHP?

i am here again i wanna to create a script using PHP and sell it,now how can i make a system like key activation in windows apps that protect my script? or a license system. plz help perfect. ...
1
vote
1answer
190 views

Protect wordpress theme with license key validation

I'm planning to develop some professional Wordpress Themes and would like to protect it using license keys, is it possible? If so, would any one be willing to link to some posts or articles to help ...
1
vote
3answers
323 views

Any free Licensing systems?

I'm looking to move my application into the commercial world and am in need for a method of providing license keys for my program. The main thing is that I don't really want constant calls to a server ...
1
vote
3answers
134 views

How to Implement Flexible Trial Versions and Licensing Options into Applications

Management has asked us to look into implementing licensing features into some existing applications. Up to this point these apps were simply paid for and customers could install them as they please. ...
1
vote
2answers
307 views

license-key for software

I am at the first experience of releasing my windows application and I don't have a cue how I should move on. Here my question: I have my own website running on hosting. I would like to implement a ...
1
vote
2answers
142 views

jquery Licenses

I am creating software that will be sold. And I would like to distribute it under a license where no one can re-distribute the code, since it's a commercial product. Can I use jQuery? I am not sure I ...
1
vote
2answers
313 views

Protecting Software from Pirates

After reading numerous threads on Stack Overflow about how to protect software, I realized you can't. Thankfully my software is targetted at hosting businesses (not a lot of them at that) and a ...
1
vote
1answer
423 views

Monotouch: Unregister a licence

We restored a computer with Time Machine which had an active MonoTouch licence. We need to remove the Monotouch license and just use the box as a coding box, not a builder. Is this ...
1
vote
3answers
182 views

Licensing strategy

A product meant for educational institutions for students is installed at various clients. It is a thick client and a disconnected client. Periodically a month or 2 months the product is upgraded ...
1
vote
2answers
265 views

I'm brainstorming for a serial number scheme. Am I doing it wrong?

serial number format: 24 octets represented by 24 hex characters plus hyphens for readibility e.g. D429-A7C5-9C15-8516-D15D-3A1C 0-15: {email+master hash} 16-19: {id} ...
1
vote
2answers
490 views

IntelliLock vs Net Reactor

What is/are the difference(s) between these two? And why would I want one or the other or both? This is for a commercial .NET C# WPF application that will be packaged via WiX. I will need a trial ...
1
vote
1answer
459 views

Get windows serial for XP, Vista and Seven

I'm retrieving Windows XP license key with this function but it does not work for Vista and Seven. How can I get the license key at both of these Windows versions? Public Function sGetXPKey() As ...
1
vote
3answers
357 views

Java: License authentication and validation via software or server?

I need some tips on how to authenticate licenses (user / license key ) . Is it better to do what many games do, which is validating the cd key from company servers. Is there a guide on how to ...
1
vote
4answers
1k views

Register VS2008 Professional on Windows 7

I received from Microsoft a free copy of VS2008 Professional, which is cool. But when I went to install on Windows 7 Beta, it installs fine, but is marked as being "unregistered". I have my license ...

1 2