blob: a76caeace005eb9e1df3ebbea453c07fe8486def (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
LIBRARY()
LICENSE(MIT)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
VERSION(2016)
ORIGINAL_SOURCE(https://www.nayuki.io/page/fast-md5-hash-implementation-in-x86-assembly)
IF (OS_LINUX AND ARCH_X86_64)
SRCS(
md5-fast-x8664.S
)
ELSE()
SRCS(
md5.c
)
ENDIF()
END()
|