plugins

Home

Plugins

GitHub

Blog

openssl-cert

version: 0.0.2 |  date: 01/07/2022 |  Create self signed SSL cert using openssl client |  source code

# openssl-cert

Create self signed SSL cert using openssl client

# Install

    s6 --install openssl-cert

# Usage

    my %state = task-run "create", "openssl-cert", %(
      CN => "www.example.com"
    );

    say %state<key>; # private key
    say %state<cert>; # certificate

# Parameters

## CN

CN certificate part

# Output

## key

certificate key 

## cert

certificate

# Author

Alexey Melezhik