Skip to content

Commit bdca3fe

Browse files
authored
Merge branch 'master' into master
2 parents d31f919 + 1b33f89 commit bdca3fe

35 files changed

Lines changed: 117 additions & 116 deletions

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: https://amrayn.com/donate,https://www.paypal.me/mkhan3189

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Copyright (c) 2018-present Zuhd Web Services
1+
Copyright (c) 2018-present Amrayn Web Services
22

3-
https://github.com/zuhd-org
4-
https://zuhd.org
3+
https://github.com/amrayn
4+
https://amrayn.com
55
https://muflihun.com
66

77
Licensed under the Apache License, Version 2.0 (the "License");

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
License++ is software licensing library that provides an abstract way to secure your software usage.
88

9-
[![Build Status](https://img.shields.io/travis/zuhd-org/licensepp/master.svg?)](https://travis-ci.org/zuhd-org/licensepp/branches)
10-
[![Build Status](https://img.shields.io/travis/zuhd-org/licensepp/develop.svg?)](https://travis-ci.org/zuhd-org/licensepp/branches)
11-
[![Version](https://img.shields.io/github/release/zuhd-org/licensepp.svg)](https://github.com/zuhd-org/licensepp/releases/latest)
9+
[![Build Status](https://img.shields.io/travis/amrayn/licensepp/master.svg?)](https://travis-ci.org/amrayn/licensepp/branches)
10+
[![Build Status](https://img.shields.io/travis/amrayn/licensepp/develop.svg?)](https://travis-ci.org/amrayn/licensepp/branches)
11+
[![Version](https://img.shields.io/github/release/amrayn/licensepp.svg)](https://github.com/amrayn/licensepp/releases/latest)
1212

13-
[![Donate](https://muflihun.github.io/donate.png?v2)](https://www.paypal.me/zuhd/25)
13+
[![Donate](https://amrayn.github.io/donate.png?v2)](https://amrayn.com/donate)
1414

1515
## Features
1616

@@ -25,16 +25,16 @@ License++ is software licensing library that provides an abstract way to secure
2525
### Dependencies
2626

2727
* C++11
28-
* [Crypto++](https://www.cryptopp.com/) v5.6.5+ [with Pem Pack](https://muflihun.github.io/downloads/pem_pack.zip)
28+
* [Crypto++](https://www.cryptopp.com/) v5.6.5+ [with Pem Pack](https://amrayn.github.io/downloads/pem_pack.zip)
2929
* [cmake](https://cmake.org/) v2.8.12+
3030

3131
### Installation
32-
* [Download](https://github.com/zuhd-org/licensepp/archive/master.zip) or [clone](git@github.com:zuhd-org/licensepp.git) the repository
32+
* [Download](https://github.com/amrayn/licensepp/archive/master.zip) or [clone](git@github.com:amrayn/licensepp.git) the repository
3333
* Install Crypto++
3434
```
35-
git clone https://github.com/zuhd-org/licensepp
35+
git clone https://github.com/amrayn/licensepp
3636
git clone https://github.com/weidai11/cryptopp.git
37-
git clone https://github.com/noloader/cryptopp-pem.git
37+
git clone https://github.com/amraynweb/cryptopp-pem.git
3838
cp cryptopp-pem/* cryptopp/
3939
cd cryptopp
4040
make
@@ -78,7 +78,7 @@ License++ is software licensing library that provides an abstract way to secure
7878
)
7979
```
8080
81-
You can use [ripe](https://github.com/zuhd-org/ripe) command to generate new authority key or you can use openssl CLI tool to do so
81+
You can use [ripe](https://github.com/amrayn/ripe) command to generate new authority key or you can use openssl CLI tool to do so
8282
```
8383
ripe -g --rsa --length 2048 [--secret <secret>]
8484
```
@@ -94,7 +94,7 @@ Which is base64-encoded keypair seperated with `:`
9494
## Generate New Signature Key
9595
License++ signature key is what's used to sign the licensee's signature. This is to protect the information with AES-CBC-128. Signature key is defined in 128-bit array in [key register](/cli/licensing/license-manager-key-register.cc) (`LICENSE_MANAGER_SIGNATURE_KEY`)
9696
97-
You can use [ripe](https://github.com/zuhd-org/ripe) to generate new key
97+
You can use [ripe](https://github.com/amrayn/ripe) to generate new key
9898
9999
```
100100
ripe -g --aes --length 128
@@ -150,10 +150,10 @@ Licenses generated using License++ are base64 encoded JSON. They look like as fo
150150
151151
## License
152152
```
153-
Copyright (c) 2018-present Zuhd Web Services
153+
Copyright (c) 2018-present Amrayn Web Services
154154

155-
https://github.com/zuhd-org
156-
https://zuhd.org
155+
https://github.com/amrayn
156+
https://amrayn.com
157157
https://muflihun.com
158158

159159
Licensed under the Apache License, Version 2.0 (the "License");
@@ -169,4 +169,4 @@ See the License for the specific language governing permissions and
169169
limitations under the License.
170170
```
171171
172-
[banner]: https://github.com/zuhd-org/licensepp/raw/master/licensepp.png
172+
[banner]: https://github.com/amrayn/licensepp/raw/master/licensepp.png

cli/licensing/license-manager-key-register.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// license-manager.h
33
// License++ CLI
44
//
5-
// Copyright © 2018-present Zuhd Web Services
6-
// https://zuhd.org
5+
// Copyright © 2018-present Amrayn Web Services
6+
// https://amrayn.com
77
//
8-
// See https://github.com/zuhd-org/licensepp/blob/master/LICENSE
8+
// See https://github.com/amrayn/licensepp/blob/master/LICENSE
99
//
1010

1111
#ifndef LicenseManagerKeyRegister_h

cli/licensing/license-manager.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// license-manager.h
33
// License++ CLI
44
//
5-
// Copyright © 2018-present Zuhd Web Services
6-
// https://zuhd.org
5+
// Copyright © 2018-present Amrayn Web Services
6+
// https://amrayn.com
77
//
8-
// See https://github.com/zuhd-org/licensepp/blob/master/LICENSE
8+
// See https://github.com/amrayn/licensepp/blob/master/LICENSE
99
//
1010

1111
#ifndef LicenseManager_h

cli/main.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
//
22
// License++
33
//
4-
// Copyright © 2018-present Zuhd Web Services
5-
// https://zuhd.org
4+
// Copyright © 2018-present Amrayn Web Services
5+
// https://amrayn.com
66
//
7-
// See https://github.com/zuhd-org/licensepp/blob/master/LICENSE
7+
// See https://github.com/amrayn/licensepp/blob/master/LICENSE
88
//
99

1010
#include <cstring>

doxygen/README_DOXYGEN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ License++ is a cross platform software licensing library which allows you to imp
88
## Licence
99

1010
```
11-
Copyright (c) 2018-present Muflihun Labs
11+
Copyright (c) 2018-present Amrayn Web Services
1212
13-
https://github.com/muflihun/
13+
https://github.com/amrayn/
1414
https://muflihun.com
1515
1616
Licensed under the Apache License, Version 2.0 (the "License");

doxygen/customdoxygen.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ tr.heading h2 {
13991399
text-shadow: none;
14001400
}
14011401

1402-
div.image img[src="https://raw.githubusercontent.com/muflihun/residue/master/docs/Residue.png"] {
1402+
div.image img[src="https://raw.githubusercontent.com/amrayn/residue/master/docs/Residue.png"] {
14031403
width: 50%;
14041404
max-width: 446px;
14051405
}

license++/base-license-manager.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// base-license-manager.h
33
// License++
44
//
5-
// Copyright © 2018-present Zuhd Web Services
6-
// https://zuhd.org
5+
// Copyright © 2018-present Amrayn Web Services
6+
// https://amrayn.com
77
//
8-
// See https://github.com/zuhd-org/licensepp/blob/master/LICENSE
8+
// See https://github.com/amrayn/licensepp/blob/master/LICENSE
99
//
1010

1111
#ifndef BaseLicenseManager_h
@@ -66,7 +66,7 @@ namespace licensepp {
6666
/// };
6767
/// </pre>
6868
///
69-
/// \see https://github.com/muflihun/licensepp/blob/master/sample/
69+
/// \see https://github.com/amrayn/licensepp/blob/master/sample/
7070
///
7171
template <class LicenseKeysRegister>
7272
class BaseLicenseManager

license++/issuing-authority.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// issuing-authority.h
33
// License++
44
//
5-
// Copyright © 2018-present Zuhd Web Services
6-
// https://zuhd.org
5+
// Copyright © 2018-present Amrayn Web Services
6+
// https://amrayn.com
77
//
8-
// See https://github.com/zuhd-org/licensepp/blob/master/LICENSE
8+
// See https://github.com/amrayn/licensepp/blob/master/LICENSE
99
//
1010

1111
#ifndef IssuingAuthority_h

0 commit comments

Comments
 (0)