FuckMyBytes3
A stronger version of FMB brought to you by ABF technologies inc.
Everything happens in your browser, don't worry about privacy.
Or
How it works?
- Key generation
- Generates a random 32-byte salt
- Convert password into bytes with UTF-8 encoding
- PBKDF2 the password (SHA-512, 100000x, 512 bits, salt)
- Secure the 32-byte key
- Encryption
- Generates a 16-byte initialization vector
- Sets up AES in galois counter mode
- Encrypt bytes using the AES
- Combine the data in the following order:
- First 32 bytes: Salt
- Next 16 bytes: Initialization vector
- Remaining: data
Stronger, better, resistant.