1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Description:
# SipHash and HighwayHash: cryptographically-strong pseudorandom functions
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
cc_library(
name = "sip_hash",
srcs = ["highwayhash/sip_hash.cc"],
hdrs = [
"highwayhash/sip_hash.h",
"highwayhash/endianess.h",
"highwayhash/state_helpers.h",
],
visibility = ["//visibility:public"],
deps = [
":arch_specific",
":compiler_specific",
],
)
cc_library(
name = "arch_specific",
srcs = ["highwayhash/arch_specific.cc"],
hdrs = ["highwayhash/arch_specific.h"],
deps = [":compiler_specific"],
)
cc_library(
name = "compiler_specific",
hdrs = ["highwayhash/compiler_specific.h"],
)
|