File tree 6 files changed +8
-8
lines changed
6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -204,13 +204,13 @@ agent1-cert.pem: agent1-csr.pem ca1-cert.pem ca1-key.pem
204
204
-CAcreateserial \
205
205
-out agent1-cert.pem
206
206
207
- agent1-pfx.pem : agent1-cert.pem agent1-key.pem ca1-cert.pem
207
+ agent1.pfx : agent1-cert.pem agent1-key.pem ca1-cert.pem
208
208
openssl pkcs12 -export \
209
209
-descert \
210
210
-in agent1-cert.pem \
211
211
-inkey agent1-key.pem \
212
212
-certfile ca1-cert.pem \
213
- -out agent1-pfx.pem \
213
+ -out agent1.pfx \
214
214
-password pass:sample
215
215
216
216
agent1-verify : agent1-cert.pem ca1-cert.pem
@@ -526,12 +526,12 @@ ec-cert.pem: ec-csr.pem ec-key.pem
526
526
-signkey ec-key.pem \
527
527
-out ec-cert.pem
528
528
529
- ec-pfx.pem : ec-cert.pem ec-key.pem
529
+ ec.pfx : ec-cert.pem ec-key.pem
530
530
openssl pkcs12 -export \
531
531
-descert \
532
532
-in ec-cert.pem \
533
533
-inkey ec-key.pem \
534
- -out ec-pfx.pem \
534
+ -out ec.pfx \
535
535
-password pass:
536
536
537
537
dh512.pem :
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ const fixtures = require('../common/fixtures');
10
10
const options = {
11
11
pfx : [
12
12
{
13
- buf : fixtures . readKey ( 'agent1-pfx.pem ' ) ,
13
+ buf : fixtures . readKey ( 'agent1.pfx ' ) ,
14
14
passphrase : 'sample'
15
15
} ,
16
- fixtures . readKey ( 'ec-pfx.pem ' )
16
+ fixtures . readKey ( 'ec.pfx ' )
17
17
]
18
18
} ;
19
19
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const assert = require('assert');
35
35
36
36
const SSL_OP_NO_TICKET = require ( 'crypto' ) . constants . SSL_OP_NO_TICKET ;
37
37
38
- const pfx = fixtures . readKey ( 'agent1-pfx.pem ' ) ;
38
+ const pfx = fixtures . readKey ( 'agent1.pfx ' ) ;
39
39
40
40
function test ( testOptions , cb ) {
41
41
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const fixtures = require('../common/fixtures');
11
11
const assert = require ( 'assert' ) ;
12
12
const tls = require ( 'tls' ) ;
13
13
14
- const pfx = fixtures . readKey ( 'agent1-pfx.pem ' ) ;
14
+ const pfx = fixtures . readKey ( 'agent1.pfx ' ) ;
15
15
16
16
const server = tls
17
17
. createServer (
You can’t perform that action at this time.
0 commit comments