GitBruno / zxp-sign-cmd

A JS wrapper for Adobe's extension signer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zxp-sign-cmd

A JS wrapper for Adobe's extension signer - ZXPSignCmd

Dependencies Build Status Build status Coverage Status MIT licensed

About

zxp-sign-cmd provides a simple interface for Adobe's extension signer. zxp-sign-cmd takes care of starting the requires processes, handling any errors, and building the output directory if required.

Usage

var zxpSignCmd = require('zxp-sign-cmd');

There are functions for all 3 operations: sign, selfSignedCert, and verify. Each function takes an options object as its first parameter. See the property tables for the appropriate function below. The second parameter is a callback, that takes an error and result argument. The error will always be null if the function succeeds. In the event that an error occurs, an Error object will be returned. The result will be a string and will contain the stdout provided by ZXPSignCmd (if the task succeeds). In the event that the task fails, result will be undefined.

sign

Options

Property Required Datatype Purpose
input yes String The directory that will be compiled into the packaged zxp file
output yes String The path and filename that the zxp will be exported to
cert yes String The path and filename of the .p12 certificate that will be used to sign the extension
password yes String The password associated with the certificate
timestamp no String URL for a timestamp server

Example:

zxpSignCmd.sign(options, function (error, result) {
    
});

selfSignedCert

Options

Property Required Datatype Purpose
country yes String The country associated with the certificate
province yes String The state or province associated with the certificate
org yes String The organization associated with the certificate
name yes String The commonName for the certificate
password yes String The password for the certificate
output yes String The path that the certificate will be exported to
locality no String The locality for the certificate
orgUnit no String Name of the organizational unit
email no String An email associated with the certificate
validityDays no Number The number of days the certificate is valid

Example:

zxpSignCmd.selfSignedCert(options, function (error, result) {
    
});

verify

Options

Property Required Datatype Purpose
input yes String The path to the zxp file that will be validated
info no Boolean Allows the result to return a more verbose output of the validation
skipChecks no Boolean The validation will skip onlin revocation checks
addCerts no String Additional certificates to validate against

Example:

zxpSignCmd.verify(options, function (error, result) {
    
});

Notes

  • Code coverage is low because the ZXPSignCmd cannot run in the Travis-CI environment. I imagine this is due to an OS compatiblity issue. If you would like to run see more complete code coverage, pull the repo and execute "npm run test".

  • zxp-sign-cmd v0.1.0 - ZxpSignCmd v3.0.30

  • zxp-sign-cmd v0.2.0 - ZxpSignCmd v4.0.7

About

A JS wrapper for Adobe's extension signer


Languages

Language:JavaScript 99.0%Language:HTML 1.0%