-
Notifications
You must be signed in to change notification settings - Fork 6
/
openssl-wizard.nuspec
39 lines (38 loc) · 1.72 KB
/
openssl-wizard.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>openssl-wizard</id>
<version>1.3</version>
<packageSourceUrl>https://github.com/deviousasti/openssl-wizard/</packageSourceUrl>
<owners>asti</owners>
<title>OpenSSL Wizard</title>
<authors>asti</authors>
<projectUrl>https://github.com/deviousasti/openssl-wizard</projectUrl>
<iconUrl>https://raw.githubusercontent.com/deviousasti/openssl-wizard/master/icon.png</iconUrl>
<projectSourceUrl>https://github.com/deviousasti/openssl-wizard</projectSourceUrl>
<tags>openssl gui certificate sign</tags>
<summary>
A simple GUI to help you with common certificate related tasks
</summary>
<description>
OpenSSL Wizard is a small gui layer on top of the openssl cli, which allows you to:
* Generate an RSA key
* Generate an Elliptic Curve DSA key
* Generate a new Root Certificate Authority
* Generate a Root Certificate Authority by signing an existing private key
* Generate a Certificate Signing Request (CSR) for an existing private key
* Generate a new private key and a Certificate Signing Request (CSR) for it
* Sign a CSR with your private key
* Convert certificates from various container formats to one another
* Combine a private key and a public key into a single container
* Generate code to hard-code a certificate for testing
</description>
<dependencies>
<dependency id="openssl" version="1.1.1" />
</dependencies>
</metadata>
<files>
<file src="tools\**" target="tools" />
<file src="src\bin\Debug\openssl-wizard.exe" target="bin" />
</files>
</package>