unpack rsa fields from PEM strings
npm install rsa-unpackunpack rsa fields from PEM strings

```
$ rsa-json > keys.json
` js
var fs = require('fs');
var keys = require('./keys.json');
var unpack = require('rsa-unpack');
var rsa = unpack(keys.private);
console.dir(rsa);
`
*
``
$ node example/unpack.js
{ modulus:
bits: 1073,
publicExponent: 65537,
privateExponent:
prime1:
prime2:
exponent1:
exponent2:
coefficient:
` js`
var unpack = require('rsa-unpack')
Unpack the PEM-formatted string pemKeyString into the RSA field values.
Currently only private keys are supported.
If the key is invalid, returns undefined.
With npm do:
```
npm install rsa-unpack
MIT