API密钥约定
所有 API 密钥都按照某种不成文的约定都是十六进制数字吗?
Are all API keys hexadecimal numbers by some sort of unwritten convention?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
所有 API 密钥都按照某种不成文的约定都是十六进制数字吗?
Are all API keys hexadecimal numbers by some sort of unwritten convention?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
对一些半随机数据(例如时间戳+用户ID+密钥)进行md5哈希是生成难以猜测的固定长度密钥的快速方法。
由于 md5 产生十六进制输出,因此人们直接使用它。它们可以转换为高基数,但通常不会大力推动这样做,因为传输的数据差异很小。
Doing a md5 hash on a some semi random data (e.g. timestamp + userid + key) is a fast way to generate a key of a fixed length that is hard to guess.
Since md5 produces hex output, people just use it straight. They could convert to a high base, but there is not generally a big push to do so since the difference in data transmitted is so small.
不,API 密钥是基于书面约定的十六进制数字。
API 密钥基于 UUID。
“UUID 被记录为 ISO/IEC 11578:1996“信息技术 – 开放系统互连 – 远程过程调用 (RPC)”的一部分,以及最近在 ITU-T Rec. X.667 | ISO/IEC 9834-8:2005 中的记录。 IETF 已发布标准轨道 RFC 4122,其在技术上与 ITU-T Rec X.667 | ISO/IEC 9834-8 等效。
大多数 API 使用的 MD5 密钥是 UUID 的一个版本。
No, API keys are hexadecimal numbers based upon a written convention.
API keys are based upon UUIDs.
"UUIDs are documented as part of ISO/IEC 11578:1996 "Information technology – Open Systems Interconnection – Remote Procedure Call (RPC)" and more recently in ITU-T Rec. X.667 | ISO/IEC 9834-8:2005. The IETF has published Standards Track RFC 4122 that is technically equivalent with ITU-T Rec. X.667 | ISO/IEC 9834-8."
MD5 keys used for most APIs are a version of UUIDs.