node-ssh-agent icon indicating copy to clipboard operation
node-ssh-agent copied to clipboard

Node.js client library for interacting with the OpenSSH Agent

Results 3 node-ssh-agent issues
Sort by recently updated
recently updated
newest added

Hey, I've written some Typescript definitions i.e. a `.d.ts` file for this library. Would that be something you'd accept a PR for to distribute with the library? Cheers, Jared

Instead of defaulting to base64 for sign this PR defaults to buffers and adds an optional encoding parameter ``` js agent.sign(key, new Buffer('hello world'), function(err, res) { // res.signature is...