1              Ricochet - https://ricochet.im/
2Copyright (C) 2014-2016, John Brooks <john.brooks@dereferenced.net>
3
4Redistribution and use in source and binary forms, with or without
5modification, are permitted provided that the following conditions are
6met:
7
8    * Redistributions of source code must retain the above copyright
9notice, this list of conditions and the following disclaimer.
10
11    * Redistributions in binary form must reproduce the above
12copyright notice, this list of conditions and the following disclaimer
13in the documentation and/or other materials provided with the
14distribution.
15
16    * Neither the names of the copyright owners nor the names of its
17contributors may be used to endorse or promote products derived from
18this software without specific prior written permission.
19
20THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32-------------------------------------------------------------------------------
33
34Tor is a registered trademark of The Tor Project, Inc.
35Ricochet is not in any way affiliated with or endorsed by The Tor Project.
36
37For more information about Tor, see https://www.torproject.org/.
38Tor is distributed under this license:
39
40Copyright (c) 2001-2004, Roger Dingledine
41Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
42Copyright (c) 2007-2010, The Tor Project, Inc.
43
44Redistribution and use in source and binary forms, with or without
45modification, are permitted provided that the following conditions are
46met:
47
48    * Redistributions of source code must retain the above copyright
49notice, this list of conditions and the following disclaimer.
50
51    * Redistributions in binary form must reproduce the above
52copyright notice, this list of conditions and the following disclaimer
53in the documentation and/or other materials provided with the
54distribution.
55
56    * Neither the names of the copyright owners nor the names of its
57contributors may be used to endorse or promote products derived from
58this software without specific prior written permission.
59
60THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
61"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
62LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
63A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
64OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
65SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
66LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
67DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
68THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
69(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
70OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
71
72
73src/common/strlcat.c and src/common/strlcpy.c by Todd C. Miller are licensed
74under the following license:
75
76 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
77 * All rights reserved.
78 *
79 * Redistribution and use in source and binary forms, with or without
80 * modification, are permitted provided that the following conditions
81 * are met:
82 * 1. Redistributions of source code must retain the above copyright
83 *    notice, this list of conditions and the following disclaimer.
84 * 2. Redistributions in binary form must reproduce the above copyright
85 *    notice, this list of conditions and the following disclaimer in the
86 *    documentation and/or other materials provided with the distribution.
87 * 3. The name of the author may not be used to endorse or promote products
88 *    derived from this software without specific prior written permission.
89 *
90 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
91 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
92 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
93 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
94 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
95 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
96 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
97 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
98 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
99 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
100
101-------------------------------------------------------------------------------
102
103The Qt Toolkit is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies)
104and other contributors.
105
106Qt is licensed under the GNU Lesser General Public License version 2.1,
107available online at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html,
108and a special exception, the text of which is distributed with Qt.
109
110This library is distributed in the hope that it will be useful, but WITHOUT
111ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
112FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
113details.
114
115-------------------------------------------------------------------------------
116
117Ricochet "R" icon by Lawrence Eastland, CC-BY-SA 4.0. See icons/LICENSE.
118
119-------------------------------------------------------------------------------
120
121/* ====================================================================
122 * Copyright (c) 1998-2008 The OpenSSL Project.  All rights reserved.
123 *
124 * Redistribution and use in source and binary forms, with or without
125 * modification, are permitted provided that the following conditions
126 * are met:
127 *
128 * 1. Redistributions of source code must retain the above copyright
129 *    notice, this list of conditions and the following disclaimer.
130 *
131 * 2. Redistributions in binary form must reproduce the above copyright
132 *    notice, this list of conditions and the following disclaimer in
133 *    the documentation and/or other materials provided with the
134 *    distribution.
135 *
136 * 3. All advertising materials mentioning features or use of this
137 *    software must display the following acknowledgment:
138 *    "This product includes software developed by the OpenSSL Project
139 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
140 *
141 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
142 *    endorse or promote products derived from this software without
143 *    prior written permission. For written permission, please contact
144 *    openssl-core@openssl.org.
145 *
146 * 5. Products derived from this software may not be called "OpenSSL"
147 *    nor may "OpenSSL" appear in their names without prior written
148 *    permission of the OpenSSL Project.
149 *
150 * 6. Redistributions of any form whatsoever must retain the following
151 *    acknowledgment:
152 *    "This product includes software developed by the OpenSSL Project
153 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
154 *
155 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
156 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
157 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
158 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
159 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
160 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
161 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
162 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
163 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
164 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
165 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
166 * OF THE POSSIBILITY OF SUCH DAMAGE.
167 * ====================================================================
168 *
169 * This product includes cryptographic software written by Eric Young
170 * (eay@cryptsoft.com).  This product includes software written by Tim
171 * Hudson (tjh@cryptsoft.com).
172 *
173 */
174
175 Original SSLeay License
176 -----------------------
177
178/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
179 * All rights reserved.
180 *
181 * This package is an SSL implementation written
182 * by Eric Young (eay@cryptsoft.com).
183 * The implementation was written so as to conform with Netscapes SSL.
184 *
185 * This library is free for commercial and non-commercial use as long as
186 * the following conditions are aheared to.  The following conditions
187 * apply to all code found in this distribution, be it the RC4, RSA,
188 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
189 * included with this distribution is covered by the same copyright terms
190 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
191 *
192 * Copyright remains Eric Young's, and as such any Copyright notices in
193 * the code are not to be removed.
194 * If this package is used in a product, Eric Young should be given attribution
195 * as the author of the parts of the library used.
196 * This can be in the form of a textual message at program startup or
197 * in documentation (online or textual) provided with the package.
198 *
199 * Redistribution and use in source and binary forms, with or without
200 * modification, are permitted provided that the following conditions
201 * are met:
202 * 1. Redistributions of source code must retain the copyright
203 *    notice, this list of conditions and the following disclaimer.
204 * 2. Redistributions in binary form must reproduce the above copyright
205 *    notice, this list of conditions and the following disclaimer in the
206 *    documentation and/or other materials provided with the distribution.
207 * 3. All advertising materials mentioning features or use of this software
208 *    must display the following acknowledgement:
209 *    "This product includes cryptographic software written by
210 *     Eric Young (eay@cryptsoft.com)"
211 *    The word 'cryptographic' can be left out if the rouines from the library
212 *    being used are not cryptographic related :-).
213 * 4. If you include any Windows specific code (or a derivative thereof) from
214 *    the apps directory (application code) you must include an acknowledgement:
215 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
216 *
217 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
218 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
220 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
221 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
222 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
223 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
224 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
225 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
226 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
227 * SUCH DAMAGE.
228 *
229 * The licence and distribution terms for any publically available version or
230 * derivative of this code cannot be changed.  i.e. this code cannot simply be
231 * copied and put under another distribution licence
232 * [including the GNU Public Licence.]
233 */
234