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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
|
This package was debianized by Ivo Timmermans <ivo@debian.org> on
Fri, 3 Aug 2001 10:00:42 +0200.
It was later taken over by Matthias Urlichs <smurf@debian.org> and is now
maintained by Andreas Metzler <ametzler@debian.org> Eric Dorland
<eric@debian.org>, James Westby <jw+debian@jameswestby.net>
It was downloaded from https://www.gnupg.org/ftp/gcrypt/gnutls/
Upstream Authors (from AUTHORS file):
8X------------------------------------
The authors list is autogenerated from the git history; sorted by number of commits
Nikos Mavrogiannopoulos <nmav at gnutls.org>
Simon Josefsson <jas at josefsson.org>
Daiki Ueno <ueno at gnu.org>
Dmitry Baryshkov <dbaryshkov at gmail.com>
Tim Rühsen <tim.ruehsen at gmx.de>
Ludovic Courtès <ludo at gnu.org>
Timo Schulz <twoaday at gnutls.org>
Jonathan Bastien-Filiatrault <joe at x2a.org>
Andreas Metzler <ametzler at debian.org>
Alon Bar-Lev <alon.barlev at gmail.com>
Alexander Sosedkin <asosedkin at redhat.com>
Daniel Kahn Gillmor <dkg at fifthhorseman.net>
Tom Vrancken <dev at tomvrancken.nl>
Zoltan Fridrich <zfridric at redhat.com>
Martin Storsjo <martin at martin.st>
Tim Kosse <tim.kosse at filezilla-project.org>
Simo Sorce <simo at redhat.com>
Fabian Keil <fk at fabiankeil.de>
Fabio Fiorina <fiorinaf at gnutls.org>
Stef Walter <stefw at redhat.com>
Anderson Toshiyuki Sasaki <ansasaki at redhat.com>
Armin Burgmeier <armin at arbur.net>
František Krenželok <krenzelok.frantisek at gmail.com>
Andrew McDonald <admcd at gnutls.org>
Fiona Klute <fiona.klute at gmx.de>
Alex Gaynor <alex.gaynor at gmail.com>
Ander Juaristi <a at juaristi.eus>
Martin Ukrop <mukrop at redhat.com>
Jaak Ristioja <jaak.ristioja at cyber.ee>
Attila Molnar <attilamolnar at hush.com>
Hugo Beauzée-Luyssen <hugo at beauzee.fr>
Stefan Berger <stefanb at linux.ibm.com>
Steve Lhomme <robux4 at ycbcr.xyz>
Jakub Jelen <jjelen at redhat.com>
Martin Sucha <anty.sk+git at gmail.com>
David Woodhouse <dwmw2 at infradead.org>
Jan Vcelak <jan.vcelak at nic.cz>
Kevin Cernekee <cernekee at gmail.com>
Nikolay Sivov <nsivov at codeweavers.com>
Sahana Prasad <sahana at redhat.com>
Michael Catanzaro <mcatanzaro at gnome.org>
Daniel Lenski <dlenski at gmail.com>
JonasZhou <JonasZhou at zhaoxin.com>
Stefan Sørensen <stefan.sorensen at spectralink.com>
Tobias Heider <tobias.heider at canonical.com>
Adam Sampson <ats at offog.org>
Alfredo Pironti <alfredo at pironti.eu>
Brad Hards <bradh at frogmouth.net>
Dimitri John Ledkov <xnox at ubuntu.com>
Hubert Kario <hkario at redhat.com>
Michael Weiser <michael.weiser at gmx.de>
Patrick Pelletier <code at funwithsoftware.org>
Rolf Eike Beer <eike at sf-mail.de>
Ruslan N. Marchenko <me at ruff.mobi>
Sjoerd Simons <sjoerd.simons at collabora.co.uk>
Stefan Bühler <stbuehler at web.de>
Thomas Klute <thomas2.klute at uni-dortmund.de>
Wolfgang Meyer zu Bergsten <w.bergsten at sirrix.com>
Christian Grothoff <christian at grothoff.org>
Daniel P. Berrange <berrange at redhat.com>
Evgeny Grin <k2k at narod.ru>
Gustavo Zacarias <gustavo at zacarias.com.ar>
James Bottomley <James.Bottomley at HansenPartnership.com>
Jiří Klimeš <jklimes at redhat.com>
Karsten Ohme <k_o_ at users.sourceforge.net>
Kurt Roeckx <kurt at roeckx.be>
Peter Wu <peter at lekensteyn.nl>
Stanislav Zidek <szidek at redhat.com>
Stephan Mueller <smueller at chronox.de>
Thierry Quemerais <tquemerais at awox.com>
Tom Carroll <incentivedesign at gmail.com>
Vitezslav Cizek <vcizek at suse.com>
Alessandro Ghedini <alessandro at ghedini.me>
Alex Monk <krenair at gmail.com>
Benjamin Herrenschmidt <benh at kernel.crashing.org>
Bernhard M. Wiedemann <bwiedemann at suse.de>
Craig Gallek <cgallek at gmail.com>
David Caldwell <david at porkrind.org>
Diego Elio Pettenò <flameeyes at flameeyes.eu>
Elta Koepp <alexi_2019 at protonmail.com>
Fabrice Fontaine <fontaine.fabrice at gmail.com>
Giuseppe Scrivano <gscrivano at gnu.org>
Ilya Tumaykin <itumaykin at gmail.com>
Karl Tarbe <karl.tarbe at cyber.ee>
Ke Zhao <kzhao at redhat.com>
Leonardo Bras <leobras.c at gmail.com>
Mark Brand <mabrand at mabrand.nl>
Matthias-Christian Ott <ott at mirix.org>
Maya Rashish <coypu at sdf.org>
Michael Catanzaro <mcatanzaro at igalia.com>
Michał Górny <mgorny at gentoo.org>
Miroslav Lichvar <mlichvar at redhat.com>
Pedro Monreal <pmgdeb at gmail.com>
Pedro Monreal <pmonrealgonzalez at suse.de>
Petr Písař <petr.pisar at atlas.cz>
Pierre Ossman <ossman at cendio.se>
Roman Bogorodskiy <bogorodskiy at gmail.com>
Sam James <sam at gentoo.org>
Simon South <simon at simonsouth.net>
Steffen Jaeckel <jaeckel-floss at eyet-services.de>
Steve Dispensa <dispensa at phonefactor.com>
nia <nia at NetBSD.org>
raspa0 <raspa0 at protonmail.com>
Alban Crequy <alban.crequy at collabora.co.uk>
Albrecht Dreß <albrecht.dress at arcor.de>
Aleksei Nikiforov <darktemplar at basealt.ru>
Alexander Kanavin <alex.kanavin at gmail.com>
Alexandre Bique <bique.alexandre at gmail.com>
Andreas Schneider <asn at samba.org>
Andreas Schwab <schwab at suse.de>
Asad Mehmood <asad78611 at googlemail.com>
Avinash Sonawane <rootkea at gmail.com>
Bas van Schaik <gitlab.com at s.traiectum.net>
Bjoern Jacke <bjacke at samba.org>
Björn Jacke <bjacke at samba.org>
Bjørn Christensen <bhc at insight.dk>
Brad Smith <brad at comstyle.com>
Brian Wickman <bwickman97 at outlook.com>
Carolin Latze <latze at angry-red-pla.net>
Chen Hongzhi <hongzhi.chen at me.com>
Chris Barry <chris at barry.im>
Colin Walters <walters at verbum.org>
Dan Fandrich <dan at coneharvesters.com>
Daniel Schaefer <git at danielschaefer.me>
David Walker <david.walker at vcatechnology.com>
David Weber <dave at veryflatcat.com>
Dimitris Apostolou <dimitris.apostolou at icloud.com>
Dmitriy Tsvettsikh <dmitrycvet at gmail.com>
Dosenpfand <m at sad.bz>
Doug Nazar <nazard at nazar.ca>
Edward Stangler <estangler at bradmark.com>
Elias Pipping <pipping at exherbo.org>
Elta Koepp <elta_koepp at gmail.com>
Frank Morgner <morgner at informatik.hu-berlin.de>
Gregor Jasny <gjasny at googlemail.com>
Günther Deschner <gd at samba.org>
Hani Benhabiles <kroosec at gmail.com>
Hannes Reinecke <hare at suse.de>
Hans Leidekker <hans at codeweavers.com>
Ilya V. Matveychikov <i.matveychikov at securitycode.ru>
Jan Palus <jpalus at fastmail.com>
Jared Wong <jaredlwong at gmail.com>
Jason Spafford <nullprogrammer at gmail.com>
Jay Foad <jay.foad at gmail.com>
Jeffrey Walton <noloader at gmail.com>
Jens Lechtenboerger <jens.lechtenboerger at fsfe.org>
Jussi Kukkonen <jussi.kukkonen at intel.com>
Kenneth J. Miller <ken at miller.ec>
Lei Maohui <leimaohui at cn.fujitsu.com>
Lili Quan <13132239506 at 163.com>
Lucas Fisher <lucas.fisher at gmail.com>
Ludwig Nussel <ludwig.nussel at suse.de>
Luis G.F <luisgf at gmail.com>
Luke Dashjr <luke-jr+git at utopios.org>
Maciej S. Szmigiero <mail at maciej.szmigiero.name>
Maks Naumov <maksqwe1 at ukr.net>
Marcin Cieślak <saper at saper.info>
Marcus Meissner <meissner at suse.de>
Marga Manterola <marga at google.com>
Marius Bakke <mbakke at fastmail.com>
Marti Raudsepp <marti at juffo.org>
Marvin Scholz <epirat07 at gmail.com>
Matt Turner <mattst88 at gmail.com>
Matt Whitlock <matt at whitlock.name>
Micah Anderson <micah at riseup.net>
Michael Catanzaro <mcatanzaro at redhat.com>
Nick Alcock <nick.alcock at oracle.com>
Nick Child <nick.child at ibm.com>
Nicolas Dufresne <nicolas.dufresne at collabora.com>
Nils Maier <maierman at web.de>
Norbert Pocs <npocs at redhat.com>
Olga <olyasib12 at gmail.com>
Ondrej Moris <omoris at redhat.com>
Petr Pavlu <petr.pavlu at suse.com>
Philippe Proulx <eeppeliteloop at gmail.com>
Philippe Widmer <pw at earthwave.ch>
R. Andrew Bailey <bailey at akamai.com>
Raj Raman <rajramanca at gmail.com>
Remi Olivier <remi_8 at hotmail.com>
Rical Jasan <ricaljasan at pacific.net>
Ricardo M. Correia <rcorreia at wizy.org>
Richard Costa <richard.costa at suse.com>
Rickard Bellgrim <rickard at opendnssec.org>
Robert Scheck <robert at fedoraproject.org>
Roberto Newmon <robertonewmon at fake-box.com>
Ross Nicholson <phunkyfish at gmail.com>
Rowan Thorpe <rowan at rowanthorpe.com>
SUMIT AGGARWAL <aggarwal.s at samsung.com>
Sadie Powell <sadie at witchery.services>
Saurav Babu <saurav.babu at samsung.com>
Sebastian Dröge <sebastian at centricular.com>
Seppo Yli-Olli <seppo.yliolli at gmail.com>
Simon Arlott <sa.me.uk>
Tatsuhiro Tsujikawa <tatsuhiro.t at gmail.com>
Thomas Klausner <wiz at NetBSD.org>
Tobias Polzer <tobias.polzer at fau.de>
Tomas Hoger <thoger at redhat.com>
Tomas Mraz <tmraz at fedoraproject.org>
Tristan Matthews <le.businessman at gmail.com>
Werner Koch <wk at gnupg.org>
Yuriy M. Kaminskiy <yumkam at gmail.com>
ihsinme <ihsinme at gmail.com>
rrivers2 <5981058-rrivers2 at users.noreply.gitlab.com>
sskaje <sskaje at gmail.com>
Łukasz Stelmach <stlman at poczta.fm>
The translators list is autogenerated from po file history
Anders Jonsson
Benno Schulenberg
Cristian Othón Martínez Vera
Felipe Castro
Jakub Bogusz
Jorma Karvonen
Mario Blättermann
Milo Casagrande
Mingye Wang (Arthur2e5)
Petr Pisar
Rafael Fontenelle
Remus-Gabriel Chelu
Sharuzzaman Ahmat Raslan
Stéphane Aulery
Temuri Doghonadze
Trần Ngọc Quân
Yuri Chornoivan
Мирослав Николић
8X------------------------------------
License: The main library is licensed under GNU Lesser
General Public License (LGPL) version 2.1+, Gnutls Extra (which is currently
just the openssl wrapper library), build system, testsuite and commandline
utilities are licenced under the GNU General Public License version 3+. The
Guile bindings use the same license as the respective underlying library,
i.e. LGPLv2.1+ for the main library and GPLv3+ for Gnutls extra.
However to be able to use and link against libgnutls a program needs to be
available under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS
requires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed
LGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also
is dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier
version were LGPLv3+ only.)
Copyright:
--------------------
/* -*- c -*-
* Copyright (C) 2000-2019 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* The GnuTLS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
--------------------
/*
* Copyright (C) 2004-2015 Free Software Foundation, Inc.
* Copyright (c) 2002 Andrew McDonald <andrew@mcdonald.org.uk>
*
* This file is part of GnuTLS-EXTRA.
*
* GnuTLS-extra is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GnuTLS-extra is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
--------------------
The documentation is distributed under the terms of the GNU Free
Documentation License (FDL):
--------------------
Copyright (C) 2001-2023 Free Software Foundation, Inc.
Copyright (C) 2001-2023 Nikos Mavrogiannopoulos
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, no Front-Cover Texts, and
no Back-Cover Texts. A copy of the license is included in the
section entitled "GNU Free Documentation License".
--------------------
--------------------
From December 2012 onwards FSF is not the sole copyright holder of GnuTLS
anymore (See <http://article.gmane.org/gmane.network.gnutls.general/3026>),
the headers currently also list these authors/copyright holders::
* Adam Sampson
* Alexander von Gernler
* Andrew McDonald
* ARPA2 project
* Attila Molnar
* Bardenheuer GmbH, Munich and Bundesdruckerei GmbH, Berlin
* Brian Wickman
* Canonical, Ltd.
* Christian Grothoff
* Daiki Ueno
* David Woodhouse
* Dmitry Eremin-Solenikov
* Dyalog Ltd.
* Fiona Klute
* Frank Morgner
* Fratnišek Krenželok
* Guillaume Roguez
* Hugo Beauzée-Luyssen
* IBM Corporation
* INRIA Paris-Rocquencourt
* Intel Corporation.
* Joe Orton
* Karl Tarbe
* KU Leuven
* Lucas Fisher
* Markus Friedl
* Michael Zucchi
* Niels Möller
* Nikos Mavrogiannopoulos
* Paul Sheer
* Pierre Ossman
* Red Hat, Inc.
* Ruslan N. Marchenko
* Sean Buckheister
* Simon Josefsson
* Stephan Mueller
* The Pkcs11Interop Project
* Thomas Klute
* Tim Kosse
* Tim Rühsen
* Tobias Heider
* Tom Vrancken
--------------------
On Debian GNU/Linux systems, the complete text of the latest version of
the GNU Lesser General Public License can be found in
`/usr/share/common-licenses/LGPL' v3 of the license in
`/usr/share/common-licenses/LGPL-3'; the GNU General Public License can
be found in `/usr/share/common-licenses/GPL' (version 3 in
/usr/share/common-licenses/GPL-3) The GNU Free Documentation
License is available under /usr/share/common-licenses/GFDL-1.3.
============================================
Excerpt from upstream's README:
LICENSING
=========
Since GnuTLS version 3.1.10, the core library has been released under
the GNU Lesser General Public License (LGPL) version 2.1 or later.
Note, however, that version 6.0.0 and later of the gmplib library used
by GnuTLS are distributed under a LGPLv3+ or GPLv2+ dual license, and
as such binaries of this library need to adhere to either LGPLv3+ or
GPLv2+ license.
The GNU LGPL applies to the main GnuTLS library, while the
included applications as well as gnutls-openssl
library are under the GNU GPL version 3. The gnutls library is
located in the lib/ and libdane/ directories, while the applications
in src/ and, the gnutls-openssl library is at extra/.
For any copyright year range specified as YYYY-ZZZZ in this package
note that the range specifies every single year in that closed interval.
============================================
============================================
Non FSF code
============================================
lib/accelerated/x86 contains code by Andy Polyakov <appro@openssl.org>,
copyright is not assigned to the FSF. The code is licensed under the
CRYPTOGAMS license.
--------------------
# Copyright (c) 2011-2016, Andy Polyakov by <appro@openssl.org>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain copyright notices,
# this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# * Neither the name of the Andy Polyakov nor the names of its
# copyright holder and contributors may be used to endorse or
# promote products derived from this software without specific
# prior written permission.
#
# ALTERNATIVELY, provided that this notice is retained in full, this
# product may be distributed under the terms of the GNU General Public
# License (GPL), in which case the provisions of the GPL apply INSTEAD OF
# those given above.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--------------------
============================================
lib/extras/randomart.*
Upstream Authors: Markus Friedl
Alexander von Gernler
Copyright:
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Alexander von Gernler. All rights reserved.
License:
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
============================================
lib/accelerated/x86/elf/aes-ssse3-x86.s
lib/accelerated/x86/macosx/aes-ssse3-x86.s
Upstream Authors: Mike Hamburg (Stanford University)
Copyright:
* Mike Hamburg (Stanford University), 2009.
License:
Public domain.
============================================
lib/system/inet_pton.c
Upstream Authors: Internet Software Consortium
Copyright/License:
* Copyright (c) 1996,1999 by Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
============================================
lib/extras/hex.*
Author: Rusty Russell <rusty@rustcorp.com.au>
Comment: http://ccodearchive.net/info/str/hex.html
License: CC0 license
Statement of Purpose
The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
moral rights retained by the original author(s) and/or performer(s);
publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
rights protecting the extraction, dissemination, use and reuse of data in a Work;
database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
4. Limitations and Disclaimers.
No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.
============================================
doc/examples/tlsproxy/
Copyright: Copyright (c) 2016 Wrymouth Innovation Ltd
License: Expat
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
============================================
Files: tests/pkcs11/pkcs11-mock.*
Copyright: 2011-2016 The Pkcs11Interop Project
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
X-Comment: Written originally for the Pkcs11Interop project by:
Jaroslav IMRICH <jimrich@jimrich.sk>
License: Apache-2.0
On Debian systems the complete text of the license can be found in
/usr/share/common-licenses/Apache-2.0
============================================
lib/unistring/*
Author: Bruno Haible <bruno@clisp.org>
Copyright (C) 2009-2020 Free Software Foundation, Inc.
Comment: Debian package is built against libunistring-dev package.
License: LGPLv3+_or_GPLv2+
Files: fuzz/gnutls_base64_decoder_fuzzer.c
fuzz/gnutls_base64_encoder_fuzzer.c
fuzz/gnutls_ocsp_req_parser_fuzzer.c
fuzz/gnutls_ocsp_resp_parser_fuzzer.c fuzz/gnutls_server_fuzzer.c
fuzz/gnutls_set_trust_file_fuzzer.c fuzz/gnutls_handshake_server_fuzzer.c
Copyright: 2017 Red Hat, Inc.
License: Apache-2.0
On Debian systems the complete text of the license can be found in
/usr/share/common-licenses/Apache-2.0
fuzz/gnutls_dn_parser_fuzzer.c fuzz/gnutls_idna_parser_fuzzer.c
fuzz/gnutls_pkcs12_key_parser_fuzzer.c fuzz/gnutls_pkcs8_key_parser_fuzzer.c
fuzz/gnutls_reverse_idna_parser_fuzzer.c
Copyright 2016 Nikos Mavrogiannopoulos
Comment: On Debian systems the complete license text is available in
/usr/share/common-licenses/Apache-2.0
License
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
fuzz/gnutls_pkcs7_parser_fuzzer.c fuzz/gnutls_private_key_parser_fuzzer.c
fuzz/gnutls_x509_parser_fuzzer.c
Copyright 2016 Google Inc.
Comment: On Debian systems the complete license text is available in
/usr/share/common-licenses/Apache-2.0
License
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Files: fuzz/gnutls_client_fuzzer.c fuzz/gnutls_handshake_client_fuzzer.c
Copyright: 2016 Google Inc.
2017 Red Hat, Inc.
Comment: On Debian systems the complete license text is available in
/usr/share/common-licenses/Apache-2.0
License: Apache-2.0
On Debian systems the complete text of the license can be found in
/usr/share/common-licenses/Apache-2.0
Files: fuzz/main.c
Copyright: 2017 Tim Ruehsen
License: Expat
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
Files: fuzz/mem.h fuzz/psk.h fuzz/srp.h fuzz/certs.h
fuzz/gnutls_psk_server_fuzzer.c
fuzz/gnutls_psk_client_fuzzer.c fuzz/gnutls_srp_client_fuzzer.c
fuzz/gnutls_srp_server_fuzzer.c
fuzz/handshake.h
Copyright: 2017 Nikos Mavrogiannopoulos
License: Expat
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
Files: fuzz/gnutls_client_rawpk_fuzzer.c fuzz/gnutls_server_rawpk_fuzzer.c
Copyright: 2017 Nikos Mavrogiannopoulos
2019 Tom Vrancken (dev@tomvrancken.nl)
License: Expat
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
Files: fuzz/gnutls_x509_crq_parser_fuzzer.c
Copyright: 2020 Dmitry Baryshkov
License: LGPLv2.1+
Files: lib/compress.c
Copyright: 2017-2022 Red Hat, Inc.
License: LGPLv2.1+
Files: lib/compress.h lib/ext/compress_certificate.c
lib/ext/compress_certificate.h tests/cipher-padding.c
tests/ktls.sh tests/pkcs7-verify-double-free.c
Copyright: 2022 Red Hat, Inc.
License: LGPLv2.1+
Files: lib/nettle/backport/block-internal.h
Copyright: 2011 Katholieke Universiteit Leuven
2011, 2013, 2018 Niels Möller
2018 Red Hat, Inc.
2019 Dmitry Eremin-Solenikov
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/init.c
Copyright: 2010-2012 Free Software Foundation, Inc.
2022 Tobias Heider <tobias.heider@canonical.com>
License: LGPLv2.1+
Files: lib/nettle/gost/acpkm.c lib/nettle/gost/acpkm.h
Copyright: 2018 Dmitry Eremin-Solenikov
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/cmac-kuznyechik.c lib/nettle/gost/cmac-magma.c
lib/nettle/gost/magma.c
Copyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
License: Expat
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Files: lib/nettle/int/drbg-aes.h lib/nettle/int/dsa-fips.h
lib/nettle/int/dsa-keygen-fips186.c lib/nettle/int/dsa-validate.c
lib/nettle/int/provable-prime.c
Copyright: 2013 Red Hat | Copyright 2013, 2014 Red Hat
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/int/drbg-aes-self-test.c lib/nettle/gost/cmac.h
Copyright: 2013 2017 Red Hat
2008 Free Software Foundation, Inc.
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/int/rsa-keygen-fips186.c
Copyright: 2002 Niels Möller
2014 Red Hat
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/bignum-le.c lib/nettle/gost/bignum-le.h
Copyright: 2001 Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/write-le32.c
Copyright: 2001, 2011 Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/int/block8.h
Copyright: 2005, 2014 Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/int/mpn-base256.c
lib/nettle/int/mpn-base256.h
Copyright: 2013 Niels Möller
2013 Red Hat
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/gost28147.h
Copyright: 2015 Dmitry Eremin-Solenikov
2012 Nikos Mavrogiannopoulos, Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/streebog-meta.c
Copyright: 2012 Nikos Mavrogiannopoulos, Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/hmac-gost.h
Copyright: 2001, 2002 Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/hmac-streebog.c
Copyright: 2016 Dmitry Eremin-Solenikov
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/nettle-write.h
Copyright: 2010 Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/streebog.c
Copyright: 2013-2015 Dmitry Eremin-Solenikov
Comment: Based on my code in libgcrypt.
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/streebog.h
Copyright: 2015 Dmitry Eremin-Solenikov
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/kuznyechik.c lib/nettle/gost/kuznyechik.h
lib/nettle/gost/magma.h
Copyright: 2017 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/gostdsa2.h
Copyright: 2015 Dmity Eremin-Solenikov
2013 Niels Möller
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/gostdsa-mask.c
Copyright: 2018 Dmitry Eremin-Solenikov
License: LGPLv3+_or_GPLv2+
Files: lib/nettle/gost/gost-wrap.c
Copyright: 2015, 2016 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2009-2012 Aleksey Kravchenko <rhash.admin@gmail.com>
License: LGPLv3+_or_GPLv2+
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Files: lib/nettle/gost/gost28147.c
Copyright: 2015-2015 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Copyright: 2009-2012 Aleksey Kravchenko <rhash.admin@gmail.com>
License:
based on Russian standard GOST 28147-89
* For English description, check RFC 5830.
* S-Boxes are expanded from the tables defined in RFC4357:
* https://tools.ietf.org/html/rfc4357
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Files: lib/nettle/rnd-fuzzer.c
Copyright 2017 Red Hat
Copyright 1995-2017 Free Software Foundation, Inc.
License
* This file is part of the GNU C Library.
* Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
*
* This file is part of GnuTLS.
*
* Libgcrypt is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* Libgcrypt is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
Files: lib/name_val_array.h
License: LGPLv3+_or_GPLv2+
Copyright: 2011-2019 Free Software Foundation, Inc.
2019 Red Hat, Inc
License: LGPLv3+_or_GPLv2+
* This program is free software: you can redistribute it and/or
* modify it under the terms of either:
*
* * the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at your
* option) any later version.
*
* or
*
* * the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* or both in parallel, as here.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received copies of the GNU General Public License and
* the GNU Lesser General Public License along with this program. If
* not, see http://www.gnu.org/licenses/.
Files: cligen/*.py cligen/*/*.py cligen/*/*/*.py cligen/cligen.mk
Copyright: 2021-2022 Daiki Ueno
License: LGPLv2.1+
Files: tests/no-extensions.c tests/system-override-curves.sh
tests/system-override-hash.c tests/resume-lifetime.c
tests/system-override-kx.sh tests/system-override-profiles.sh
tests/system-override-sig.c tests/system-override-sig-hash.sh
tests/system-override-tls.sh tests/system-override-versions.sh
tests/iov.c tests/tls13-without-timeout-func.c
tests/cert-tests/certtool-crl-decoding.sh
tests/cert-tests/certtool-long-cn.sh tests/cert-tests/certtool-long-oids.sh
tests/cert-tests/certtool-subca.sh tests/cert-tests/certtool-utf8.sh
tests/ciphersuite-name.c
tests/cert-tests/crq.sh tests/cert-tests/inhibit-anypolicy.sh
tests/cert-tests/pkcs12-utf8.s tests/cert-tests/pkcs7-broken-sigs.sh
tests/cert-tests/pkcs7-constraints2.sh tests/cert-tests/pkcs7-constraints.sh
tests/cert-tests/pkcs7-eddsa.sh tests/cert-tests/privkey-import.sh
tests/cert-tests/provable-dh-default.sh tests/cert-tests/provable-dh.sh
tests/fips-rsa-sizes.c
tests/ocsp-tests/ocsp-load-chain.sh
tests/ocsp-tests/ocsp-must-staple-connection.sh
tests/ocsp-tests/ocsptool.sh
tests/tls13/compress-cert-cli.c
tests/tls13/hello_retry_request_resume.c
tests/client-secrets.h
tests/sanity-lib.sh
tests/server-secrets.h
tests/tls13/compress-cert.c tests/tls13/compress-cert-neg2.c
tests/tls13/compress-cert-neg.c
tests/tls13/psk-ke-modes.c
License: GPLv3+
Copyright: 2014-2022 Red Hat, Inc
Files: tests/server-weak-keys.sh tests/cert-tests/alt-chain.sh
tests/cert-tests/cert-critical.sh tests/cert-tests/certtool-ecdsa.sh
tests/cert-tests/certtool-eddsa.sh tests/cert-tests/certtool-rsa-pss.sh
tests/cert-tests/certtool-verify-profiles.sh tests/cert-tests/crl.sh
tests/cert-tests/illegal-rsa.sh tests/cert-tests/invalid-sig.sh
tests/cert-tests/pkcs7-cat.sh tests/cert-tests/pkcs8.sh
tests/cert-tests/provable-privkey-dsa2048.sh
tests/cert-tests/provable-privkey-gen-default.sh
tests/cert-tests/provable-privkey-rsa2048.sh
tests/cert-tests/provable-privkey.sh tests/ocsp-tests/ocsp-test.sh
License: GPLv3+
Copyright: 2014-2018 Nikos Mavrogiannopoulos
Files: tests/openconnect-dtls12.c tests/system-override-invalid.sh
tests/system-override-sig-hash.sh tests/cert-tests/x509-duplicate-ext.sh
License: GPLv3+
Copyright: 2019 Nikos Mavrogiannopoulos
Files: tests/rfc7633-ok.c
License: GPLv3+
Copyright: 2016-2019 Tim Kosse
2019 Nikos Mavrogiannopoulos
Files: tests/rfc7633-missing.c
License: GPLv3+
Copyright: 2016 Tim Kosse
Files: tests/sign-verify-data-newapi.c tests/cert-tests/cert-non-digits-time.sh
tests/cert-tests/reject-invalid-time.sh
tests/cert-tests/tolerate-invalid-time.sh
tests/gnutls-ids.c tests/cert-tests/cert-sanity.sh
tests/cert-tests/cert-time.sh tests/pkcs11/list-objects.c
tests/cert-tests/smime.sh tests/cert-tests/tlsfeature-test.sh
tests/dtls/dtls-resume.sh
License: GPLv3+
Copyright: 2016-2017 Red Hat, Inc.
Files: tests/kdf-api.c
License: LGPLv2.1+
Copyright: 2020 Red Hat, Inc.
Files: lib/fipshmac.c
License: LGPLv2.1+
Copyright: 2020-2022 Red Hat, Inc.
Files: tests/missingissuer_aia.c tests/missingissuer.c
License: GPLv3+
Copyright: 2008-2014 Free Software Foundation, Inc.
Files: tests/test-chains-issuer-aia.h tests/test-chains-issuer.h
tests/cert-tests/key-invalid.sh tests/cert-tests/md5-test.sh
tests/cert-tests/pkcs12-encode.sh
License: GPLv3+
Copyright: 2004-2016 Free Software Foundation, Inc.
2016 2017 Red Hat, Inc.
Files: tests/set_x509_ocsp_multi_cli.c tests/handshake-write.c
License: GPLv3+
Copyright: 2020 Red Hat, Inc.
Files: tests/status-request-revoked.c tests/cert-tests/certtool.sh
tests/cert-tests/pkcs7.sh
License: GPLv3+
Copyright: 2014-2018 Nikos Mavrogiannopoulos
2018 2020 Red Hat, Inc.
Files: tests/resume-with-record-size-limit.c
License: GPLv3+
Copyright: 2004-2016 Free Software Foundation, Inc.
2013 Adam Sampson <ats@offog.org>
2016-2019 Red Hat, Inc.
Files: tests/cipher-alignment.c
License: GPLv3+
Copyright: 2004-2015 Free Software Foundation, Inc.
2013 Adam Sampson <ats@offog.org>
2015 Red Hat, Inc
Files: tests/x509-server-verify.c tests/cert-tests/krb5-test.sh
tests/cert-tests/name-constraints.sh tests/cert-tests/othername-test.sh
License: GPLv3+
Copyright: 2015 Red Hat, Inc.
2019 Nikos Mavrogiannopoulos
Files: tests/x509-upnconstraint.c
License: GPLv3+
Copyright: 2022 Brian Wickman
Files: tests/tls13/key_update_multiple.c tests/sign-verify-deterministic.c
License: GPLv3+
Copyright: 2017-2019 Red Hat, Inc.
Files: tests/tls13/no-auto-send-ticket.c
License: GPLv3+
Copyright: 2017-2020 Red Hat, Inc.
Files: tests/sign-verify-newapi.c
License: GPLv3+
Copyright: 2004-2012 Free Software Foundation, Inc.
2017-2019 Red Hat, Inc.
Files: tests/buffer.c
License: GPLv3+
Copyright: 2019 Tim Rühsen
Files: tests/gnutls-cli-rawpk.sh
License: GPLv3+
Copyright: 2019 Tom Vrancken (dev@tomvrancken.nl)
Files: tests/system-override-default-priority-string.sh
License: GPLv3+
Copyright: 2019 Canonical, Ltd.
Files: tests/x509cert-dntypes.c
License: GPLv3+
Copyright: 2020 Pierre Ossman for Cendio AB
Files: fuzz/gnutls_ext_raw_parse_fuzzer.c tests/keylog-func.c
License: LGPLv2.1+
Copyright: 2019 Red Hat, Inc.
Files: tests/pskself2.c
Copyright: 2004-2012 Free Software Foundation, Inc.
2013 Adam Sampson <ats@offog.org>
2019 Free Software Foundation, Inc.
License: GPLv3+
Files: tests/cert-tests/pkcs12-gost.sh
Copyright: 2018 Dmitry Eremin-Solenikov
2016 Red Hat, Inc.
License: GPLv3+
Files: tests/cert-tests/pkcs7-list-sign.sh
Copyright: 2017 Karl Tarbe
License: GPLv3+
Files: tests/cert-tests/pkcs8-gost.sh
Copyright: 2018 Dmitry Eremin-Solenikov
2004-2006, 2010, 2012 Free Software Foundation, Inc.
License: GPLv3+
Files: tests/id-on-xmppAddr.c
Copyright: 2021 Steffen Jaeckel
License: GPLv3+
Files: tests/ocsp-tests/ocsp-tls-connection.sh
Copyright: 2016 Thomas Klute
License: GPLv3+
Files: tests/tls-channel-binding.c
Copyright: 2021 Ruslan N. Marchenko
License: GPLv3+
Files: lib/accelerated/afalg.c
Copyright: 2017 Stephan Mueller <smueller@chronox.de>
License: LGPLv2.1+
Files: lib/inih/*
Copyright: 2009-2019, Ben Hoyt
License: BSD-3-Clause
All rights reserved.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Ben Hoyt nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Comment: https://github.com/benhoyt/inih
~
|