HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RImmers2/portal.photomenu.nl/wwwroot/node_modules/google-p12-pem/bin/gp12-pem
#!/usr/bin/env node

var gp12 = require('../');
var argv = process.argv;
var p12Path = argv[2];

if (!p12Path) {
  console.error('Please specify a *.p12 file to convert.');
  process.exit(1);
}

gp12(p12Path, function(err, pem) {
  if (err) {
    console.log(err);
    process.exit(1);
  } else {
    console.log(pem);
  }
});