encrypt or decrypt something with nothing or vice-versa
bash
cargo install obg
For instance, any video, image, audio or any files binary or plaintext can be used to encrypt another file.
Let's download nothing.png
and use that as raw-bytes "password"
input in a PBKDF2 key-derivation thus generating a AES key to later
encrypt/decrypt files.
bash
wget http://oceania.sh/nothing.png
obg keygen --password ./nothing.png --salt "nihilism" --cycles 84000 -o key-made-of-nothing.yml
bash
obg encrypt file --key-file key-made-of-nothing.yml nothing.png nothing-encrypted.png
bash
obg encrypt file --key-file key-made-of-nothing.yml nothing-encrypted.png nothing.png
bash
obg keygen --password "here goes your password" --salt "here goes your salt" --randomize-iv --cycles 42000 -o key-made-of-typed-password.yml
From there the encryption/decryption works the same as above.
Both --password
or -salt
arguments of obg keygen
can be
paths to files, but if the given path don't exist in the file-system
the password or salt will be that path.