1 ****** ***** ****** UnRAR - free utility for RAR archives
2 ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 ****** ******* ****** License for use and distribution of
4 ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 ** ** ** ** ** ** FREE portable version
8 The source code of UnRAR utility is freeware. This means:
10 1. All copyrights to RAR and the utility UnRAR are exclusively
11 owned by the author - Alexander Roshal.
13 2. UnRAR source code may be used in any software to handle
14 RAR archives without limitations free of charge, but cannot be
15 used to develop RAR (WinRAR) compatible archiver and to
16 re-create RAR compression algorithm, which is proprietary.
17 Distribution of modified UnRAR source code in separate form
18 or as a part of other software is permitted, provided that
19 full text of this paragraph, starting from "UnRAR source code"
20 words, is included in license, or in documentation if license
21 is not available, and in source code comments of resulting package.
23 3. The UnRAR utility may be freely distributed. It is allowed
24 to distribute UnRAR inside of other software packages.
26 4. THE RAR ARCHIVER AND THE UnRAR UTILITY ARE DISTRIBUTED "AS IS".
27 NO WARRANTY OF ANY KIND IS EXPRESSED OR IMPLIED. YOU USE AT
28 YOUR OWN RISK. THE AUTHOR WILL NOT BE LIABLE FOR DATA LOSS,
29 DAMAGES, LOSS OF PROFITS OR ANY OTHER KIND OF LOSS WHILE USING
30 OR MISUSING THIS SOFTWARE.
32 5. Installing and using the UnRAR utility signifies acceptance of
33 these terms and conditions of the license.
35 6. If you don't agree with terms of the license you must remove
36 UnRAR files from your storage devices and cease to use the
39 Thank you for your interest in RAR and UnRAR.
45 -----------------------------------------------------------------------------
50 * We used "Screaming Fast Galois Field Arithmetic Using Intel
\r
51 SIMD Instructions" paper by James S. Plank, Kevin M. Greenan
\r
52 and Ethan L. Miller to improve Reed-Solomon coding performance.
\r
53 Also we are grateful to Artem Drobanov and Bulat Ziganshin
\r
54 for samples and ideas allowed to make Reed-Solomon coding
\r
57 * RAR text compression algorithm is based on Dmitry Shkarin PPMII
\r
58 and Dmitry Subbotin carryless rangecoder public domain source code.
\r
59 You may find it in ftp.elf.stuba.sk/pub/pc/pack.
\r
61 * RAR encryption includes parts of code from Szymon Stefanek
\r
62 and Brian Gladman AES implementations also as Steve Reid SHA-1 source.
\r
64 ---------------------------------------------------------------------------
\r
65 Copyright (c) 2002, Dr Brian Gladman < >, Worcester, UK.
\r
66 All rights reserved.
\r
70 The free distribution and use of this software in both source and binary
\r
71 form is allowed (with or without changes) provided that:
\r
73 1. distributions of this source code include the above copyright
\r
74 notice, this list of conditions and the following disclaimer;
\r
76 2. distributions in binary form include the above copyright
\r
77 notice, this list of conditions and the following disclaimer
\r
78 in the documentation and/or other associated materials;
\r
80 3. the copyright holder's name is not used to endorse products
\r
81 built using this software without specific written permission.
\r
83 ALTERNATIVELY, provided that this notice is retained in full, this product
\r
84 may be distributed under the terms of the GNU General Public License (GPL),
\r
85 in which case the provisions of the GPL apply INSTEAD OF those given above.
\r
89 This software is provided 'as is' with no explicit or implied warranties
\r
90 in respect of its properties, including, but not limited to, correctness
\r
91 and/or fitness for purpose.
\r
92 ---------------------------------------------------------------------------
\r
94 Source code of this package also as other cryptographic technology
\r
95 and computing project related links are available on Brian Gladman's
\r
96 web site: http://www.gladman.me.uk
\r
98 * RAR uses CRC32 function based on Intel Slicing-by-8 algorithm.
\r
99 Original Intel Slicing-by-8 code is available here:
\r
101 http://sourceforge.net/projects/slicing-by-8/
\r
103 Original Intel Slicing-by-8 code is licensed under BSD License
\r
104 available at http://www.opensource.org/licenses/bsd-license.html
\r
106 Copyright (c) 2004-2006 Intel Corporation.
\r
107 All Rights Reserved
\r
109 Redistribution and use in source and binary forms, with or without
\r
110 modification, are permitted provided that the following conditions
\r
113 Redistributions of source code must retain the above copyright notice,
\r
114 this list of conditions and the following disclaimer.
\r
116 Redistributions in binary form must reproduce the above copyright
\r
117 notice, this list of conditions and the following disclaimer
\r
118 in the documentation and/or other materials provided with
\r
121 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
\r
122 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
\r
123 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
\r
124 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
\r
125 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
\r
126 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
\r
127 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
\r
128 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
\r
129 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
\r
130 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
\r
131 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\r
134 * RAR archives may optionally include BLAKE2sp hash ( https://blake2.net ),
\r
135 designed by Jean-Philippe Aumasson, Samuel Neves, Zooko Wilcox-O'Hearn
\r
136 and Christian Winnerlein.
\r
138 * Useful hints provided by Alexander Khoroshev and Bulat Ziganshin allowed
\r
139 to significantly improve RAR compression and speed.
\r