8000 GitHub - timonus/Brotli: An NSData category that provides Brotli compression and decompression for iOS
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ Brotli Public
forked from karlvr/Brotli

An NSData category that provides Brotli compression and decompression for iOS

License

Notifications You must be signed in to change notification settings

timonus/Brotli

 
 

Repository files navigation

Brotli

CI Status Version License Platform

Example

Compression

NSData *data = ...;
NSData *compressed = [data brotliCompressed];

Decompression

NSData *compressed = ...;
NSData *decompressed = [compressed brotliDecompressed];

Installation

Brotli is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'Brotli'

Author

Karl von Randow, karl@xk72.com

This pod was inspired by the work of Matthew Cheok, https://github.com/matthewcheok/Brotli

License

Brotli is available under the MIT license. See the LICENSE file for more info. Brotli includes the official Brotli source code from https://github.com/google/brotli. That source code is covered by the official Brotli license, which is included in the LICENSE file.

About

An NSData category that provides Brotli compression and decompression for iOS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.7%
  • C++ 1.1%
  • Other 0.2%
0