add upstream source (adch++ 2.12.1 from sourceforge)

This commit is contained in:
2020-03-22 01:45:29 -07:00
parent 3574617350
commit 2cfbcf1301
9637 changed files with 1934407 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#!/bin/bash
echo "Checking for OpenSSL"
if [ "$(which openssl)" ];
then
echo "OpenSSL was found, generating keys..."
openssl genrsa -out privkey.pem 2048
clear
openssl dhparam -outform PEM -out dhparam.pem 1024
openssl req -new -x509 -key privkey.pem -out cacert.pem -days 1095
clear
if [ -f certs/trusted ];
then
echo "No need create a directory that already exists"
else
mkdir -p certs/trusted
fi
mv *.pem certs
echo "All done!"
else
echo "Unable to locate OpenSSL, please make sure it is installed"
fi

BIN
src/linux/redhat/adchpp Normal file

Binary file not shown.