Skip to content

Instantly share code, notes, and snippets.

@jo
Last active March 31, 2024 20:33
Show Gist options
  • Save jo/8619441 to your computer and use it in GitHub Desktop.
Save jo/8619441 to your computer and use it in GitHub Desktop.
List of JavaScript Crypto libraries.

JavaScript Crypto Libraries

List some crypto libraries for JavaScript out there. Might be a bit out dated. Scroll to the bottom.

WebCryptoAPI

http://www.w3.org/TR/WebCryptoAPI/

This specification describes a JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations. Uses for this API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications.

  • W3C Working Draft 25 June 2013

sjcl

http://bitwiseshiftleft.github.io/sjcl/

Stanford Javascript Crypto Library

js-nacl

https://github.com/tonyg/js-nacl

Emscripten-compiled Javascript version of NaCl, the Networking and Cryptography library.

jsbn

http://www-cs-students.stanford.edu/~tjw/jsbn/

RSA and ECC in JavaScript

  • Version 1.4 (7/1/2013)

ursa

https://github.com/Obvious/ursa

RSA public/private key crypto for Node.

jsencrypt

https://github.com/travist/jsencrypt

Provides a simple wrapper around the fantastic work done by Tom Wu for RSA Encryption for JavaScript.

OpenPGP.js

https://github.com/openpgpjs/openpgpjs

OpenPGP implementation for JavaScript

jwcrypto

https://github.com/mozilla/jwcrypto

JavaScript implementation of JSON Web Signatures, JSON Web Tokens, and JSON Web Certificates

cryptico

https://github.com/wwwtyro/cryptico

An easy-to-use encryption system utilizing RSA and AES for javascript.

pidCrypt

https://www.pidder.de/pidcrypt/?start

a JavaScript crypto library

forge

https://github.com/digitalbazaar/forge

A native implementation of TLS in Javascript and tools to write crypto-based and network-heavy webapps

  • based on jsbn

CryptoJS

http://code.google.com/p/crypto-js/

JavaScript implementations of standard and secure cryptographic algorithms

crypto

http://ats.oka.nu/titaniumcore/js/crypto/readme.txt

JavaScript Cryptography Toolkit

This library is an object oriented cryptography toolkit that implements several fundamental cryptographic algorithms including TWOFISH, SERPENT, RIJNDAEL, RSA with key-generation and SHA(SHA-1,224,256,384,512) for JavaScript. This library works in ActionScript as well. The unique feature of this library is asynchronous processing. A heavyweight process such as 4096bit RSA key generation will be done asynchronously so that this library does not cause problems such as freezing browsers, "slow-downing" warning dialogs, etc.

  • asynchronous RSA key generation
  • based on jsbn

jscrypto

http://code.google.com/p/jscryptolib/

A JavaScript Cryptography Library

This library is an object oriented cryptography library that implements several fundamental cryptographic algorithms including AES, SHA-1, HMAC, BASE64, RSA, ECC and IBE for JavaScript. This library works in ActionScript as well.

Cifre

https://github.com/openpeer/cifre

Cifre is a fast crypto toolkit for modern client-side JavaScript. This is done by taking the best crypto code for js on the net and updating it to use modern technologies. There are plans to collaborate with the forge project.

  • MIT License
  • 2013-07-30 14:09:58

PolyCrypt

http://polycrypt.net/

A WebCrypto Polyfill

FoxyCrypt

https://github.com/polycrypt/foxycrypt

A Firefox extension for the Web Cryptography API

cryptojs

http://cryptojs.altervista.org/

JavaScript Cryptography

  • Last modified: 09/05/2012

TweetNaCl.js

Port of TweetNaCl / NaCl to JavaScript for modern browsers and Node.js. Public domain.

  • Last modified: 01/02/2022
  • Recommended by the author of this gist

Webcryptobox

https://github.com/jo/webcryptobox

Tiny utility library for asymetric encryption via WebCrypto with zero dependencies. Made by the author of this gist.

  • Last modified: - 02/17/2021
  • Apache 2.0 License
@nishantgupta2501
Copy link

nishantgupta2501 commented Feb 16, 2021

We're using http://www-cs-students.stanford.edu/~tjw/jsbn/ and getting window.crypto.random is not a function error at line 39 in rng.js file in IOS webviewcontroller. We're using Xcode 11.3 for native apps. Can you please look into it? It's working fine for previous version of Xcode and other browsers as well.

@petrosDemetrakopoulos
Copy link

Also EthAir Balloons. A very useful strictly typed ORM library for Ethereum blockchain.

@DelphiWorlds
Copy link

Checkout my project Cypher

It has disappeared?

@stefanodecillis
Copy link

Is there a lib to encrypt/decrypt binary with ethereum wallet ecdsa pubkey and private key?

@amilich
Copy link

amilich commented Jun 1, 2023

Is there a lib to encrypt/decrypt binary with ethereum wallet ecdsa pubkey and private key?

I don't think this is standardized yet. Check out https://ethereum-magicians.org/t/eip-1024-cross-client-encrypt-decrypt/505 as well.

FYI, we also just published Skiff Crypto, which is open-source, has asymmetric/symmetric crypto for Node.JS + browser runtime. It also has object versioning capabilities. Repo link - https://github.com/skiff-org/skiff-apps/tree/main/libs/skiff-crypto.

@amilich
Copy link

amilich commented Jun 15, 2023

Documentation site too: https://skiff.com/skiff-crypto

@r0c4f1
Copy link

r0c4f1 commented Feb 7, 2024

gracias, eres un duro :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment