Skip to content

Commit

Permalink
Bumped version to v1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Jan 18, 2015
1 parent e756da6 commit fe10527
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ var https = require('https'),

pem.createCertificate({days:1, selfSigned:true}, function(err, keys){
var app = express();

app.get('/', requireAuth, function(req, res){
res.send("o hai!");
});

https.createServer({key: keys.serviceKey, cert: keys.certificate}, app).listen(443);
});
```
Expand Down Expand Up @@ -126,7 +126,7 @@ Where

* **certificate** is a PEM encoded CSR or a certificate
* **callback** is a callback function with an error object and `{country, state, locality, organization, organizationUnit, commonName, emailAddress, validity{start, end}, san{dns, ip}? }`

? *san* is only present if the CSR or certificate has SAN entries.

### Get fingerprint
Expand All @@ -153,6 +153,4 @@ Where

## License



**MIT**
**MIT**
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Andris Reinman <andris@node.ee>",
"name": "pem",
"description": "Create private keys and certificates with node.js",
"version": "1.4.5",
"version": "1.4.6",
"repository": {
"type": "git",
"url": "git://github.com/andris9/pem.git"
Expand All @@ -19,4 +19,4 @@
"engines": {
"node": "*"
}
}
}

0 comments on commit fe10527

Please sign in to comment.