-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryptoca.sh
31 lines (31 loc) · 1.01 KB
/
cryptoca.sh
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
#!/bin/bash
########################################################################
#Script Name : CRYPTOCA
#Description : Create a CA to sign and issue certificates.
#Args : Interactive
#Author : Dari Garcia (manofftoday)
#GitHub : https://github.com/manofftoday
#File : cryptoca.sh
#Description : Execution workflow
########################################################################
# Source Functions
# This section imports the functions required to work
# ca - CA generation related functions
# common - common workflow functions
# config_gen - OpenSSL config file generator
# csr - certificate signing requests functions
# private - private key functions
#################################
source ca
source common
source config_gen
source csr
source private
#################################
# Modify the cryptoca.conf file to your needs.
##################################
source cryptoca.conf
#############################
#Execution workflow
#############################
main_menu;