1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Detailed copyright and licensing information for libxcrypt
The overall license for libxcrypt is the GNU Lesser General Public
License, version 2.1 (or, at your option, any later version); see
the file COPYING.LIB for the full terms of this license.
Many individual files are under other licenses. This file provides an
inventory of the copyright holders and licenses of all files in the
source tree. For specific licensing terms consult the files themselves.
* Copyright Thorsten Kukuk, Björn Esser, Zack Weinberg; LGPL (v2.1 or later):
crypt.c, crypt-static.c, crypt-gensalt-static.c, crypt-port.h
* Copyright Free Software Foundation, Inc.; LGPL (v2.1 or later):
crypt-base.h, crypt-obsolete.h, crypt-private.h
alg-md5.h, alg-md5.c, crypt-md5.c,
alg-sha256.h, alg-sha256.c, crypt-sha256.c,
alg-sha512.h, alg-sha512.c, crypt-sha256.c
* Copyright David Burren et al.; 3-clause BSD:
alg-des.h, alg-des.c, crypt-des.c, crypt-des-obsolete.c, gen-des-tables.c
* Public domain, written by Solar Designer et al.:
alg-md4.h, alg-md4.c, crypt-bcrypt.c, crypt-gensalt.c, test-crypt-bcrypt.c
* Copyright Michael Bretterklieber, Björn Esser et al.; 2-clause BSD:
crypt-nthash.c
* Public domain, written by Zack Weinberg et al.:
byteorder.h, randombytes.c, test-byteorder.c
gen-crypt-h.awk, gen-map.awk, gen-vers.awk
test-symbols-compat, test-symbols-renames, test-symbols-static
m4/zw_alignment.m4, m4/zw_static_assert.m4, m4/skip-if-exec-format-error
* Copyright Zack Weinberg and Free Software Foundation, Inc;
GPL (v3 or later), with Autoconf exception:
m4/zw_automodern.m4, m4/zw_simple_warnings.m4
* Copyright Paolo Bonzini; FSF all-permissive license for short files:
m4/ax_prog_cc_for_build.m4
* Copyright holders unknown, no statement of license (all of these
files are part of the testsuite and do not contribute to the
installed library or its headers):
test-alg-des.c, test-alg-md4.c (adaption of test-alg-md5.c),
test-alg-md5.c, test-alg-sha256.c, test-alg-sha512.c, test-crypt-des.c,
test-crypt-md5.c, test-crypt-sha256.c, test-crypt-sha512.c,
test-des-cases.h, test-des-obsolete.c, test-gensalt.c,
test-crypt-nthash.c (adaption of test-crypt-des.c)
* The NEWS file formerly contained the following copyright assertions:
Copyright 2002, 2003, 2004 SuSE Linux AG, Germany
Copyright 2005, 2008, 2009 2011 SUSE LINUX Products GmbH, Germany
Copyright 2015 Björn Esser
These were meant to apply to the library as a whole rather than
specific files or portions of files.
|