博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
说说 MD5 加密后的类型(16位与 32位的区别)
阅读量:1903 次
发布时间:2019-04-26

本文共 160 字,大约阅读时间需要 1 分钟。

MD5 加密后的位数一般为两种,16 位与 32 位。16 位实际上是从 32 位字符串中,取中间的第 9 位到第 24 位的部分,用 Java 语言来说,即:

str.substring(8, 24);

MD5 加密后的字符串又分为大写与小写两种。

所以一个 “123456” 字符串,MD5 加密后的结果类型有这些:

你可能感兴趣的文章
sort & search algorithm
查看>>
design pattern
查看>>
算法-动态规划2
查看>>
算法-动态规划3
查看>>
算法-计算1的个数及python sort函数的多层排序
查看>>
build tree & sum path (usage of list[0]) - 404. Sum of Left Leaves
查看>>
backtrace&usage of slice notation[:] - leetcode 77. Combinations
查看>>
regular expression examples
查看>>
subsets : zero left padding : leetcode 78
查看>>
slide window & +Counter() : leetcode 438. Find All Anagrams in a String
查看>>
python 模块导入注意事项
查看>>
Python slice notation [:] - leetcode 189. Rotate Array
查看>>
quick sort
查看>>
binary search - leetcode 33. Search in Rotated Sorted Array
查看>>
自动为 Gatsby网站中的 Markdown 页面添加 sidebar
查看>>
leetcode 463. Island Perimeter
查看>>
leetcode 122. Best Time to Buy and Sell Stock II
查看>>
第二个MacBook,继续加油!
查看>>
unittest source code learning
查看>>
故障处理_vxwork 大端序和变量指针
查看>>