What is the difference between a “nonce” and a “GUID”?

浪子不回头ぞ 提交于 2019-12-05 17:32:41

问题


This question here is about creating an authentication scheme. The accepted answer given by AviD states

Your use of a cryptographic nonce is also important, that many tend to skip over - e.g. "lets just use a GUID"...


Which leads me to my question. Why wouldn't you just use a GUID?


回答1:


Whenever you randomly generate a random number intended to be used in cryptography, you should be really sure that the number is really random. GUIDs tend to be generated based on values that can be discovered, guessed or inferred, such as current system time or a network card MAC address, and thus the nonce could potentially be guessed.




回答2:


Nonces should be random (or at least non-guessable). GUIDs have quite a bit of non-randomness to them (I'm not sure how many bits of entropy are in a GUID).



来源:https://stackoverflow.com/questions/3221710/what-is-the-difference-between-a-nonce-and-a-guid

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!