]> git.proxmox.com Git - ceph.git/blob - ceph/src/crypto/isa-l/isa-l_crypto/README.md
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / crypto / isa-l / isa-l_crypto / README.md
1 ================================================================
2 Intel(R) Intelligent Storage Acceleration Library Crypto Version
3 ================================================================
4
5 ISA-L_crypto is a collection of optimized low-level functions targeting storage
6 applications. ISA-L_crypto includes:
7
8 * Multi-buffer hashes - run multiple hash jobs together on one core for much
9 better throughput than single-buffer versions.
10 - SHA1, SHA256, SHA512, MD5
11
12 * Multi-hash - Get the performance of multi-buffer hashing with a single-buffer
13 interface.
14
15 * Multi-hash + murmur - run both together.
16
17 * AES - block ciphers
18 - XTS, GCM, CBC
19
20 See [ISA-L_crypto for updates.](https://github.com/01org/isa-l_crypto)
21 For non-crypto ISA-L see [isa-l on github.](https://github.com/01org/isa-l)
22
23 Build Prerequisites
24 ===================
25
26 ISA-L requires yasm version 1.2.0 or later or nasm v2.11.01 or later. Building
27 with autotools requires autoconf/automake packages.
28
29 Building ISA-L
30 ==============
31
32 Autotools
33 ---------
34
35 To build and install the library with autotools it is usually sufficient to run
36 the following:
37
38 ./autogen.sh
39 ./configure
40 make
41 sudo make install
42
43 Other targets include: make check, make tests, make perfs, make ex (examples)
44 and make other.
45
46 Windows
47 -------
48
49 On Windows use nmake to build dll and static lib:
50
51 nmake -f Makefile.nmake
52
53 Other targets include: nmake check.