API密钥约定

发布于 2024-10-11 11:40:10 字数 37 浏览 3 评论 0原文

所有 API 密钥都按照某种不成文的约定都是十六进制数字吗?

Are all API keys hexadecimal numbers by some sort of unwritten convention?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ら栖息 2024-10-18 11:40:10

对一些半随机数据(例如时间戳+用户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.

围归者 2024-10-18 11:40:10

不,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文