Skip to content

Open Source License Key Generation and Verification Tool written in Go

License

Notifications You must be signed in to change notification settings

wudgyu/f-license

This branch is 5 commits behind furkansenharputlu/f-license:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

af9cfb3 · Jul 25, 2020

History

60 Commits
Jul 25, 2020
Apr 18, 2020
May 16, 2020
Jul 25, 2020
Jul 25, 2020
Jul 25, 2020
Apr 18, 2020
Apr 18, 2020
Jul 25, 2020
Nov 27, 2019
Apr 29, 2020
Jul 25, 2020
Jul 25, 2020
Apr 18, 2020
Apr 18, 2020
Jul 25, 2020
Jul 25, 2020
May 16, 2020
May 16, 2020
May 16, 2020
May 16, 2020
Jul 25, 2020

Repository files navigation

f-license

NOTE: This project will be improved with lots of new features!

f-license is an open-source license creation and verification tool. You can quickly add license key verification to your application. Don't implement yourself, just use the open-source product!

Features

  • Generating license keys with one of HMAC and RSA algorithms
  • Remote verification of a license key
  • Local verification of a license key
  • Storing licence keys in MongoDB
  • Activating and inactivating customer license keys
  • f-cli tool to manage licenses by terminal

See the latest Documentation.

How to use

Prerequisites

  • MongoDB server

Start f-license server

  1. Create and configure config.json file like sample_config.json
  2. Run go build
  3. Run ./f-license

Embed client code to your app

If your app's language is Go, you need to add just one line code to your application after importing client.

import "github.com/furkansenharputlu/f-license/client"

Remote verification

verified, err := client.VerifyRemotely("https://localhost:4242", "trusted-server-cert", "license-key")

Local verification

verified, err := client.VerifyLocally("secret-or-public-key", "license-key")

If you are not using Go, you can easily implement their equivalent in your app's language for now. In future, we will implement for different languages.

CLI usage

  1. Run go build -o f-cli ./cli
  2. Generate license.json like sample_license.json

asciicast

About

Open Source License Key Generation and Verification Tool written in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 96.9%
  • Shell 1.9%
  • Dockerfile 1.2%