From c536607be2bef1f71533d95ffb0c69a5f11427f5 Mon Sep 17 00:00:00 2001 From: Lk Geimfari Date: Wed, 6 Jul 2016 14:33:03 +0300 Subject: [PATCH] Added 'bcrypt*' to Ruby/JavaScript and Python (#21) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 295592e..2a6aae3 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,7 @@ A curated list of cryptography resources and links. ### JavaScript - [asmCrypto](https://github.com/vibornoff/asmcrypto.js/) - JavaScript implementation of popular cryptographic utilities with performance in mind. +- [bcrypt-nodejs](https://github.com/shaneGirish/bcrypt-nodejs) - Native implementation of bcrypt for NodeJS. - [cifre](https://github.com/openpeer/cifre) - Fast crypto toolkit for modern client-side JavaScript. - [closure-library](https://github.com/google/closure-library/tree/master/closure/goog/crypt) - Google's common JavaScript library. - [cryptico](https://github.com/wwwtyro/cryptico) - An easy-to-use encryption system utilizing RSA and AES for javascript. @@ -219,6 +220,7 @@ A curated list of cryptography resources and links. - [jsencrypt](https://github.com/travist/jsencrypt) - A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation. - [JShashes](https://github.com/h2non/jshashes) - Fast and dependency-free cryptographic hashing library for node.js and browsers (supports MD5, SHA1, SHA256, SHA512, RIPEMD, HMAC). - [libsodium.js](https://github.com/jedisct1/libsodium.js) - libsodium compiled to pure JavaScript, with convenient wrappers. +- [node.bcrypt.js](https://github.com/ncb000gt/node.bcrypt.js) - bcrypt for NodeJS. - [OpenPGP.js](https://github.com/openpgpjs/openpgpjs) - OpenPGP implementation for JavaScript. - [PolyCrypt](https://github.com/polycrypt/polycrypt) - A pure JS implementation of the WebCrypto API. - [rusha](https://github.com/srijs/rusha) - High-performance pure-javascript SHA1 implementation suitable for large binary data, reaching up to half the native speed. @@ -260,6 +262,7 @@ encryption library providing MD5, SHA1, SHA2 hashing and HMAC functionality, as ### Python +- [bcrypt](https://github.com/pyca/bcrypt) - Modern password hashing for your software and your servers. - [charm](https://github.com/JHUISI/charm) - a framework for rapidly prototyping cryptosystems. - [cryptography](https://cryptography.io/en/latest/) - is a Python library which exposes cryptographic recipes and primitives. - [cryptopy](https://sourceforge.net/projects/cryptopy/) - is a pure python implmentation of cryptographic algorithms and applications. @@ -272,6 +275,7 @@ encryption library providing MD5, SHA1, SHA2 hashing and HMAC functionality, as ### Ruby +- [bcrypt-ruby](https://github.com/codahale/bcrypt-ruby) - bcrypt-ruby is a Ruby binding for the OpenBSD bcrypt() password hashing algorithm, allowing you to easily store a secure hash of your users' passwords. - [RbNaCl](https://github.com/cryptosphere/rbnacl) - Ruby binding to the Networking and Cryptography (NaCl) library. ### Rust