X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fgns%2Fgnunet-gns-proxy-setup-ca;h=d0b07887b0d7248657291148c3efb29ed4eb4b97;hb=11cd4959d673c5c58d9a952d25425c3ca4ba4b3e;hp=48fae94f7dec2914f77c0208d899ed0f051ebfe7;hpb=8130491b698c5e7972c46072476f4cf0af94e82b;p=oweals%2Fgnunet.git diff --git a/src/gns/gnunet-gns-proxy-setup-ca b/src/gns/gnunet-gns-proxy-setup-ca index 48fae94f7..d0b07887b 100644 --- a/src/gns/gnunet-gns-proxy-setup-ca +++ b/src/gns/gnunet-gns-proxy-setup-ca @@ -1,31 +1,56 @@ +#!/bin/sh +# This shell script will generate an X509 certificate for your gnunet-gns-proxy +# and install it (for both GNUnet and your browser). +# echo "Generating CA" -openssl req -new -x509 -days 3650 -extensions v3_ca -keyout gnscakey.pem -out gnscacert.pem -subj "/C=DE/ST=Bavaria/L=Munich/O=GNUnet Naming System/OU=GNUnet/CN=GNS Proxy CA/emailAddress=bounce@gnunet.org" -passout pass:"GNUnet Naming System" +options='' +while getopts "c:" opt; do + case $opt in + c) + options+="-c $OPTARG" + ;; + \?) + echo "Invalid option: -$OPTARG" >&2 + exit 1 + ;; + :) + echo "Option -$OPTARG requires an argument." >&2 + exit 1 + ;; + esac +done + +GNSCERT=`mktemp /tmp/gnscertXXXXXX.pem` +GNSCAKY=`mktemp /tmp/gnscakeyXXXXXX.pem` +GNSCANO=`mktemp /tmp/gnscakeynoencXXXXXX.pem` +GNS_CA_CERT_PEM=`gnunet-config -s gns-proxy -o PROXY_CACERT -f $options` +mkdir -p `dirname $GNS_CA_CERT_PEM` + +openssl req -new -x509 -days 3650 -extensions v3_ca -keyout $GNSCAKY -out $GNSCERT -subj "/C=ZZ/L=World/O=GNU/OU=GNUnet/CN=GNS CA/emailAddress=bounce@gnunet.org" -passout pass:"GNU Name System" echo "Removing passphrase from key" -openssl rsa -passin pass:"GNUnet Naming System" -in gnscakey.pem -out gnscakeynoenc.pem +openssl rsa -passin pass:"GNU Name System" -in $GNSCAKY -out $GNSCANO -cp gnscacert.pem $HOME/.gnunet/gns/gnscert.pem -cat gnscacert.pem > $HOME/.gnunet/gns/gnsCAcert.pem -cat gnscakeynoenc.pem >> $HOME/.gnunet/gns/gnsCAcert.pem +cat $GNSCERT $GNSCANO > $GNS_CA_CERT_PEM echo "Importing CA into browsers" for f in ~/.mozilla/firefox/*.default do if [ -d $f ]; then - echo "Importing CA info firefox $f" + echo "Importing CA info Firefox $f" certutil -D -n "GNS Proxy CA" -d ~/.mozilla/firefox/*.default >/dev/null 2&>1 - certutil -A -n "GNS Proxy CA" -t CT,, -d ~/.mozilla/firefox/*.default < gnscacert.pem + certutil -A -n "GNS Proxy CA" -t CT,, -d ~/.mozilla/firefox/*.default < $GNSCERT fi done if [ -d ~/.pki/nssdb ]; then - echo "Importing CA into chrome" + echo "Importing CA into Chrome" certutil -D -n "GNS Proxy CA" -d ~/.pki/nssdb >/dev/null 2&>1 - certutil -A -n "GNS Proxy CA" -t CT,, -d ~/.pki/nssdb < gnscacert.pem + certutil -A -n "GNS Proxy CA" -t CT,, -d ~/.pki/nssdb < $GNSCERT fi -rm gnscakey.pem gnscakeynoenc.pem gnscacert.pem +rm $GNSCAKY $GNSCANO $GNSCERT echo "You can now start gnunet-gns-proxy and configure your browser to use a SOCKS proxy on port 7777"