correcthorsebatterystaple. How many bits of entropy does this have?
rg8Ql34g. How many bits of entropy does this have?
The number of possiblities is equal to (26 * 2 + 10)^8 = 62^8. The entropy is then equal to log2(628 = 47.63 bits of entropy.
The first password is stronger and is also easier to memorize.
Case 1: 10^20 possibilities / 10 000 passwords/second = 10^16 seconds / 86400 seconds/day = 1.15 * 10^11 days / 365 days/year = 317 097 919.83764 years to gues all the passwords so 158 548 959.91882 years on average to guess the password.
Case 2: 62^8 possibilities / 10 000 passwords/second = 2.1834 * 10^10 seconds / 86 400 seconds/day = 252 708.45554 days / 365 days/year = 692.35193 years to guess all the passwords so 346.17597 years on average to guess the password.
sha256sum command) with the hash retrieved from the official Debian site (e.g. this file hosted at debian.org, if you’ve downloaded the linked file from the Argentinean mirror).
wget http://debian.xfree.com.ar/debian-cd/current/amd64/iso-cd/debian-12.X.X-amd64-netinst.iso
wget https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/SHA256SUMS
sha256sum debian-12.X.X-amd64-netinst.iso
sha256sum -c SHA256SUMS 2>&1 | grep debian-12.X.X-amd64-netinst.iso
If you see 'OK' as an output everything went fine, if not...
openssl aes-256-cbc -salt -in {input filename} -out {output filename}. Look at the contents using cat or hexdump. Decrypt it with openssl aes-256-cbc -d -in {input filename} -out {output filename} and confirm that the contents match the original using cmp.
openssl aes-256-cbc -salt -in original_file.txt -out encrypted_file.enc
hexdump -C encrypted_file.enc
openssl aes-256-cbc -d -in encrypted_file.enc -out decrypted_file.txt
cmp original_file.txt decrypted_file.txt
ssh-keygen -t ed2551
Be sure to enter a passphrase when prompted and don't write it down on your computer.
gpg --encrypt --sign --armor -r person@email.com file_to_encrypt
git commit -S or create a signed Git tag with git tag -s. Verify the signature on the commit with git show --show-signature or on the tag with git tag -v.
ABCDEF1234567890 with your key ID and replace user with your git username if it's still not configured)
git config --global user.signingkey ABCDEF1234567890
git commit -S -m "Your commit message"
git show --show-signature
git tag -s v1.0 -m "Version 1.0 release"
git tag -v v1.0