am 6b03c84e: Use more secure exponent for generating keys

* commit '6b03c84e6ec660884d3cc216302b5f462bb1ce65':
  Use more secure exponent for generating keys
This commit is contained in:
Baligh Uddin
2012-09-28 14:47:44 -07:00
committed by Android Git Automerger

View File

@@ -49,7 +49,7 @@ chmod 0600 ${one} ${two}
read -p "Enter password for '$1' (blank for none; password will be visible): " \ read -p "Enter password for '$1' (blank for none; password will be visible): " \
password password
( openssl genrsa -3 2048 | tee ${one} > ${two} ) & ( openssl genrsa -f4 2048 | tee ${one} > ${two} ) &
openssl req -new -x509 -sha1 -key ${two} -out $1.x509.pem \ openssl req -new -x509 -sha1 -key ${two} -out $1.x509.pem \
-days 10000 -subj "$2" & -days 10000 -subj "$2" &