伪随机函数 SipHash
- 授权协议: 未知
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://131002.net/siphash/
- 软件文档: https://131002.net/siphash/
软件介绍
SipHash 是一系列伪随机函数(又名的散列函数),专为短消息的速度优化。
SipHash 的用户包括:
Bloomberg: SipHash-2-4 is one of the hashes in Bloomberg's Basic Development Environment (documentation,code)
OpenBSD: SipHash-2-4 and SipHash-4-8 have been committed under sys/crypto, and SipHash-2-4 is to be used in the in_pcb hashing
Shardmap: SipHash-2-4 is the hash function of this directory indexing system, "the designated successor of HTree"
SoundHound, which "makes heavy use" of SipHash
Python: SipHash-2-4 is used as
hash()"on all major platforms" (patch, PEP)FreeBSD: SipHash-2-4 is used to protect SYN cookies from forgeries (code, revision)
Hashable: SipHash-2-4 is used to hash objects in this Haskell package part of the Haskell Platform (blog)
Rubinius: SipHash-2-4 is used in the hash tables implementation (commit)
JRuby: SipHash-2-4 is the optional algorithm in the hash tables implementation (commit)
Perl 5: SipHash-2-4 is optional in Perl builds (commit,code)
Redis: SipHash-2-4 is used in the hash tables implementation of this advanced key-value data store (pull request)
Ruby: SipHash-2-4 is used in the hash tables implementation (vulnerability report, changelog)
OpenDNS: SipHash-2-4 is used in the dnscache instances of all OpenDNS resolvers (patch).
Rust: SipHash-2-4 is used in the hash tables implementation of this "safe, concurrent, practical language" developed by Mozilla (patch,hash.rs).
Sodium: SipHash-2-4 is the "shorthash" function of this cryptography library based on NaCl
Java高并发编程详解
汪文君 / 机械工业出版社 / 2018-6 / 89.00元
本书共分为四个部分:部分详细地介绍了Java多线程的基本用法和各个API的使用,并且着重介绍了线程与Java虚拟机内存之间的关系。第二部分由线程上下文类加载器方法引入,介绍为什么在线程中要有上下文类加载器的方法函数,从而掌握类在JVM的加载和初始化的整个过程。第三部分主要围绕着volatile关键字展开,在该部分中我们将会了解到现代CPU的架构以及Java的内存模型(JMM)。后一部分,主要站在架......一起来看看 《Java高并发编程详解》 这本书的介绍吧!
