File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,11 @@ PFX_FILE=winrm_client_cert.pfx
9
9
PFX_PASSWORD=Passw0rd
10
10
11
11
PEM_FILE=winrm_client_cert.pem
12
- DER_FILE=winrm_client_cert.der
13
12
14
- PRIVATE_DIR=` mktemp -d -t openssl `
13
+ PRIVATE_DIR=` mktemp -d -t cloudbase-initXXXXXX `
15
14
chmod 700 $PRIVATE_DIR
16
15
17
- EXT_CONF_FILE=` mktemp -t openssl `
16
+ EXT_CONF_FILE=` mktemp -t cloudbase-initXXXXXX.conf `
18
17
19
18
KEY_FILE=$PRIVATE_DIR /cert.key
20
19
@@ -32,17 +31,14 @@ openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -out $PEM_FILE \
32
31
-extensions v3_req_client 2> /dev/null
33
32
34
33
rm $EXT_CONF_FILE
34
+ unset OPENSSL_CONF
35
35
36
36
openssl pkcs12 -export -in $PEM_FILE -inkey $KEY_FILE -out $PFX_FILE \
37
37
-password pass:$PFX_PASSWORD
38
38
39
39
rm -rf $PRIVATE_DIR
40
40
41
- # The DER format is easier to manipulate
42
- openssl x509 -inform PEM -in $PEM_FILE -outform DER -out $DER_FILE
43
- rm $PEM_FILE
44
-
45
- THUMBPRINT=` openssl x509 -inform DER -in $DER_FILE -fingerprint -noout | \
41
+ THUMBPRINT=` openssl x509 -inform PEM -in $PEM_FILE -fingerprint -noout | \
46
42
sed -e ' s/\://g' | sed -n ' s/^.*=\(.*\)$/\1/p' `
47
43
48
44
echo " Certificate Thumbprint: $THUMBPRINT "
You can’t perform that action at this time.
0 commit comments