gpt4 book ai didi

java - 我应该更喜欢 ThreadLocalRandom 还是 SecureRandom?

转载 作者:搜寻专家 更新时间:2023-11-01 01:31:50 25 4
gpt4 key购买 nike

我知道 Random 类会生成不安全的随机序列,在处理安全问题时我应该更喜欢使用 SecureRandom。但是 ThreadLocalRandom 呢?它更安全还是更不安全?

// generate a five-digit numeric confirmation code
Long code = ThreadLocalRandom.current().nextLong(1, 99999);

最佳答案

its javadoc 中所述, ThreadLocalRandom 类似于 Random(即不安全),但在并发访问的情况下具有更好的性能。

Instances of ThreadLocalRandom are not cryptographically secure. Consider instead using SecureRandom in security-sensitive applications.

关于java - 我应该更喜欢 ThreadLocalRandom 还是 SecureRandom?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44502167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com