• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/workflows/23-Nov-2023-2423

c/23-Nov-2023-37,31431,737

csharp/23-Nov-2023-5,0743,920

docs/23-Nov-2023-1,3021,192

fetch-spec/23-Nov-2023-11794

go/23-Nov-2023-765570

java/23-Nov-2023-10,1967,647

js/23-Nov-2023-2,2351,770

python/23-Nov-2023-1,5421,172

research/23-Nov-2023-5,0624,188

scripts/23-Nov-2023-571462

tests/23-Nov-2023-26,10922,917

.editorconfigD23-Nov-2023660 4134

.gitattributesD23-Nov-20231.3 KiB5547

.gitignoreD23-Nov-2023146 2017

.travis.ymlD23-Nov-20235.8 KiB230171

Android.bpD23-Nov-20237.1 KiB197185

BUILDD23-Nov-20232.6 KiB145120

CMakeLists.txtD23-Nov-202315 KiB422357

CONTRIBUTING.mdD23-Nov-20231.4 KiB2824

CleanSpec.mkD23-Nov-20232.3 KiB532

LICENSED23-Nov-20231.1 KiB2016

MANIFEST.inD23-Nov-2023361 1817

METADATAD23-Nov-2023368 2019

MODULE_LICENSE_MITD23-Nov-20230

MakefileD23-Nov-20231.4 KiB5643

Makefile.amD23-Nov-20231.2 KiB3926

OWNERSD23-Nov-202368 54

READMED23-Nov-2023652 1611

README.mdD23-Nov-20234.2 KiB10564

WORKSPACED23-Nov-2023339 2217

bootstrapD23-Nov-20231.5 KiB3627

compiler_config_setting.bzlD23-Nov-20231 KiB2926

configureD23-Nov-2023425 97

configure-cmakeD23-Nov-202311.1 KiB319258

configure.acD23-Nov-2023321 149

premake5.luaD23-Nov-20231.7 KiB7962

setup.cfgD23-Nov-202353 64

setup.pyD23-Nov-20239.4 KiB294247

README

1BROTLI DATA COMPRESSION LIBRARY
2
3Brotli is a generic-purpose lossless compression algorithm that compresses data
4using a combination of a modern variant of the LZ77 algorithm, Huffman coding
5and 2nd order context modeling, with a compression ratio comparable to the best
6currently available general-purpose compression methods. It is similar in speed
7with deflate but offers more dense compression.
8
9The specification of the Brotli Compressed Data Format is defined in RFC 7932
10https://tools.ietf.org/html/rfc7932
11
12Brotli is open-sourced under the MIT License, see the LICENSE file.
13
14Brotli mailing list:
15https://groups.google.com/forum/#!forum/brotli
16

README.md

1<p align="center"><img src="https://brotli.org/brotli.svg" alt="Brotli" width="64"></p>
2
3# SECURITY NOTE
4
5Please consider updating brotli to version 1.0.9 (latest).
6
7Version 1.0.9 contains a fix to "integer overflow" problem. This happens when "one-shot" decoding API is used (or input chunk for streaming API is not limited), input size (chunk size) is larger than 2GiB, and input contains uncompressed blocks. After the overflow happens, `memcpy` is invoked with a gigantic `num` value, that will likely cause the crash.
8
9### Introduction
10
11Brotli is a generic-purpose lossless compression algorithm that compresses data
12using a combination of a modern variant of the LZ77 algorithm, Huffman coding
13and 2nd order context modeling, with a compression ratio comparable to the best
14currently available general-purpose compression methods. It is similar in speed
15with deflate but offers more dense compression.
16
17The specification of the Brotli Compressed Data Format is defined in [RFC 7932](https://tools.ietf.org/html/rfc7932).
18
19Brotli is open-sourced under the MIT License, see the LICENSE file.
20
21Brotli mailing list:
22https://groups.google.com/forum/#!forum/brotli
23
24[![TravisCI Build Status](https://travis-ci.org/google/brotli.svg?branch=master)](https://travis-ci.org/google/brotli)
25[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/google/brotli?branch=master&svg=true)](https://ci.appveyor.com/project/szabadka/brotli)
26[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/brotli.svg)](https://oss-fuzz-build-logs.storage.googleapis.com/index.html#brotli)
27
28### Build instructions
29
30#### Vcpkg
31
32You can download and install brotli using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
33
34    git clone https://github.com/Microsoft/vcpkg.git
35    cd vcpkg
36    ./bootstrap-vcpkg.sh
37    ./vcpkg integrate install
38    vcpkg install brotli
39
40The brotli port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
41
42#### Autotools-style CMake
43
44[configure-cmake](https://github.com/nemequ/configure-cmake) is an
45autotools-style configure script for CMake-based projects (not supported on Windows).
46
47The basic commands to build, test and install brotli are:
48
49    $ mkdir out && cd out
50    $ ../configure-cmake
51    $ make
52    $ make test
53    $ make install
54
55By default, debug binaries are built. To generate "release" `Makefile` specify `--disable-debug` option to `configure-cmake`.
56
57#### Bazel
58
59See [Bazel](http://www.bazel.build/)
60
61#### CMake
62
63The basic commands to build and install brotli are:
64
65    $ mkdir out && cd out
66    $ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./installed ..
67    $ cmake --build . --config Release --target install
68
69You can use other [CMake](https://cmake.org/) configuration.
70
71#### Premake5
72
73See [Premake5](https://premake.github.io/)
74
75#### Python
76
77To install the latest release of the Python module, run the following:
78
79    $ pip install brotli
80
81To install the tip-of-the-tree version, run:
82
83    $ pip install --upgrade git+https://github.com/google/brotli
84
85See the [Python readme](python/README.md) for more details on installing
86from source, development, and testing.
87
88### Benchmarks
89* [Squash Compression Benchmark](https://quixdb.github.io/squash-benchmark/) / [Unstable Squash Compression Benchmark](https://quixdb.github.io/squash-benchmark/unstable/)
90* [Large Text Compression Benchmark](http://mattmahoney.net/dc/text.html)
91* [Lzturbo Benchmark](https://sites.google.com/site/powturbo/home/benchmark)
92
93### Related projects
94> **Disclaimer:** Brotli authors take no responsibility for the third party projects mentioned in this section.
95
96Independent [decoder](https://github.com/madler/brotli) implementation by Mark Adler, based entirely on format specification.
97
98JavaScript port of brotli [decoder](https://github.com/devongovett/brotli.js). Could be used directly via `npm install brotli`
99
100Hand ported [decoder / encoder](https://github.com/dominikhlbg/BrotliHaxe) in haxe by Dominik Homberger. Output source code: JavaScript, PHP, Python, Java and C#
101
1027Zip [plugin](https://github.com/mcmilk/7-Zip-Zstd)
103
104Dart [native bindings](https://github.com/thosakwe/brotli)
105