

Implementation of SHA512-crypt vs MD5-crypt
source link: https://www.vidarholen.net/contents/blog/?tag=sha512
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Implementation of SHA512-crypt vs MD5-crypt
If you have a new installation, you’re probably using SHA512-based passwords instead of the older MD5-based passwords described in detail in the previous post, which I’ll assume you’ve read. sha512-crypt is very similar to md5-crypt, but with some interesting differences.
Since the implementation of sha512 is really less interesting than the comparison with md5-crypt, I’ll describe it by striking out the relevant parts of the md5-crypt description and writing in what sha512-crypt does instead.
Like md5-crypt, it can be divided into three phases. Initialization, loop, and finalization.
- Generate a simple md5 sha512 hash based on the salt and password
- Loop 1000 5000 times, calculating a new sha512 hash based on the previous hash concatenated with alternatingly the hash of the password and the salt. Additionally, sha512-crypt allows you to specify a custom number of rounds, from 1000 to 999999999
- Use a special base64 encoding on the final hash to create the password hash string
The main differences are the higher number of rounds, which can be user selected for better (or worse) security, the use of the hashed password and salt in each round, rather than the unhashed ones, and a few tweaks of the initialization step.
Here’s the real sha512-crypt initialization.
- Let “password” be the user’s ascii password, “salt” the ascii salt (truncated to 8 16 chars) , and “magic” the string “$1$”
- Start by computing the Alternate sum,
sha512(password + salt + password)
- Compute the Intermediate0 sum by hashing the concatenation of the following strings:
- Password
- Magic
- length(password) bytes of the Alternate sum, repeated as necessary
- For each bit in length(password), from low to high and stopping after the most significant set bit
- If the bit is set, append a NUL byte the Alternate sum
- If it’s unset, append the first byte of the password
- New: Let S_factor be 16 + the first byte of Intermediate0
- New: Compute the S bytes, length(salt) bytes of sha512(salt, concatenated S_factor times).
- New: Compute the P bytes, length(password) bytes of sha512(password), repeated as necessary
Step 3.5 — which was very strange in md5-crypt — now makes a little more sense. We also calculated the S bytes and P bytes, which from here on will be used just like salt and password was in md5-crypt.
From this point on, the calculations will only involve the password P bytes, salt S bytes, and the Intermediate0 sum. Now we loop 5000 times (by default), to stretch the algorithm.
- For i = 0 to 4999 (inclusive), compute Intermediatei+1 by concatenating and hashing the following:
- If i is even, Intermediatei
- If i is odd, password P bytes
- If i is not divisible by 3, salt S bytes
- If i is not divisible by 7, password P bytes
- If i is even, password P bytes
- If i is odd, Intermediatei
At this point you don’t need Intermediatei anymore.
You will now have ended up with Intermediate5000. Let’s call this the Final sum. Since sha512 is 512bit, this is 64 bytes long.
The bytes will be rearranged, and then encoded as 86 ascii characters using the same base64 encoding as md5-crypt.
- Output the magic, “$6$”
- New: If using a custom number of rounds, output “rounds=12345$”
- Output the salt
- Output a “$” to separate the salt from the encrypted section
- Pick out the 64 bytes in this order: 63 62 20 41 40 61 19 18 39 60 59 17 38 37 58 16 15 36 57 56 14 35 34 55 13 12 33 54 53 11 32 31 52 10 9 30 51 50 8 29 28 49 7 6 27 48 47 5 26 25 46 4 3 24 45 44 2 23 22 43 1 0 21 42
- For each group of 6 bits (there’s 86 groups), starting with the least significant
- Output the corresponding base64 character with this index
- For each group of 6 bits (there’s 86 groups), starting with the least significant
And yes, I do have a shell script for this as well: sha512crypt. This one takes about a minute to generate a hash, due to the higher number of rounds. However, it doesn’t support custom rounds.
I hope these two posts have provided an interesting look at two exceedingly common, but often overlooked, algorithms!
Recommend
-
21
Linux uses dm-crypt in order to provide transparent disk or partition encryption. What are the options in case you need to recover passphrase from such encryption? There are already ready-made tools, but we have also produ...
-
48
README.org
-
7
Crypt your config files with PowerShell Oct 31, 2007 sysadmin...
-
5
Jan 6, 2015 - 27 minute read - Comments - Crypto
-
10
Latency penalty [Date Prev][Date Next][
-
18
add post processing queue · torvalds/linux@cabf08e · GitHubPermalink
-
20
use io thread for reads only if mempool exhausted · torvalds/linux@20c8253 · GitHubPermalink
-
14
offload writes to thread · torvalds/linux@dc26762 · GitHubPermalink
-
7
代码实现sha-256加密算法 sha-256.go package tools import ( "crypto/sha256" "encoding/hex" ) //SHA256生成哈希值 func GetSHA256HashCode(stringMessage string) string { message :=...
-
6
Saurabh Kumar Jha February 16, 2023 1 minute read...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK