Skip to content

Commit 4560c29

Browse files
committed
v0.3.0 release
1 parent bd47c61 commit 4560c29

21 files changed

+7558
-135
lines changed

.eslintrc.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": true
6+
},
7+
"extends": "standard",
8+
"overrides": [
9+
],
10+
"parserOptions": {
11+
"ecmaVersion": "latest"
12+
},
13+
"rules": {
14+
}
15+
}

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
node_modules
22
.DS_Store
33
dist/
4-
package-lock.json

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# CHANGELOG
22

3+
## v0.3.0
4+
- Restructured files
5+
- Added error message on not saved key
6+
37
## v0.2.0
4-
- Fix the an error in Mac when reopen the windows
5-
- Allow to generate `2048` and `4096` bits keys
6-
- Better handling download Dialog.
8+
- Fixed an error in macOS for when the window is reopened
9+
- Allow only `2048` and `4096` bits keys generation
10+
- Improved the handling of download dialog.
711

812
## v0.1.1
913
- First release

LICENSE.md

+21-39
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,21 @@
1-
CC0 1.0 Universal
2-
==================
3-
4-
Statement of Purpose
5-
---------------------
6-
7-
The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
8-
9-
Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
10-
11-
For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
12-
13-
1. Copyright and Related Rights.
14-
--------------------------------
15-
A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
16-
17-
i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
18-
ii. moral rights retained by the original author(s) and/or performer(s);
19-
iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
20-
iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
21-
v. rights protecting the extraction, dissemination, use and reuse of data in a Work;
22-
vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
23-
vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
24-
25-
2. Waiver.
26-
-----------
27-
To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
28-
29-
3. Public License Fallback.
30-
----------------------------
31-
Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
32-
33-
4. Limitations and Disclaimers.
34-
--------------------------------
35-
36-
a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
37-
b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
38-
c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
39-
d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.
1+
MIT License
2+
3+
Copyright (c) 2022 Binance
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+42-12
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,57 @@
11
# RSA Key Generator
22

3-
This simple tool can be used for generating RSA Keys.
3+
This simple tool can be used to generate an RSA PKCS#8 key pair (private and public key).
44

5+
There's two methods to run the tool, you can either download or build from source code.
56

