本文介绍了MD5是128位,但为什么它是32个字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我读了一些关于md5的文档,它说它的128位,但为什么它是32个字符?我无法计算字符。




  • 1个字节为8位

  • 如果1个字符为1字节

  • 然后128位是128/8 = 16个字节?



编辑:



SHA-1产生160位,所以有多少个字符?

解决方案>

32个字符为十六进制表示,每个字节为2个字符。


I read some docs about md5, it said that its 128 bits, but why is it 32 characters? I can't compute the characters.

  • 1 byte is 8 bits
  • if 1 character is 1 byte
  • then 128 bits is 128/8 = 16 bytes right?

EDIT:

SHA-1 produces 160 bits, so how many characters are there?

解决方案

32 chars as hexdecimal representation, thats 2 chars per byte.

这篇关于MD5是128位,但为什么它是32个字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 14:27