File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 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
204204 -CAcreateserial \
205205 -out agent1-cert.pem
206206
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
208208 openssl pkcs12 -export \
209209 -descert \
210210 -in agent1-cert.pem \
211211 -inkey agent1-key.pem \
212212 -certfile ca1-cert.pem \
213- -out agent1-pfx.pem \
213+ -out agent1.pfx \
214214 -password pass:sample
215215
216216agent1-verify : agent1-cert.pem ca1-cert.pem
@@ -526,12 +526,12 @@ ec-cert.pem: ec-csr.pem ec-key.pem
526526 -signkey ec-key.pem \
527527 -out ec-cert.pem
528528
529- ec-pfx.pem : ec-cert.pem ec-key.pem
529+ ec.pfx : ec-cert.pem ec-key.pem
530530 openssl pkcs12 -export \
531531 -descert \
532532 -in ec-cert.pem \
533533 -inkey ec-key.pem \
534- -out ec-pfx.pem \
534+ -out ec.pfx \
535535 -password pass:
536536
537537dh512.pem :
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ const fixtures = require('../common/fixtures');
1010const options = {
1111 pfx : [
1212 {
13- buf : fixtures . readKey ( 'agent1-pfx.pem ' ) ,
13+ buf : fixtures . readKey ( 'agent1.pfx ' ) ,
1414 passphrase : 'sample'
1515 } ,
16- fixtures . readKey ( 'ec-pfx.pem ' )
16+ fixtures . readKey ( 'ec.pfx ' )
1717 ]
1818} ;
1919
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ const assert = require('assert');
3535
3636const SSL_OP_NO_TICKET = require ( 'crypto' ) . constants . SSL_OP_NO_TICKET ;
3737
38- const pfx = fixtures . readKey ( 'agent1-pfx.pem ' ) ;
38+ const pfx = fixtures . readKey ( 'agent1.pfx ' ) ;
3939
4040function test ( testOptions , cb ) {
4141
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const fixtures = require('../common/fixtures');
1111const assert = require ( 'assert' ) ;
1212const tls = require ( 'tls' ) ;
1313
14- const pfx = fixtures . readKey ( 'agent1-pfx.pem ' ) ;
14+ const pfx = fixtures . readKey ( 'agent1.pfx ' ) ;
1515
1616const server = tls
1717 . createServer (
You can’t perform that action at this time.
0 commit comments