6-
## Save
7-
TODO
7+
## Download
8+
Prebuild apps can be found in [Releases](https://github.com/binance/rsa-key-generator/releases).
89

9-
## Run from code
10+
To verify the package's integrity, download both the app and the checksum file to the same directory:
1011

12+
```shell
13+
-rw-r--r--@ 1 john staff 156M 18 Nov 17:02 RSAKeyGenerator-0.3.0-universal.dmg
14+
-rw-r--r--@ 1 john staff 102B 18 Nov 19:01 RSAKeyGenerator-0.3.0-universal.dmg.CHECKSUM
15+
```
1116

12-
## How to use
17+
Then run sha256 checksum:
1318

14-
1. Open the app
19+
```shell
20+
sha256sum -c RSAKeyGenerator-0.3.0-universal.dmg.CHECKSUM
21+
```
1522

16-
2. Choose the bits; Recommend to keep the default value (`2048`), then click the button `Generate Key Pair`
23+
If it passes the integrity check, it'll return `RSAKeyGenerator-0.3.0-universal.dmg: OK`
1724

18-
3. Below on the left column is the `Private Key`, which should be saved in your local storage; It should never be shared with anyone. Click `Save` to save in security location.
25+
## Build from source code
1926

20-
4. The right column is the `Public Key`. Click `Save` button to save into local storage. This key is shared with others to sign, which can be verified with your `Private Key`.
27+
Obtain the source code locally and go through the following steps:
2128

22-
## Contributing
23-
Contributions are welcome.
29+
```javascript
30+
31+
// install package
32+
npm install
33+
34+
// run locally
35+
npm run start
36+
37+
// build packages locally into the "dist" folder.
38+
npm run dist
39+
40+
```
41+
42+
## Usage
43+
44+
1. Open the app;
45+
46+
2. Choose the bits size; Recommend to keep the default value (`2048`), then click the button `Generate Key Pair`;
47+
48+
3. Below on the left column is the `Private Key`, which should be stored in a secure location on your local disk (by using the `Save` button) and must never be shared with anyone;
49+
50+
4. The right column is the `Public Key`. Click `Save` button to save into local disk. This key can be shared with others to verify the `Private Key` signed data;
51+
52+
## Contribution
53+
Contributions are welcome!
2454
If you've found a bug within this project, please open an issue to discuss what you would like to change.
2555

2656
## License
27-
MIT
57+
MIT

daisyui.css assets/css/daisyui.css

File renamed without changes.

styles.css assets/css/styles.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@font-face {
22
font-family: 'SFProDisplay-Bold';
3-
src: url('assets/fonts/SFProDisplay-Bold.ttf');
3+
src: url('../fonts/SFProDisplay-Bold.ttf');
44
}
55

66
@font-face {
77
font-family: 'SFProDisplay-Regular';
8-
src: url('assets/fonts/SFProDisplay-Regular.ttf');
8+
src: url('../fonts/SFProDisplay-Regular.ttf');
99
}
1010

1111

index.html assets/html/index.html

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<!DOCTYPE html>
22
<html data-theme="light">
3-
43
<head>
54
<meta charset="UTF-8">
65
<meta name="viewport" content="width=device-width, initial-scale=1.0">
76
<meta http-equiv="Content-Security-Policy"
87
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
9-
<link href="./daisyui.css" rel="stylesheet" type="text/css" />
10-
<script src="./tailwind.js"></script>
11-
<link href="./styles.css" rel="stylesheet">
8+
<link href="../css/daisyui.css" rel="stylesheet" type="text/css" />
9+
<script src="../js/tailwind.js"></script>
10+
<link href="../css/styles.css" rel="stylesheet">
1211
<title>RSA Key Generator</title>
1312
</head>
1413

@@ -56,7 +55,7 @@ <h2 class="text-2xl font-bold">Private Key</h2>
5655
disabled>SAVE</button>
5756
</div>
5857
<div>
59-
<p id="private-key-text-area-tooltip" class="text-green-500"></p>
58+
<p id="private-key-text-area-tooltip"></p>
6059
</div>
6160
</div>
6261
<div class="h-80 flex flex-col flex-grow gap-y-2">
@@ -73,13 +72,13 @@ <h2 class="text-2xl font-bold">Public Key</h2>
7372
disabled>SAVE</button>
7473
</div>
7574
<div>
76-
<p id="public-key-text-area-tooltip" class="text-green-500"></p>
75+
<p id="public-key-text-area-tooltip"></p>
7776
</div>
7877
</div>
7978
</div>
8079
</main>
8180
<!-- You can also require other files to run in this process -->
82-
<script src="./renderer.js"></script>
81+
<script src="../js/renderer.js"></script>
8382
</body>
8483

8584
</html>

renderer.js assets/js/renderer.js

+32-19
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ function change_buttons_disabled_state(state) {
88

99
function remove_label_text(label_id) {
1010
document.getElementById(label_id).innerText = "ㅤ"
11+
document.getElementById(label_id).classList = []
1112
}
1213

1314
// Actions
14-
const generate_keys = async () => {
15+
const generateKeys = async () => {
1516
bits = document.getElementById('select-bits').value
16-
let { privateKey, publicKey } = await window.utils.generate_keys(parseInt(bits))
17+
let { privateKey, publicKey } = await window.utils.generateKeys(parseInt(bits))
1718
document.getElementById('private-key-text-area').value = privateKey
1819
document.getElementById('public-key-text-area').value = publicKey
1920

@@ -22,9 +23,9 @@ const generate_keys = async () => {
2223

2324
}
2425

25-
const generate_public_key = async () => {
26+
const generatePublicKey = async () => {
2627
privateKey = document.getElementById('private-key-text-area').value
27-
let publicKey = await window.utils.generate_public_key(privateKey)
28+
let publicKey = await window.utils.generatePublicKey(privateKey)
2829
document.getElementById('public-key-text-area').value = publicKey
2930

3031
if (publicKey) {
@@ -34,51 +35,63 @@ const generate_public_key = async () => {
3435
}
3536
}
3637

37-
const copy_key = async (input_key) => {
38+
const copyKey = async (input_key) => {
3839
let lower_input_key = input_key.toLowerCase()
3940
let data = document.getElementById(`${lower_input_key}-key-text-area`).value
40-
await window.utils.copy_key(data)
41+
await window.utils.copyKey(data)
4142

42-
// Display tooltip for 3s
43+
// Display tooltip for 5s
4344
let label_id = `${lower_input_key}-key-text-area-tooltip`
45+
document.getElementById(label_id).classList.add('text-green-500');
4446
document.getElementById(label_id).innerText = `${input_key} Key copied`
45-
setTimeout(function () { remove_label_text(label_id) }, 3000);
47+
setTimeout(function () { remove_label_text(label_id) }, 5000);
4648
}
4749

48-
const save_key = async (input_key) => {
49-
let lower_input_key = input_key.toLowerCase()
50-
let key = document.getElementById(`${lower_input_key}-key-text-area`).value
51-
await window.utils.save_key(`${input_key}_key`, key)
50+
const saveKey = async (input_key) => {
51+
let lower_input_key = input_key.toLowerCase();
52+
let key = document.getElementById(`${lower_input_key}-key-text-area`).value;
53+
result = await window.utils.saveKey(`${input_key}_key`, key);
54+
55+
let label_id = `${lower_input_key}-key-text-area-tooltip`
56+
// Display error tooltip for 5s
57+
if (result) {
58+
tip_color = 'text-red-500';
59+
} else {
60+
tip_color = 'text-green-500';
61+
result = `${input_key} Key saved`;
62+
}
63+
document.getElementById(label_id).classList.add(tip_color);
64+
document.getElementById(label_id).innerText = result;
65+
setTimeout(function () { remove_label_text(label_id) }, 5000);
5266
}
5367

5468
// Event listeners
5569
const generateKeysButton = document.getElementById('generate-keys-button')
5670
generateKeysButton.addEventListener('click', function () {
57-
generate_keys()
71+
generateKeys()
5872
})
5973

6074
const privateKeyTextArea = document.getElementById('private-key-text-area')
6175
privateKeyTextArea.addEventListener('input', function () {
62-
generate_public_key()
76+
generatePublicKey()
6377
})
6478

6579
const privateKeyCopyButton = document.getElementById('private-key-copy-button')
6680
privateKeyCopyButton.addEventListener('click', function () {
67-
copy_key("Private")
81+
copyKey("Private")
6882
})
6983

7084
const publicKeyCopyButton = document.getElementById('public-key-copy-button')
7185
publicKeyCopyButton.addEventListener('click', function () {
72-
copy_key("Public")
86+
copyKey("Public")
7387
})
7488

7589
const privateKeySaveButton = document.getElementById('private-key-save-button')
7690
privateKeySaveButton.addEventListener('click', function () {
77-
save_key("Private")
91+
saveKey("Private")
7892
})
7993

8094
const publicKeySaveButton = document.getElementById('public-key-save-button')
8195
publicKeySaveButton.addEventListener('click', function () {
82-
save_key("Public")
96+
saveKey("Public")
8397
})
84-

tailwind.js assets/js/tailwind.js

File renamed without changes.

resources/icon.png build/icon.png

File renamed without changes.
File renamed without changes.

build/icons/512x512.png

175 KB
Loading

config/electron-builder.js

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const { notarize } = require('@electron/notarize')
33

44
const config = {
55
appId: 'rsa-key-generator',
6-
icon: 'resources/icon.png',
76
productName: 'RSAKeyGenerator',
87
mac: {
98
target: {

0 commit comments

Comments
 (0)