summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 12:04:13 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 12:04:13 +0000
commit8ccd01fbaf17d0bb26a1eed2c091c7279a4e905d (patch)
tree89630edc63fe800d12b3149a5073e664d911de96
parenta60cb2f23dd318d1a275f6603eaa881b8eb81c80 (diff)
downloadgnutls-8ccd01fbaf17d0bb26a1eed2c091c7279a4e905d.tar.gz
*** empty log message ***
-rw-r--r--NEWS2
-rw-r--r--README6
-rw-r--r--libextra/auth_srp.c4
-rw-r--r--libextra/auth_srp_passwd.c4
-rw-r--r--libextra/auth_srp_sb64.c4
-rw-r--r--libextra/crypt.c4
-rw-r--r--libextra/crypt_bcrypt.c4
-rw-r--r--libextra/crypt_srpsha1.c4
-rw-r--r--libextra/ext_srp.c4
-rw-r--r--libextra/gnutls_extra.c25
-rw-r--r--libextra/gnutls_openpgp.c4
-rw-r--r--libextra/gnutls_srp.c4
12 files changed, 35 insertions, 34 deletions
diff --git a/NEWS b/NEWS
index 985b7d7ce7..59215b908e 100644
--- a/NEWS
+++ b/NEWS
@@ -10,7 +10,7 @@ Version 0.4.2
- Replaced the included 1024 bit prime for Diffie Hellman, with a new
random one.
- Relicensed the library under the GNU Lesser General Public License
-- Added gnutls-extra library which contains the GPL parts.
+- Added gnutls-extra library which contains the GPL covered code of gnutls.
Version 0.4.1 (7/04/2002)
- Now uses alloca() for temporary variables
diff --git a/README b/README
index 5d2f03011c..141f0c4062 100644
--- a/README
+++ b/README
@@ -27,8 +27,10 @@ our help, since they refuse to share with us). For more explanation,
see http://www.gnu.org/philosophy/why-not-lgpl.html.
The GNU Lesser GPL license applies to the main gnutls library, while the
-gnutls-extra library is under the GPL. The gnutls library is found in
-the lib/ directory, while the gnutls-extra library is found at libextra/.
+gnutls-extra library is under the GPL. The gnutls-extra library contains
+the "SRP authentication" source code, and code for the "Openpgp certificate"
+support. The gnutls library is located in the lib/ directory, while the
+gnutls-extra library is at libextra/.
****************************
diff --git a/libextra/auth_srp.c b/libextra/auth_srp.c
index 45f0295335..f0c327a2d1 100644
--- a/libextra/auth_srp.c
+++ b/libextra/auth_srp.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/auth_srp_passwd.c b/libextra/auth_srp_passwd.c
index d47df6ec7a..83b961b135 100644
--- a/libextra/auth_srp_passwd.c
+++ b/libextra/auth_srp_passwd.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/auth_srp_sb64.c b/libextra/auth_srp_sb64.c
index 3876ed5a6a..f3b90fb550 100644
--- a/libextra/auth_srp_sb64.c
+++ b/libextra/auth_srp_sb64.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/crypt.c b/libextra/crypt.c
index 6da9c339b5..d4f9a21719 100644
--- a/libextra/crypt.c
+++ b/libextra/crypt.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/crypt_bcrypt.c b/libextra/crypt_bcrypt.c
index 55ece44c4b..e01bbca978 100644
--- a/libextra/crypt_bcrypt.c
+++ b/libextra/crypt_bcrypt.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/crypt_srpsha1.c b/libextra/crypt_srpsha1.c
index 0dbc5ff8e8..aa7c64e6d1 100644
--- a/libextra/crypt_srpsha1.c
+++ b/libextra/crypt_srpsha1.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/ext_srp.c b/libextra/ext_srp.c
index c04d5ced44..4dda894398 100644
--- a/libextra/ext_srp.c
+++ b/libextra/ext_srp.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/gnutls_extra.c b/libextra/gnutls_extra.c
index a168d15552..24edbf3714 100644
--- a/libextra/gnutls_extra.c
+++ b/libextra/gnutls_extra.c
@@ -1,22 +1,21 @@
/*
- * Copyright (C) 2002 Nikos Mavroyanopoulos
+ * Copyright (C) 2001 Nikos Mavroyanopoulos
*
* This file is part of GNUTLS.
*
- * The GNUTLS library 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.
+ * 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 2 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 library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * 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, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <gnutls_int.h>
diff --git a/libextra/gnutls_openpgp.c b/libextra/gnutls_openpgp.c
index 3f0eea3347..2056ca09c8 100644
--- a/libextra/gnutls_openpgp.c
+++ b/libextra/gnutls_openpgp.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.
diff --git a/libextra/gnutls_srp.c b/libextra/gnutls_srp.c
index e4eb030ba3..850726f474 100644
--- a/libextra/gnutls_srp.c
+++ b/libextra/gnutls_srp.c
@@ -3,12 +3,12 @@
*
* This file is part of GNUTLS.
*
- * GNUTLS is free software; you can redistribute it and/or modify
+ * 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 2 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * 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.