For excessively paranoid client authentication.
Updated Apr 5 2019:
because this is a gist from 2011 that people stumble into and maybe you should AES instead of 3DES in the year of our lord 2019.
some other notes:
| UTF8 := $(shell locale -c LC_CTYPE -k | grep -q charmap.*UTF-8 && echo -utf8) | |
| SERIAL=0 | |
| .PHONY: usage | |
| .SUFFIXES: .key .csr .crt .pem | |
| .PRECIOUS: %.key %.csr %.crt %.pem | |
| usage: | |
| @echo "This makefile allows you to create:" | |
| @echo " o public/private key pairs" |
| #!/bin/sh | |
| echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
| read inputline | |
| name="$inputline" | |
| echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
| read inputline | |
| url="$inputline" |