From f8c775c5fa378d7f712b4342ad60efdc4429eb53 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 1 Jun 2018 20:10:45 -0400 Subject: [PATCH] node crypto --- _articles/security/what-encryption-is-used.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_articles/security/what-encryption-is-used.md b/_articles/security/what-encryption-is-used.md index 73e30249..97487ab2 100644 --- a/_articles/security/what-encryption-is-used.md +++ b/_articles/security/what-encryption-is-used.md @@ -15,9 +15,10 @@ Bitwarden uses [AES][aes]{:target="blank"} 256 bit encryption as well as [PBKDF2 Bitwarden does not write any crypto code. Bitwarden only invokes crypto from popular and reputable crypto libraries that are written and maintained by cryptography experts. The following crypto libraries are used: -- Javascript (web and browser extension vaults) +- JavaScript (web, browser extension, desktop, and CLI vaults) - [Forge][forge]{:target="blank"} - [Web Crypto][webcrypto]{:target="blank"} + - [Node.js Crypto][nodecrypto]{:target="blank"} - C# (mobile vault) - CommonCrypto (iOS, Apple) - Javax.Crypto (Android, Oracle) @@ -30,3 +31,4 @@ Bitwarden **always** encrypts and/or hashes your data on your local device befor [forge]: https://github.com/digitalbazaar/forge [webcrypto]: https://w3c.github.io/webcrypto/Overview.html [bouncy]: http://www.bouncycastle.org/csharp/ +[nodecrypto]: https://nodejs.org/api/crypto.html