# How I created a client public key pair
# -rand argument is supposed to supply some randomness; of course,
# this choice isn't terribly random.
/usr/local/src/openssl-0.9.5/apps/openssl genrsa -rand /usr/local/apache/logs/access_log -out client-rsa.key 1024
# print out the key
/usr/local/src/openssl-0.9.5/apps/openssl rsa -in client-rsa.key -text

# how I created the test-server key (RSA)
/usr/local/src/openssl-0.9.5/apps/openssl req -new -key test-server-rsa.key -config openssl.cnf
	# (then I answered a bunch of questions)
/usr/local/src/openssl-0.9.5/apps/openssl req -x509 -in test-server-rsa.req -key test-server-rsa.key -out test-server-cert.pem -config openssl.cnf 
