Skip to content

Commit

Permalink
Merge branch 'inline-comment-out-missing-parts' of ssh://github.com/T…
Browse files Browse the repository at this point in the history
…inCanTech/easy-rsa into TinCanTech-inline-comment-out-missing-parts

Signed-off-by: Richard T Bonhomme <[email protected]>
  • Loading branch information
TinCanTech committed Aug 13, 2024
2 parents 2d99a88 + b88f769 commit 2acfa34
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions easyrsa3/easyrsa
Original file line number Diff line number Diff line change
Expand Up @@ -2095,10 +2095,7 @@ self-sign: Use ALGO:'$EASYRSA_ALGO' / CURVE:'$EASYRSA_CURVE'"
Self-signed '$EASYRSA_ALGO/$EASYRSA_CURVE' \
key and certificate created:
* $key_out
* $crt_out

SHA256 fingerprint (See inline file below):
* $crt_fingerprint"
* $crt_out"

# inline key/cert/fingerprint
inline_file "$file_name_base"
Expand Down Expand Up @@ -2962,9 +2959,12 @@ $(cat "$crt_source")
else
inline_incomplete=1
crt_data="\
<cert>
* Paste your user certificate here *
</cert>"
# When you recieve your signed certificate place it in the
# 'pki/issued' sub-dir of your PKI and use command 'inline'
# to rebuild this inline file with your certificate.
# <cert>
# * Paste your user certificate here *
# </cert>"

crt_fingerprint=unknown
crt_type=unknown
Expand All @@ -2980,9 +2980,12 @@ $(cat "$key_source")
else
inline_incomplete=1
key_data="\
<key>
* Paste your private key here *
</key>"
# When you recieve your key place it in the
# 'pki/private' sub-dir of your PKI and use command 'inline'
# to rebuild this inline file with your key.
# <key>
# * Paste your private key here *
# </key>"
fi

# CA certificate
Expand All @@ -2994,9 +2997,12 @@ $(cat "$ca_source")
else
inline_incomplete=1
ca_data="\
<ca>
* Paste your CA certificate here *
</ca>"
# When you recieve your CA certificate place it in the
# 'pki' sub-dir of your PKI and use command 'inline'
# to rebuild this inline file with your CA certificate.
# <ca>
# * Paste your CA certificate here *
# </ca>"
fi

# Print data
Expand Down

0 comments on commit 2acfa34

Please sign in to comment.