Mercurial > ec-dotfiles
view bin/startssl-nginx @ 719:bcdf320dabf4
Rewrite the ed2k again in php
Getting openssl to hash md4 is a pain.
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 10 Dec 2023 00:35:22 +0900 |
parents | 9066463340a4 |
children |
line wrap: on
line source
#!/bin/sh _err_fatal() { printf "%s\n" "$*" exit 1 } certfile="${1}" command -v curl 2>&1 > /dev/null || _err_fatal "This script requires cURL. Please install it first." test -z "${certfile}" && _err_fatal "Please specify certificate file." test -f "${certfile}" || _err_fatal "Error reading certificate file ${certfile}." for ca in sub.class1.server.ca.pem; do curl "http://www.startssl.com/certs/${ca}" >> "${certfile}" done