如何检查字符串是否是有效的 md5 或 sha1 校验和字符串
我不想计算文件的校验和,只是想知道给定的字符串是否是有效的校验和
I don't want to calculate a file's checksum, just to know if a given string is a valid checksum
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
SHA1 验证者:
MD5 验证者:
SHA1 verifier:
MD5 verifier:
任何 160 位序列都是可能的 SHA1 哈希值。任何 128 位序列都是可能的 MD5 哈希值。
如果您查看它们的十六进制字符串表示形式,那么 sha1 将看起来像 40 个十六进制数字,而 md5 将看起来像 32 个十六进制数字。
Any 160-bit sequence is a possible SHA1 hash. Any 128-bit sequence is a possible MD5 hash.
If you're looking at the hex string representations of them, then a sha1 will look like 40 hexadecimal digits, and an md5 will look like 32 hexadecimal digits.
不存在 MD5 或 SHA-1 字符串这样的东西,至少没有标准化的字符串。您可以测试的只是字节数组的大小:MD5 为 16(输出大小为 128 位的哈希值),SHA-1 为 20 字节(输出大小为 160 位的哈希值),使用十六进制编码或Base 64 编码。
如果您使用
md5sum
,那么校验和通常显示为十六进制编码,仅使用小写字符(后跟文件名或标准输入的-
)。通常首选十六进制,但哈希值也可能包含分隔符或使用不同的编码,例如 Base 64 或 Base 64 URL(等等)。然而,您正在测试的字节大小可能属于完全不同的哈希,例如 RIPEMD 可能也具有相同的输出大小。或者它可能是具有相同字节数的另一个值。
There is no such thing as an MD5 or SHA-1 string, at least not one that is standardized. All you can test for is the size of the byte array: 16 for MD5 (a hash with an output size of 128 bits) or 20 bytes for SHA-1 (a hash with an output size of 160 bits) encoded using hexadecimal encoding or base 64 encoding.
If you use
md5sum
then generally the checksum is shown as hexadecimal encoding, using only lowercase characters (followed by the file name or-
for standard input). Hexadecimals are generally preferred, but hashes may also contain separator character or use a different encoding such as base 64 or base 64 URL (etc. etc.).The byte size you are testing for might however belong to an entirely different hash such as RIPEMD that may also have the same output size. Or it may be another value with the same amount of bytes.
MD5验证器:
并删除字符串值的“-”。
MD5 verifier:
And remove "-" of the string value.
正则表达式 SHA-1
RegExp SHA-1