This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dear [First Name], | |
We're really sorry but our systems were compromised and the attackers | |
managed to take a copy of your passwords. | |
The passwords were stored as: | |
[ ] Bcrypt hashes with a cost factor of X | |
[ ] PBKDF2 hashes with an iteration count of X | |
[ ] scrypt because I am Colin Percival |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script automatically sets the version and short version string of | |
# an Xcode project from the Git repository containing the project. | |
# | |
# To use this script in Xcode, add the script's path to a "Run Script" build | |
# phase for your application target. | |
set -o errexit | |
set -o nounset |