1
0
mirror of https://github.com/bitwarden/help synced 2025-12-11 05:43:20 +00:00
Files
help/_articles/security/what-encryption-is-used.md
Kyle Spearrin e1436f633b rename file
2016-10-15 02:32:19 -04:00

1.4 KiB

layout, title, category, featured, popular, tags
layout title category featured popular tags
article What encryption is being used? Security true false
encryption

bitwarden uses AES 256 bit encryption as well as PBKDF2 to secure your data.

AES is used by the US government and other government agencies around the world for protecting top secret data. With proper implementation and a strong encryption key (your master password), it is considered unbreakable.

PBKDF2 is used to derive the encryption key from your master password. This key is then salted and hashed.

bitwarden does not write any crypto code. bitwarden only invokes crypto from popular and reputable crypto libraries that are written and maintined by cryptography experts. The following crypto libraries are used:

  • Javascript (web and browser extension vaults)
  • C# (mobile vault)
    • CommonCrypto (iOS, Apple)
    • Javax.Crypto (Android, Oracle)
    • BouncyCastle (Android)

bitwarden always encrypts and/or hashes your data on your local device before it is every sent to the cloud servers for syncing. The bitwarden servers are only used for storing encrypted data. It is not possible to get your unencrypted data from the bitwarden cloud servers.