0.0.3 • Published 10 years ago

polarssl v0.0.3

Weekly downloads
3
License
BSD
Repository
github
Last release
10 years ago

node-polarssl

Node.JS bindings for PolarSSL, a clean, lightweight crypto library.

Overview

I want to make certs and stuff. PolarSSL is cool.

Functionality

rsa_gen

polarssl.rsa_gen(1024, function(err, key) {
  if (err) {
    return console.log(err);
  }

  console.log(key.private);
  console.log(key.public);
});

License

All original code is licensed under a 3-clause BSD license. A copy is included with the source.

PolarSSL is licensed under the GPLv2.

Contact